| Index: extensions/common/features/simple_feature.h
|
| diff --git a/extensions/common/features/simple_feature.h b/extensions/common/features/simple_feature.h
|
| index 34ae5b5fea92042bcf021de473c463f9921c518c..7df6e19b0b779cb1f2974d81ec185d24b4fb935a 100644
|
| --- a/extensions/common/features/simple_feature.h
|
| +++ b/extensions/common/features/simple_feature.h
|
| @@ -55,6 +55,7 @@ class SimpleFeature : public Feature {
|
| std::set<std::string>* blacklist() { return &blacklist_; }
|
| std::set<std::string>* whitelist() { return &whitelist_; }
|
| std::set<Manifest::Type>* extension_types() { return &extension_types_; }
|
| + std::set<Context>* contexts() { return &contexts_; }
|
|
|
| // Dependency resolution is a property of Features that is preferrably
|
| // handled internally to avoid temptation, but FeatureFilters may need
|
| @@ -104,8 +105,6 @@ class SimpleFeature : public Feature {
|
| const GURL& url,
|
| Context context) const OVERRIDE;
|
|
|
| - virtual std::set<Context>* GetContexts() OVERRIDE;
|
| -
|
| virtual bool IsInternal() const OVERRIDE;
|
| virtual bool IsBlockedInServiceWorker() const OVERRIDE;
|
|
|
|
|