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

Side by Side Diff: content/shell/renderer/test_runner/web_test_interfaces.h

Issue 595943002: WebTestInterfaces class to chromium c++ style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: resolved comments Created 6 years, 2 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
OLDNEW
(Empty)
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_TEST_INTERFACES_H_
6 #define CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_TEST_INTERFACES_H_
7
8 #include "base/memory/scoped_ptr.h"
9
10 namespace blink {
11 class WebAudioDevice;
12 class WebFrame;
13 class WebMediaStreamCenter;
14 class WebMediaStreamCenterClient;
15 class WebMIDIAccessor;
16 class WebMIDIAccessorClient;
17 class WebRTCPeerConnectionHandler;
18 class WebRTCPeerConnectionHandlerClient;
19 class WebThemeEngine;
20 class WebURL;
21 class WebView;
22 }
23
24 namespace content {
25
26 class TestInterfaces;
27 class WebTestDelegate;
28 class WebTestProxyBase;
29 class WebTestRunner;
30
31 class WebTestInterfaces {
32 public:
33 WebTestInterfaces();
34 ~WebTestInterfaces();
35
36 void SetWebView(blink::WebView* web_view, WebTestProxyBase* proxy);
37 void SetDelegate(WebTestDelegate* delegate);
38 void BindTo(blink::WebFrame* frame);
39 void ResetAll();
40 void SetTestIsRunning(bool running);
41 void ConfigureForTestWithURL(const blink::WebURL& test_url,
42 bool generate_pixels);
43
44 WebTestRunner* TestRunner();
45 blink::WebThemeEngine* ThemeEngine();
46
47 blink::WebMediaStreamCenter* CreateMediaStreamCenter(
48 blink::WebMediaStreamCenterClient* client);
49 blink::WebRTCPeerConnectionHandler* CreateWebRTCPeerConnectionHandler(
50 blink::WebRTCPeerConnectionHandlerClient* client);
51
52 blink::WebMIDIAccessor* CreateMIDIAccessor(
53 blink::WebMIDIAccessorClient* client);
54
55 blink::WebAudioDevice* CreateAudioDevice(double sample_rate);
56
57 TestInterfaces* GetTestInterfaces();
58
59 private:
60 scoped_ptr<TestInterfaces> interfaces_;
61
62 DISALLOW_COPY_AND_ASSIGN(WebTestInterfaces);
63 };
64
65 } // namespace content
66
67 #endif // CONTENT_SHELL_RENDERER_TEST_RUNNER_WEB_TEST_INTERFACES_H_
OLDNEW
« no previous file with comments | « content/shell/renderer/test_runner/WebTestInterfaces.cpp ('k') | content/shell/renderer/test_runner/web_test_interfaces.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698