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

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

Issue 10392127: Move declarative API into events API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix change schema type reference from 'Event' to 'events.Event' Created 8 years, 7 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
« no previous file with comments | « no previous file | chrome/browser/extensions/api/declarative/declarative_api.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 00389b86b448cf7057e4d582e12c8629ee37f910..175dd0fd655677f040ff8617328f53314d86ac68 100644
--- a/chrome/browser/extensions/api/declarative/declarative_api.h
+++ b/chrome/browser/extensions/api/declarative/declarative_api.h
@@ -33,7 +33,7 @@ class RulesFunction : public AsyncExtensionFunction {
class AddRulesFunction : public RulesFunction {
public:
- DECLARE_EXTENSION_FUNCTION_NAME("declarative.addRules");
+ DECLARE_EXTENSION_FUNCTION_NAME("events.addRules");
protected:
virtual ~AddRulesFunction() {}
@@ -44,7 +44,7 @@ class AddRulesFunction : public RulesFunction {
class RemoveRulesFunction : public RulesFunction {
public:
- DECLARE_EXTENSION_FUNCTION_NAME("declarative.removeRules");
+ DECLARE_EXTENSION_FUNCTION_NAME("events.removeRules");
protected:
virtual ~RemoveRulesFunction() {}
@@ -55,7 +55,7 @@ class RemoveRulesFunction : public RulesFunction {
class GetRulesFunction : public RulesFunction {
public:
- DECLARE_EXTENSION_FUNCTION_NAME("declarative.getRules");
+ DECLARE_EXTENSION_FUNCTION_NAME("events.getRules");
protected:
virtual ~GetRulesFunction() {}
« no previous file with comments | « no previous file | chrome/browser/extensions/api/declarative/declarative_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698