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

Side by Side Diff: chrome/renderer/devtools_agent_filter.h

Issue 3005044: DevTools: Get rid of DevTools RPC. (Closed)
Patch Set: More files removed Created 10 years, 4 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 unified diff | Download patch
« no previous file with comments | « chrome/renderer/devtools_agent.cc ('k') | chrome/renderer/devtools_agent_filter.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_RENDERER_DEVTOOLS_AGENT_FILTER_H_ 5 #ifndef CHROME_RENDERER_DEVTOOLS_AGENT_FILTER_H_
6 #define CHROME_RENDERER_DEVTOOLS_AGENT_FILTER_H_ 6 #define CHROME_RENDERER_DEVTOOLS_AGENT_FILTER_H_
7 #pragma once 7 #pragma once
8 8
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 21 matching lines...) Expand all
32 virtual bool OnMessageReceived(const IPC::Message& message); 32 virtual bool OnMessageReceived(const IPC::Message& message);
33 33
34 virtual void OnFilterAdded(IPC::Channel* channel) { channel_ = channel; } 34 virtual void OnFilterAdded(IPC::Channel* channel) { channel_ = channel; }
35 35
36 static void DispatchMessageLoop(); 36 static void DispatchMessageLoop();
37 37
38 // OnDebuggerCommand will be executed in the IO thread so that we can 38 // OnDebuggerCommand will be executed in the IO thread so that we can
39 // handle debug messages even when v8 is stopped. 39 // handle debug messages even when v8 is stopped.
40 void OnDebuggerCommand(const std::string& command); 40 void OnDebuggerCommand(const std::string& command);
41 void OnDebuggerPauseScript(); 41 void OnDebuggerPauseScript();
42 void OnRpcMessage(const DevToolsMessageData& data);
43 42
44 bool message_handled_; 43 bool message_handled_;
45 44
46 // Made static to allow DevToolsAgent to use it for replying directly 45 // Made static to allow DevToolsAgent to use it for replying directly
47 // from IO thread. 46 // from IO thread.
48 static int current_routing_id_; 47 static int current_routing_id_;
49 static IPC::Channel* channel_; 48 static IPC::Channel* channel_;
50 49
51 DISALLOW_COPY_AND_ASSIGN(DevToolsAgentFilter); 50 DISALLOW_COPY_AND_ASSIGN(DevToolsAgentFilter);
52 }; 51 };
53 52
54 #endif // CHROME_RENDERER_DEVTOOLS_AGENT_FILTER_H_ 53 #endif // CHROME_RENDERER_DEVTOOLS_AGENT_FILTER_H_
OLDNEW
« no previous file with comments | « chrome/renderer/devtools_agent.cc ('k') | chrome/renderer/devtools_agent_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698