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

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

Issue 11778097: Revert revision 176015 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 11 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 176052)
+++ chrome/browser/extensions/api/declarative/declarative_api.h (working copy)
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_DECLARATIVE_API_H_
-#define CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_DECLARATIVE_API_H_
+#ifndef CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_DECLARATIVE_API_H__
+#define CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_DECLARATIVE_API_H__
#include "base/compiler_specific.h"
#include "base/memory/ref_counted.h"
@@ -31,34 +31,34 @@
scoped_refptr<RulesRegistry> rules_registry_;
};
-class EventsAddRulesFunction : public RulesFunction {
+class AddRulesFunction : public RulesFunction {
public:
DECLARE_EXTENSION_FUNCTION_NAME("events.addRules");
protected:
- virtual ~EventsAddRulesFunction() {}
+ virtual ~AddRulesFunction() {}
// RulesFunction:
virtual bool RunImplOnCorrectThread() OVERRIDE;
};
-class EventsRemoveRulesFunction : public RulesFunction {
+class RemoveRulesFunction : public RulesFunction {
public:
DECLARE_EXTENSION_FUNCTION_NAME("events.removeRules");
protected:
- virtual ~EventsRemoveRulesFunction() {}
+ virtual ~RemoveRulesFunction() {}
// RulesFunction:
virtual bool RunImplOnCorrectThread() OVERRIDE;
};
-class EventsGetRulesFunction : public RulesFunction {
+class GetRulesFunction : public RulesFunction {
public:
DECLARE_EXTENSION_FUNCTION_NAME("events.getRules");
protected:
- virtual ~EventsGetRulesFunction() {}
+ virtual ~GetRulesFunction() {}
// RulesFunction:
virtual bool RunImplOnCorrectThread() OVERRIDE;
@@ -66,4 +66,4 @@
} // namespace extensions
-#endif // CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_DECLARATIVE_API_H_
+#endif // CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_DECLARATIVE_API_H__
« no previous file with comments | « chrome/browser/extensions/api/debugger/debugger_api.cc ('k') | chrome/browser/extensions/api/declarative/declarative_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698