diff options
Diffstat (limited to 'chrome/browser/extensions/api/debugger/debugger_api.h')
-rw-r--r-- | chrome/browser/extensions/api/debugger/debugger_api.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/chrome/browser/extensions/api/debugger/debugger_api.h b/chrome/browser/extensions/api/debugger/debugger_api.h index 44243d9..36b0cb5 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 DebuggerAttachFunction : public DebuggerFunction { +class AttachDebuggerFunction : public DebuggerFunction { public: DECLARE_EXTENSION_FUNCTION_NAME("debugger.attach") - DebuggerAttachFunction(); + AttachDebuggerFunction(); protected: - virtual ~DebuggerAttachFunction(); + virtual ~AttachDebuggerFunction(); // ExtensionFunction: virtual bool RunImpl() OVERRIDE; }; // Implements the debugger.detach() extension function. -class DebuggerDetachFunction : public DebuggerFunction { +class DetachDebuggerFunction : public DebuggerFunction { public: DECLARE_EXTENSION_FUNCTION_NAME("debugger.detach") - DebuggerDetachFunction(); + DetachDebuggerFunction(); protected: - virtual ~DebuggerDetachFunction(); + virtual ~DetachDebuggerFunction(); // ExtensionFunction: virtual bool RunImpl() OVERRIDE; }; // Implements the debugger.sendCommand() extension function. -class DebuggerSendCommandFunction : public DebuggerFunction { +class SendCommandDebuggerFunction : public DebuggerFunction { public: DECLARE_EXTENSION_FUNCTION_NAME("debugger.sendCommand") - DebuggerSendCommandFunction(); + SendCommandDebuggerFunction(); void SendResponseBody(base::DictionaryValue* result); protected: - virtual ~DebuggerSendCommandFunction(); + virtual ~SendCommandDebuggerFunction(); // ExtensionFunction: virtual bool RunImpl() OVERRIDE; |