summaryrefslogtreecommitdiffstats
path: root/chrome/renderer/devtools_agent.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/renderer/devtools_agent.h')
-rw-r--r--chrome/renderer/devtools_agent.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/chrome/renderer/devtools_agent.h b/chrome/renderer/devtools_agent.h
index 985d677..25906ae 100644
--- a/chrome/renderer/devtools_agent.h
+++ b/chrome/renderer/devtools_agent.h
@@ -34,7 +34,9 @@ class DevToolsAgent : public WebDevToolsAgentDelegate {
// WebDevToolsAgentDelegate implementation
virtual void SendMessageToClient(const std::string& class_name,
const std::string& method_name,
- const std::string& raw_msg);
+ const std::string& param1,
+ const std::string& param2,
+ const std::string& param3);
virtual int GetHostId();
virtual void ForceRepaint();
@@ -52,7 +54,9 @@ class DevToolsAgent : public WebDevToolsAgentDelegate {
void OnDetach();
void OnRpcMessage(const std::string& class_name,
const std::string& method_name,
- const std::string& raw_msg);
+ const std::string& param1,
+ const std::string& param2,
+ const std::string& param3);
void OnInspectElement(int x, int y);
static std::map<int, DevToolsAgent*> agent_for_routing_id_;