Index: chrome/common/extensions/features/api_feature.h |
diff --git a/chrome/common/extensions/features/api_feature.h b/chrome/common/extensions/features/api_feature.h |
index edd58d1b7d429b61b43210e83b7ad4bb23c73b53..662eecb95c6e097cb66700547ab9b2154bcb3c8a 100644 |
--- a/chrome/common/extensions/features/api_feature.h |
+++ b/chrome/common/extensions/features/api_feature.h |
@@ -15,11 +15,13 @@ class APIFeature : public SimpleFeature { |
virtual ~APIFeature(); |
virtual bool IsInternal() const OVERRIDE; |
+ virtual bool HasParent() const OVERRIDE; |
not at google - send to devlin
2013/05/23 00:09:40
I don't see a reason why this needs to be restrict
cduvall
2013/05/24 03:13:49
Done.
|
virtual std::string Parse(const DictionaryValue* value) OVERRIDE; |
private: |
bool internal_; |
+ bool has_parent_; |
}; |
} // extensions |