| OLD | NEW |
| 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 COMPONENTS_TEST_RUNNER_WEB_TEST_INTERFACES_H_ |
| 6 #define COMPONENTS_TEST_RUNNER_WEB_TEST_INTERFACES_H_ | 6 #define COMPONENTS_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 "components/test_runner/test_runner_export.h" |
| 13 | 13 |
| 14 namespace blink { | 14 namespace blink { |
| 15 class WebAudioDevice; | 15 class WebAudioDevice; |
| 16 class WebFrame; | |
| 17 class WebFrameClient; | 16 class WebFrameClient; |
| 18 class WebMediaStreamCenter; | 17 class WebMediaStreamCenter; |
| 19 class WebMediaStreamCenterClient; | 18 class WebMediaStreamCenterClient; |
| 20 class WebMIDIAccessor; | 19 class WebMIDIAccessor; |
| 21 class WebMIDIAccessorClient; | 20 class WebMIDIAccessorClient; |
| 22 class WebRTCPeerConnectionHandler; | 21 class WebRTCPeerConnectionHandler; |
| 23 class WebRTCPeerConnectionHandlerClient; | 22 class WebRTCPeerConnectionHandlerClient; |
| 24 class WebThemeEngine; | 23 class WebThemeEngine; |
| 25 class WebURL; | 24 class WebURL; |
| 26 class WebView; | 25 class WebView; |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 | 91 |
| 93 private: | 92 private: |
| 94 std::unique_ptr<TestInterfaces> interfaces_; | 93 std::unique_ptr<TestInterfaces> interfaces_; |
| 95 | 94 |
| 96 DISALLOW_COPY_AND_ASSIGN(WebTestInterfaces); | 95 DISALLOW_COPY_AND_ASSIGN(WebTestInterfaces); |
| 97 }; | 96 }; |
| 98 | 97 |
| 99 } // namespace test_runner | 98 } // namespace test_runner |
| 100 | 99 |
| 101 #endif // COMPONENTS_TEST_RUNNER_WEB_TEST_INTERFACES_H_ | 100 #endif // COMPONENTS_TEST_RUNNER_WEB_TEST_INTERFACES_H_ |
| OLD | NEW |