blob: af8f41b1ccc6407d856ce514fc0c87c3c6a389af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef TEST_SHELL_DEVTOOLS_CLIENT_H_
#define TEST_SHELL_DEVTOOLS_CLIENT_H_
#include "base/memory/scoped_ptr.h"
#include "base/task.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebDevToolsFrontendClient.h"
namespace WebKit {
class WebDevToolsFrontend;
struct WebDevToolsMessageData;
} // namespace WebKit
class TestShellDevToolsCallArgs;
class TestShellDevToolsAgent;
class TestShellDevToolsClient: public WebKit::WebDevToolsFrontendClient {
public:
TestShellDevToolsClient(TestShellDevToolsAgent* agent,
WebKit::WebView* web_view);
virtual ~TestShellDevToolsClient();
// WebDevToolsFrontendClient implementation
virtual void sendFrontendLoaded();
virtual void sendMessageToBackend(const WebKit::WebString& data);
virtual void sendDebuggerCommandToAgent(const WebKit::WebString& command);
virtual void activateWindow();
virtual void closeWindow();
virtual void dockWindow();
virtual void undockWindow();
void AsyncCall(const TestShellDevToolsCallArgs& args);
void all_messages_processed();
private:
void Call(const TestShellDevToolsCallArgs& args);
ScopedRunnableMethodFactory<TestShellDevToolsClient> call_method_factory_;
TestShellDevToolsAgent* dev_tools_agent_;
WebKit::WebView* web_view_;
scoped_ptr<WebKit::WebDevToolsFrontend> web_tools_frontend_;
DISALLOW_COPY_AND_ASSIGN(TestShellDevToolsClient);
};
#endif // TEST_SHELL_DEVTOOLS_CLIENT_H_
|