| Index: chrome/renderer/devtools_agent.h
|
| ===================================================================
|
| --- chrome/renderer/devtools_agent.h (revision 24604)
|
| +++ chrome/renderer/devtools_agent.h (working copy)
|
| @@ -34,7 +34,9 @@
|
| // 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 @@
|
| 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_;
|
|
|