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

Side by Side Diff: webkit/tools/test_shell/test_shell_devtools_agent.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 | « webkit/glue/webkit_glue.gypi ('k') | webkit/tools/test_shell/test_shell_devtools_agent.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 TEST_SHELL_DEVTOOLS_AGENT_H_ 5 #ifndef TEST_SHELL_DEVTOOLS_AGENT_H_
6 #define TEST_SHELL_DEVTOOLS_AGENT_H_ 6 #define TEST_SHELL_DEVTOOLS_AGENT_H_
7 7
8 #include "base/task.h" 8 #include "base/task.h"
9 9
10 #include "third_party/WebKit/WebKit/chromium/public/WebDevToolsAgentClient.h" 10 #include "third_party/WebKit/WebKit/chromium/public/WebDevToolsAgentClient.h"
(...skipping 11 matching lines...) Expand all
22 22
23 class TestShellDevToolsAgent : public WebKit::WebDevToolsAgentClient { 23 class TestShellDevToolsAgent : public WebKit::WebDevToolsAgentClient {
24 24
25 public: 25 public:
26 TestShellDevToolsAgent(); 26 TestShellDevToolsAgent();
27 virtual ~TestShellDevToolsAgent() {} 27 virtual ~TestShellDevToolsAgent() {}
28 28
29 void SetWebView(WebKit::WebView* web_view); 29 void SetWebView(WebKit::WebView* web_view);
30 30
31 // WebDevToolsAgentClient implementation. 31 // WebDevToolsAgentClient implementation.
32 virtual void sendMessageToFrontend( 32 virtual void sendMessageToInspectorFrontend(
33 const WebKit::WebDevToolsMessageData& data); 33 const WebKit::WebString& data);
34 virtual int hostIdentifier() { return routing_id_; } 34 virtual int hostIdentifier() { return routing_id_; }
35 virtual void forceRepaint(); 35 virtual void forceRepaint();
36 virtual void runtimeFeatureStateChanged(const WebKit::WebString& feature, 36 virtual void runtimeFeatureStateChanged(const WebKit::WebString& feature,
37 bool enabled); 37 bool enabled);
38 virtual WebKit::WebCString injectedScriptSource(); 38 virtual WebKit::WebCString injectedScriptSource();
39 virtual WebKit::WebCString injectedScriptDispatcherSource(); 39 virtual WebKit::WebCString injectedScriptDispatcherSource();
40 virtual WebKit::WebCString debuggerScriptSource(); 40 virtual WebKit::WebCString debuggerScriptSource();
41 41
42 virtual WebKit::WebDevToolsAgentClient::WebKitClientMessageLoop* 42 virtual WebKit::WebDevToolsAgentClient::WebKitClientMessageLoop*
43 createClientMessageLoop(); 43 createClientMessageLoop();
(...skipping 14 matching lines...) Expand all
58 ScopedRunnableMethodFactory<TestShellDevToolsAgent> call_method_factory_; 58 ScopedRunnableMethodFactory<TestShellDevToolsAgent> call_method_factory_;
59 TestShellDevToolsClient* dev_tools_client_; 59 TestShellDevToolsClient* dev_tools_client_;
60 int routing_id_; 60 int routing_id_;
61 WebKit::WebDevToolsAgent* web_dev_tools_agent_; 61 WebKit::WebDevToolsAgent* web_dev_tools_agent_;
62 WebKit::WebView* web_view_; 62 WebKit::WebView* web_view_;
63 63
64 DISALLOW_COPY_AND_ASSIGN(TestShellDevToolsAgent); 64 DISALLOW_COPY_AND_ASSIGN(TestShellDevToolsAgent);
65 }; 65 };
66 66
67 #endif // TEST_SHELL_DEVTOOLS_AGENT_H_ 67 #endif // TEST_SHELL_DEVTOOLS_AGENT_H_
OLDNEW
« no previous file with comments | « webkit/glue/webkit_glue.gypi ('k') | webkit/tools/test_shell/test_shell_devtools_agent.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698