| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_VIEW_TEST_PROXY_H_ | 5 #ifndef COMPONENTS_TEST_RUNNER_WEB_VIEW_TEST_PROXY_H_ |
| 6 #define COMPONENTS_TEST_RUNNER_WEB_VIEW_TEST_PROXY_H_ | 6 #define COMPONENTS_TEST_RUNNER_WEB_VIEW_TEST_PROXY_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 #include "third_party/WebKit/public/platform/WebURLRequest.h" | 23 #include "third_party/WebKit/public/platform/WebURLRequest.h" |
| 24 #include "third_party/WebKit/public/web/WebDOMMessageEvent.h" | 24 #include "third_party/WebKit/public/web/WebDOMMessageEvent.h" |
| 25 #include "third_party/WebKit/public/web/WebHistoryCommitType.h" | 25 #include "third_party/WebKit/public/web/WebHistoryCommitType.h" |
| 26 #include "third_party/WebKit/public/web/WebNavigationPolicy.h" | 26 #include "third_party/WebKit/public/web/WebNavigationPolicy.h" |
| 27 #include "third_party/WebKit/public/web/WebTextDirection.h" | 27 #include "third_party/WebKit/public/web/WebTextDirection.h" |
| 28 #include "third_party/WebKit/public/web/WebViewClient.h" | 28 #include "third_party/WebKit/public/web/WebViewClient.h" |
| 29 #include "third_party/WebKit/public/web/WebWidgetClient.h" | 29 #include "third_party/WebKit/public/web/WebWidgetClient.h" |
| 30 | 30 |
| 31 namespace blink { | 31 namespace blink { |
| 32 class WebDragData; | 32 class WebDragData; |
| 33 class WebFileChooserCompletion; | |
| 34 class WebImage; | 33 class WebImage; |
| 35 class WebLocalFrame; | 34 class WebLocalFrame; |
| 36 class WebString; | 35 class WebString; |
| 37 class WebView; | 36 class WebView; |
| 38 class WebWidget; | 37 class WebWidget; |
| 39 struct WebFileChooserParams; | |
| 40 struct WebPoint; | 38 struct WebPoint; |
| 41 struct WebWindowFeatures; | 39 struct WebWindowFeatures; |
| 42 } | 40 } |
| 43 | 41 |
| 44 namespace test_runner { | 42 namespace test_runner { |
| 45 | 43 |
| 46 class AccessibilityController; | 44 class AccessibilityController; |
| 47 class TestInterfaces; | 45 class TestInterfaces; |
| 48 class TestRunnerForSpecificView; | 46 class TestRunnerForSpecificView; |
| 49 class TextInputController; | 47 class TextInputController; |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 | 223 |
| 226 private: | 224 private: |
| 227 virtual ~WebViewTestProxy() {} | 225 virtual ~WebViewTestProxy() {} |
| 228 | 226 |
| 229 DISALLOW_COPY_AND_ASSIGN(WebViewTestProxy); | 227 DISALLOW_COPY_AND_ASSIGN(WebViewTestProxy); |
| 230 }; | 228 }; |
| 231 | 229 |
| 232 } // namespace test_runner | 230 } // namespace test_runner |
| 233 | 231 |
| 234 #endif // COMPONENTS_TEST_RUNNER_WEB_VIEW_TEST_PROXY_H_ | 232 #endif // COMPONENTS_TEST_RUNNER_WEB_VIEW_TEST_PROXY_H_ |
| OLD | NEW |