blob: 4ee10dcbba01e9ed843e1cebd5dd23bf9f16f8de [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef EXTENSIONS_COMMON_SCOPED_TESTING_MANIFEST_HANDLER_REGISTRY_H_
#define EXTENSIONS_COMMON_SCOPED_TESTING_MANIFEST_HANDLER_REGISTRY_H_
#include "base/memory/raw_ptr.h"
#include "extensions/common/manifest_handler.h"
namespace extensions {
class ScopedTestingManifestHandlerRegistry {
public:
ScopedTestingManifestHandlerRegistry();
~ScopedTestingManifestHandlerRegistry();
// TODO(devlin): Provide an accessor for |registry_|.
private:
ManifestHandlerRegistry registry_;
raw_ptr<ManifestHandlerRegistry> old_registry_;
};
} // namespace extensions
#endif // EXTENSIONS_COMMON_SCOPED_TESTING_MANIFEST_HANDLER_REGISTRY_H_