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

Unified Diff: webkit/glue/webdevtoolsclient.h

Issue 115862: DevTools: pass class and method name as arguments to RPC messages (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 7 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
« no previous file with comments | « webkit/glue/webdevtoolsagent_impl.cc ('k') | webkit/glue/webdevtoolsclient_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/webdevtoolsclient.h
===================================================================
--- webkit/glue/webdevtoolsclient.h (revision 17071)
+++ webkit/glue/webdevtoolsclient.h (working copy)
@@ -22,7 +22,9 @@
WebDevToolsClient() {}
virtual ~WebDevToolsClient() {}
- virtual void DispatchMessageFromAgent(const std::string& raw_msg) = 0;
+ virtual void DispatchMessageFromAgent(const std::string& class_name,
+ const std::string& method_name,
+ const std::string& raw_msg) = 0;
private:
DISALLOW_COPY_AND_ASSIGN(WebDevToolsClient);
« no previous file with comments | « webkit/glue/webdevtoolsagent_impl.cc ('k') | webkit/glue/webdevtoolsclient_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698