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..b43dd06c564adbb757be030c39b0d6ebba680518 100644 |
--- a/chrome/common/extensions/features/feature.h |
+++ b/chrome/common/extensions/features/feature.h |
@@ -126,6 +126,7 @@ class Feature { |
const std::string& name() const { return name_; } |
void set_name(const std::string& name) { name_ = name; } |
const std::set<std::string>& dependencies() { return dependencies_; } |
+ bool no_parent() const { return no_parent_; } |
// Gets the platform the code is currently running on. |
static Platform GetCurrentPlatform(); |
@@ -174,6 +175,7 @@ class Feature { |
protected: |
std::string name_; |
std::set<std::string> dependencies_; |
+ bool no_parent_; |
}; |
} // namespace extensions |