| Index: chrome/common/extensions/features/simple_feature.h
|
| diff --git a/chrome/common/extensions/features/simple_feature.h b/chrome/common/extensions/features/simple_feature.h
|
| index 0ba63b734132b02fd07436ec8f43c0af9274f030..49341347b07a6a89a12f3a6fe1e98d45a2a2de5c 100644
|
| --- a/chrome/common/extensions/features/simple_feature.h
|
| +++ b/chrome/common/extensions/features/simple_feature.h
|
| @@ -87,6 +87,7 @@ class SimpleFeature : public Feature {
|
| virtual std::set<Context>* GetContexts() OVERRIDE;
|
|
|
| virtual bool IsInternal() const OVERRIDE;
|
| + virtual bool HasParent() const OVERRIDE;
|
|
|
| virtual bool IsIdInWhitelist(const std::string& extension_id) const OVERRIDE;
|
|
|
| @@ -111,6 +112,7 @@ class SimpleFeature : public Feature {
|
| int min_manifest_version_;
|
| int max_manifest_version_;
|
| chrome::VersionInfo::Channel channel_;
|
| + bool has_parent_;
|
|
|
| FRIEND_TEST_ALL_PREFIXES(ExtensionSimpleFeatureTest, Context);
|
| };
|
|
|