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_DELEGATE_H_ | 5 #ifndef COMPONENTS_TEST_RUNNER_WEB_TEST_DELEGATE_H_ |
6 #define COMPONENTS_TEST_RUNNER_WEB_TEST_DELEGATE_H_ | 6 #define COMPONENTS_TEST_RUNNER_WEB_TEST_DELEGATE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 12 matching lines...) Expand all Loading... |
23 class WebDeviceOrientationData; | 23 class WebDeviceOrientationData; |
24 class WebFrame; | 24 class WebFrame; |
25 class WebGamepad; | 25 class WebGamepad; |
26 class WebGamepads; | 26 class WebGamepads; |
27 class WebHistoryItem; | 27 class WebHistoryItem; |
28 class WebLayer; | 28 class WebLayer; |
29 class WebLocalFrame; | 29 class WebLocalFrame; |
30 class WebMediaStream; | 30 class WebMediaStream; |
31 class WebPlugin; | 31 class WebPlugin; |
32 struct WebPluginParams; | 32 struct WebPluginParams; |
| 33 struct WebPoint; |
33 struct WebRect; | 34 struct WebRect; |
34 struct WebSize; | 35 struct WebSize; |
35 struct WebURLError; | 36 struct WebURLError; |
36 class WebURLResponse; | 37 class WebURLResponse; |
37 class WebView; | 38 class WebView; |
38 } | 39 } |
39 | 40 |
40 namespace cc { | 41 namespace cc { |
41 class TextureLayer; | 42 class TextureLayer; |
42 class TextureLayerClient; | 43 class TextureLayerClient; |
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
273 // 'accepted', otherwise it will be 'dismissed'. | 274 // 'accepted', otherwise it will be 'dismissed'. |
274 virtual void ResolveBeforeInstallPromptPromise( | 275 virtual void ResolveBeforeInstallPromptPromise( |
275 int request_id, | 276 int request_id, |
276 const std::string& platform) = 0; | 277 const std::string& platform) = 0; |
277 | 278 |
278 virtual blink::WebPlugin* CreatePluginPlaceholder( | 279 virtual blink::WebPlugin* CreatePluginPlaceholder( |
279 blink::WebLocalFrame* frame, | 280 blink::WebLocalFrame* frame, |
280 const blink::WebPluginParams& params) = 0; | 281 const blink::WebPluginParams& params) = 0; |
281 | 282 |
282 virtual void OnWebTestProxyBaseDestroy(WebTestProxyBase* proxy) = 0; | 283 virtual void OnWebTestProxyBaseDestroy(WebTestProxyBase* proxy) = 0; |
| 284 |
| 285 // Convert the position in DIP to native coordinates. |
| 286 virtual blink::WebPoint ConvertDIPToNative( |
| 287 const blink::WebPoint& point_in_dip) const = 0; |
283 }; | 288 }; |
284 | 289 |
285 } // namespace test_runner | 290 } // namespace test_runner |
286 | 291 |
287 #endif // COMPONENTS_TEST_RUNNER_WEB_TEST_DELEGATE_H_ | 292 #endif // COMPONENTS_TEST_RUNNER_WEB_TEST_DELEGATE_H_ |
OLD | NEW |