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

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

Issue 257333002: Drive extension functions from ExtensionFunction::Run. The (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix comment Created 6 years, 8 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 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);
« 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