diff options
author | yurys@google.com <yurys@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-29 08:37:06 +0000 |
---|---|---|
committer | yurys@google.com <yurys@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-29 08:37:06 +0000 |
commit | 37f39f0516108d8ecc308b5c5f3c06f0753b0038 (patch) | |
tree | 99702d3f3536a0ff9c933a996aa31ecec27a4201 /webkit/glue/webdevtoolsagent.h | |
parent | e13372e4cf728c46c9a08ad300b633f9b975108c (diff) | |
download | chromium_src-37f39f0516108d8ecc308b5c5f3c06f0753b0038.zip chromium_src-37f39f0516108d8ecc308b5c5f3c06f0753b0038.tar.gz chromium_src-37f39f0516108d8ecc308b5c5f3c06f0753b0038.tar.bz2 |
DevTools: decouple class and method names from RPC message arguments. That would allow to select dispatcher wothout parsing the message argument.
Review URL: http://codereview.chromium.org/115862
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17176 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webdevtoolsagent.h')
-rw-r--r-- | webkit/glue/webdevtoolsagent.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/webkit/glue/webdevtoolsagent.h b/webkit/glue/webdevtoolsagent.h index 9680e84..177ec2f 100644 --- a/webkit/glue/webdevtoolsagent.h +++ b/webkit/glue/webdevtoolsagent.h @@ -28,7 +28,9 @@ class WebDevToolsAgent { virtual void Detach() = 0; - virtual void DispatchMessageFromClient(const std::string& raw_msg) = 0; + virtual void DispatchMessageFromClient(const std::string& class_name, + const std::string& method_name, + const std::string& raw_msg) = 0; virtual void InspectElement(int x, int y) = 0; |