| Index: chrome/renderer/devtools_agent_filter.h
|
| ===================================================================
|
| --- chrome/renderer/devtools_agent_filter.h (revision 34040)
|
| +++ chrome/renderer/devtools_agent_filter.h (working copy)
|
| @@ -22,37 +22,19 @@
|
| DevToolsAgentFilter();
|
| virtual ~DevToolsAgentFilter();
|
|
|
| - static void SendRpcMessage(const std::string& class_name,
|
| - const std::string& method_name,
|
| - const std::string& param1,
|
| - const std::string& param2,
|
| - const std::string& param3);
|
| -
|
| private:
|
| // IPC::ChannelProxy::MessageFilter override. Called on IO thread.
|
| virtual bool OnMessageReceived(const IPC::Message& message);
|
|
|
| - virtual void OnFilterAdded(IPC::Channel* channel) { channel_ = channel; }
|
| -
|
| static void DispatchMessageLoop();
|
|
|
| // OnDebuggerCommand will be executed in the IO thread so that we can
|
| // handle debug messages even when v8 is stopped.
|
| void OnDebuggerCommand(const std::string& command);
|
| void OnDebuggerPauseScript();
|
| - void OnRpcMessage(const std::string& class_name,
|
| - const std::string& method_name,
|
| - const std::string& param1,
|
| - const std::string& param2,
|
| - const std::string& param3);
|
|
|
| - bool message_handled_;
|
| + int current_routing_id_;
|
|
|
| - // Made static to allow DevToolsAgent to use it for replying directly
|
| - // from IO thread.
|
| - static int current_routing_id_;
|
| - static IPC::Channel* channel_;
|
| -
|
| DISALLOW_COPY_AND_ASSIGN(DevToolsAgentFilter);
|
| };
|
|
|
|
|