Index: chrome/common/extensions/features/feature.h |
diff --git a/chrome/common/extensions/features/feature.h b/chrome/common/extensions/features/feature.h |
index ef7a6e6d5705d0a358a89e54369877bffcf92ffe..1bef96b38ea324fede93fa612b78237fb8a7a347 100644 |
--- a/chrome/common/extensions/features/feature.h |
+++ b/chrome/common/extensions/features/feature.h |
@@ -138,6 +138,10 @@ class Feature { |
// Tests whether this is an internal API or not. |
virtual bool IsInternal() const = 0; |
+ // Tests whether this Feature has a parent Feature. |
+ virtual bool HasParent() const = 0; |
+ virtual void SetHasParent(bool has_parent) = 0; |
+ |
// Returns true if the feature is available to be parsed into a new extension |
// manifest. |
Availability IsAvailableToManifest(const std::string& extension_id, |