1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef EXTENSIONS_COMMON_FEATURES_FEATURE_PROVIDER_H_
6 #define EXTENSIONS_COMMON_FEATURES_FEATURE_PROVIDER_H_
11 namespace extensions
{
15 // Implemented by classes that can vend features.
16 class FeatureProvider
{
19 virtual ~FeatureProvider() {}
21 // Returns the feature with the specified name.
22 virtual Feature
* GetFeature(const std::string
& name
) = 0;
24 // Returns the parent feature of |feature|, or NULL if there isn't one.
25 virtual Feature
* GetParent(Feature
* feature
) = 0;
27 // Returns all features described by this instance.
28 virtual const std::vector
<std::string
>& GetAllFeatureNames() = 0;
30 // Gets a feature provider for a specific feature type, like "permission".
31 static FeatureProvider
* GetByName(const std::string
& name
);
33 // Directly access the common feature types.
34 static FeatureProvider
* GetAPIFeatures();
35 static FeatureProvider
* GetManifestFeatures();
36 static FeatureProvider
* GetPermissionFeatures();
39 } // namespace extensions
41 #endif // EXTENSIONS_COMMON_FEATURES_FEATURE_PROVIDER_H_