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

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

Issue 2707183003: Move //components/test_runner back into //content/shell (Closed)
Patch Set: Trim DEPS Created 3 years, 10 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
1 // Copyright 2013 The Chromium Authors. All rights reserved. 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 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 COMPONENTS_TEST_RUNNER_WEB_TEST_INTERFACES_H_ 5 #ifndef CONTENT_SHELL_TEST_RUNNER_WEB_TEST_INTERFACES_H_
6 #define COMPONENTS_TEST_RUNNER_WEB_TEST_INTERFACES_H_ 6 #define CONTENT_SHELL_TEST_RUNNER_WEB_TEST_INTERFACES_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "components/test_runner/test_runner_export.h" 12 #include "content/shell/test_runner/test_runner_export.h"
13 13
14 namespace blink { 14 namespace blink {
15 class WebAudioDevice; 15 class WebAudioDevice;
16 class WebFrameClient; 16 class WebFrameClient;
17 class WebMediaStreamCenter; 17 class WebMediaStreamCenter;
18 class WebMediaStreamCenterClient; 18 class WebMediaStreamCenterClient;
19 class WebMIDIAccessor; 19 class WebMIDIAccessor;
20 class WebMIDIAccessorClient; 20 class WebMIDIAccessorClient;
21 class WebRTCPeerConnectionHandler; 21 class WebRTCPeerConnectionHandler;
22 class WebRTCPeerConnectionHandlerClient; 22 class WebRTCPeerConnectionHandlerClient;
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 std::vector<blink::WebView*> GetWindowList(); 91 std::vector<blink::WebView*> GetWindowList();
92 92
93 private: 93 private:
94 std::unique_ptr<TestInterfaces> interfaces_; 94 std::unique_ptr<TestInterfaces> interfaces_;
95 95
96 DISALLOW_COPY_AND_ASSIGN(WebTestInterfaces); 96 DISALLOW_COPY_AND_ASSIGN(WebTestInterfaces);
97 }; 97 };
98 98
99 } // namespace test_runner 99 } // namespace test_runner
100 100
101 #endif // COMPONENTS_TEST_RUNNER_WEB_TEST_INTERFACES_H_ 101 #endif // CONTENT_SHELL_TEST_RUNNER_WEB_TEST_INTERFACES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698