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

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

Issue 12330089: JSON compiler to include "customBindings" in the function name. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 10 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
===================================================================
--- chrome/browser/extensions/api/declarative/declarative_api.h (revision 182503)
+++ chrome/browser/extensions/api/declarative/declarative_api.h (working copy)
@@ -31,34 +31,34 @@
scoped_refptr<RulesRegistry> rules_registry_;
};
-class EventsAddRulesFunction : public RulesFunction {
+class EventsEventAddRulesFunction : public RulesFunction {
public:
DECLARE_EXTENSION_FUNCTION("events.addRules", EVENTS_ADDRULES)
protected:
- virtual ~EventsAddRulesFunction() {}
+ virtual ~EventsEventAddRulesFunction() {}
// RulesFunction:
virtual bool RunImplOnCorrectThread() OVERRIDE;
};
-class EventsRemoveRulesFunction : public RulesFunction {
+class EventsEventRemoveRulesFunction : public RulesFunction {
public:
DECLARE_EXTENSION_FUNCTION("events.removeRules", EVENTS_REMOVERULES)
protected:
- virtual ~EventsRemoveRulesFunction() {}
+ virtual ~EventsEventRemoveRulesFunction() {}
// RulesFunction:
virtual bool RunImplOnCorrectThread() OVERRIDE;
};
-class EventsGetRulesFunction : public RulesFunction {
+class EventsEventGetRulesFunction : public RulesFunction {
public:
DECLARE_EXTENSION_FUNCTION("events.getRules", EVENTS_GETRULES)
protected:
- virtual ~EventsGetRulesFunction() {}
+ virtual ~EventsEventGetRulesFunction() {}
// RulesFunction:
virtual bool RunImplOnCorrectThread() OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698