| Index: components/test_runner/web_test_delegate.h
|
| diff --git a/components/test_runner/web_test_delegate.h b/components/test_runner/web_test_delegate.h
|
| index 753831db711f65fdb65e6150467cf11480ba8787..d9881f67aa15a37d90b1b9a6f17b58552791a1b8 100644
|
| --- a/components/test_runner/web_test_delegate.h
|
| +++ b/components/test_runner/web_test_delegate.h
|
| @@ -30,6 +30,7 @@ class WebLocalFrame;
|
| class WebMediaStream;
|
| class WebPlugin;
|
| struct WebPluginParams;
|
| +struct WebPoint;
|
| struct WebRect;
|
| struct WebSize;
|
| struct WebURLError;
|
| @@ -280,6 +281,10 @@ class WebTestDelegate {
|
| const blink::WebPluginParams& params) = 0;
|
|
|
| virtual void OnWebTestProxyBaseDestroy(WebTestProxyBase* proxy) = 0;
|
| +
|
| + // Convert the position in DIP to native coordinates.
|
| + virtual blink::WebPoint ConvertDIPToNative(
|
| + const blink::WebPoint& point_in_dip) const = 0;
|
| };
|
|
|
| } // namespace test_runner
|
|
|