Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5150)

Unified Diff: chrome/common/extensions/features/manifest_feature.cc

Issue 11316164: Implement ComplexFeature to support permission features with multiple rules. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Renames and add TODO Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/features/manifest_feature.cc
diff --git a/chrome/common/extensions/features/manifest_feature.cc b/chrome/common/extensions/features/manifest_feature.cc
index 5d7c5a44f09f60978dea4321ca2882c7acba659a..28406d8fecacb2f006413a9d2315e6ea3c61ad7f 100644
--- a/chrome/common/extensions/features/manifest_feature.cc
+++ b/chrome/common/extensions/features/manifest_feature.cc
@@ -18,9 +18,9 @@ Feature::Availability ManifestFeature::IsAvailableToContext(
const Extension* extension,
Feature::Context context,
Feature::Platform platform) const {
- Availability availability = Feature::IsAvailableToContext(extension,
- context,
- platform);
+ Availability availability = SimpleFeature::IsAvailableToContext(extension,
+ context,
+ platform);
if (!availability.is_available())
return availability;
« no previous file with comments | « chrome/common/extensions/features/manifest_feature.h ('k') | chrome/common/extensions/features/permission_feature.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698