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 92e060ee8a1ed10b83933f37303d1fff09f27191..511b0353f29f63d39294054890d207edc37651a5 100644 |
--- a/chrome/common/extensions/features/api_feature.h |
+++ b/chrome/common/extensions/features/api_feature.h |
@@ -14,14 +14,17 @@ class APIFeature : public SimpleFeature { |
APIFeature(); |
virtual ~APIFeature(); |
+ // extensions::Feature: |
virtual bool IsInternal() const OVERRIDE; |
+ virtual bool IsBlockedInServiceWorker() const OVERRIDE; |
virtual std::string Parse(const base::DictionaryValue* value) OVERRIDE; |
private: |
bool internal_; |
+ bool blocked_in_service_worker_; |
}; |
-} // extensions |
+} // namespace extensions |
#endif // CHROME_COMMON_EXTENSIONS_FEATURES_API_FEATURE_H_ |