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

Unified Diff: chrome/browser/extensions/api/declarative/declarative_api.h

Issue 10257006: Move Declarative Web Request API out of experimental and make it a feature (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 months 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/browser/extensions/api/declarative/declarative_api.h
diff --git a/chrome/browser/extensions/api/declarative/declarative_api.h b/chrome/browser/extensions/api/declarative/declarative_api.h
index fc198449e666a2860ff1bfed1e282a7bd764e34b..c73225fd730b9f45d29469e49404ca7eba76d0d8 100644
--- a/chrome/browser/extensions/api/declarative/declarative_api.h
+++ b/chrome/browser/extensions/api/declarative/declarative_api.h
@@ -31,19 +31,19 @@ class RulesFunction : public AsyncExtensionFunction {
class AddRulesFunction : public RulesFunction {
public:
virtual bool RunImplOnCorrectThread() OVERRIDE;
- DECLARE_EXTENSION_FUNCTION_NAME("experimental.declarative.addRules");
+ DECLARE_EXTENSION_FUNCTION_NAME("declarative.addRules");
};
class RemoveRulesFunction : public RulesFunction {
public:
virtual bool RunImplOnCorrectThread() OVERRIDE;
- DECLARE_EXTENSION_FUNCTION_NAME("experimental.declarative.removeRules");
+ DECLARE_EXTENSION_FUNCTION_NAME("declarative.removeRules");
};
class GetRulesFunction : public RulesFunction {
public:
virtual bool RunImplOnCorrectThread() OVERRIDE;
- DECLARE_EXTENSION_FUNCTION_NAME("experimental.declarative.getRules");
+ DECLARE_EXTENSION_FUNCTION_NAME("declarative.getRules");
};
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698