// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef EXTENSIONS_COMMON_MANIFEST_HANDLER_H_ #define EXTENSIONS_COMMON_MANIFEST_HANDLER_H_ #include <memory> #include <set> #include <string> #include <vector> #include "base/containers/flat_map.h" #include "base/containers/small_map.h" #include "base/containers/span.h" #include "base/gtest_prod_util.h" #include "extensions/common/manifest.h" namespace extensions { class Extension; class ManifestPermission; class ManifestPermissionSet; // An interface for clients that recognize and parse keys in extension // manifests. class ManifestHandler { … }; } // namespace extensions #endif // EXTENSIONS_COMMON_MANIFEST_HANDLER_H_