| 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 e8a10484abcb89dc970cec079aa1e8163c9b426c..bd81e1204dc236b34d27fe68947374f1e1a14dc0 100644
|
| --- a/chrome/browser/extensions/api/debugger/debugger_api.h
|
| +++ b/chrome/browser/extensions/api/debugger/debugger_api.h
|
| @@ -56,7 +56,7 @@ class DebuggerAttachFunction : public DebuggerFunction {
|
| virtual ~DebuggerAttachFunction();
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunAsync() OVERRIDE;
|
| };
|
|
|
| // Implements the debugger.detach() extension function.
|
| @@ -70,7 +70,7 @@ class DebuggerDetachFunction : public DebuggerFunction {
|
| virtual ~DebuggerDetachFunction();
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunAsync() OVERRIDE;
|
| };
|
|
|
| // Implements the debugger.sendCommand() extension function.
|
| @@ -85,7 +85,7 @@ class DebuggerSendCommandFunction : public DebuggerFunction {
|
| virtual ~DebuggerSendCommandFunction();
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunAsync() OVERRIDE;
|
| };
|
|
|
| // Implements the debugger.getTargets() extension function.
|
| @@ -99,7 +99,7 @@ class DebuggerGetTargetsFunction : public DebuggerFunction {
|
| virtual ~DebuggerGetTargetsFunction();
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunAsync() OVERRIDE;
|
|
|
| private:
|
| void SendTargetList(const std::vector<DevToolsTargetImpl*>& target_list);
|
|
|