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

Unified Diff: chrome/browser/extensions/api/debugger/debugger_api.h

Issue 11747025: Run the JSON Schema Compiler's bundle compilation on JSON files. Previously it (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix ms release build 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/debugger/debugger_api.h
diff --git a/chrome/browser/extensions/api/debugger/debugger_api.h b/chrome/browser/extensions/api/debugger/debugger_api.h
index 36b0cb50b132c46f9f1619536a433137cb57a41a..44243d972968c6bb45b2b695dd5abe3ce5409e77 100644
--- a/chrome/browser/extensions/api/debugger/debugger_api.h
+++ b/chrome/browser/extensions/api/debugger/debugger_api.h
@@ -39,43 +39,43 @@ class DebuggerFunction : public AsyncExtensionFunction {
};
// Implements the debugger.attach() extension function.
-class AttachDebuggerFunction : public DebuggerFunction {
+class DebuggerAttachFunction : public DebuggerFunction {
public:
DECLARE_EXTENSION_FUNCTION_NAME("debugger.attach")
- AttachDebuggerFunction();
+ DebuggerAttachFunction();
protected:
- virtual ~AttachDebuggerFunction();
+ virtual ~DebuggerAttachFunction();
// ExtensionFunction:
virtual bool RunImpl() OVERRIDE;
};
// Implements the debugger.detach() extension function.
-class DetachDebuggerFunction : public DebuggerFunction {
+class DebuggerDetachFunction : public DebuggerFunction {
public:
DECLARE_EXTENSION_FUNCTION_NAME("debugger.detach")
- DetachDebuggerFunction();
+ DebuggerDetachFunction();
protected:
- virtual ~DetachDebuggerFunction();
+ virtual ~DebuggerDetachFunction();
// ExtensionFunction:
virtual bool RunImpl() OVERRIDE;
};
// Implements the debugger.sendCommand() extension function.
-class SendCommandDebuggerFunction : public DebuggerFunction {
+class DebuggerSendCommandFunction : public DebuggerFunction {
public:
DECLARE_EXTENSION_FUNCTION_NAME("debugger.sendCommand")
- SendCommandDebuggerFunction();
+ DebuggerSendCommandFunction();
void SendResponseBody(base::DictionaryValue* result);
protected:
- virtual ~SendCommandDebuggerFunction();
+ virtual ~DebuggerSendCommandFunction();
// ExtensionFunction:
virtual bool RunImpl() OVERRIDE;
« no previous file with comments | « chrome/browser/extensions/api/cookies/cookies_api.cc ('k') | chrome/browser/extensions/api/debugger/debugger_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698