Index: chrome/browser/extensions/api/debugger/debugger_api.h |
=================================================================== |
--- chrome/browser/extensions/api/debugger/debugger_api.h (revision 176049) |
+++ chrome/browser/extensions/api/debugger/debugger_api.h (working copy) |
@@ -39,43 +39,43 @@ |
}; |
// 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; |