| Index: components/test_runner/web_widget_test_client.h
|
| diff --git a/components/test_runner/web_widget_test_client.h b/components/test_runner/web_widget_test_client.h
|
| index 1766746db20fc8cd05bf0666916d4128dc87ab37..a5e9d5d1d1a87ccc23ba5a949fb7c8ce5bb93a5f 100644
|
| --- a/components/test_runner/web_widget_test_client.h
|
| +++ b/components/test_runner/web_widget_test_client.h
|
| @@ -17,22 +17,23 @@ namespace test_runner {
|
|
|
| class TestRunner;
|
| class WebTestDelegate;
|
| -class WebTestProxyBase;
|
| +class WebViewTestProxyBase;
|
|
|
| // WebWidgetTestClient implements WebWidgetClient interface, providing behavior
|
| -// expected by tests. WebWidgetTestClient ends up used by WebTestProxy which
|
| -// coordinates forwarding WebWidgetClient calls either to WebWidgetTestClient or
|
| -// to the product code (i.e. currently to RenderViewImpl).
|
| +// expected by tests. WebWidgetTestClient ends up used by WebViewTestProxy
|
| +// which coordinates forwarding WebWidgetClient calls either to
|
| +// WebWidgetTestClient or to the product code (i.e. currently to
|
| +// RenderViewImpl).
|
| class WebWidgetTestClient : public blink::WebWidgetClient {
|
| public:
|
| // Caller has to ensure that all arguments (i.e. |test_runner| and |delegate|)
|
| // live longer than |this|.
|
| WebWidgetTestClient(TestRunner* test_runner,
|
| - WebTestProxyBase* web_test_proxy_base);
|
| + WebViewTestProxyBase* web_view_test_proxy_base);
|
|
|
| virtual ~WebWidgetTestClient();
|
|
|
| - // WebWidgetClient overrides needed by WebTestProxy.
|
| + // WebWidgetClient overrides needed by WebViewTestProxy.
|
| blink::WebScreenInfo screenInfo() override;
|
| void scheduleAnimation() override;
|
| bool requestPointerLock() override;
|
| @@ -47,7 +48,7 @@ class WebWidgetTestClient : public blink::WebWidgetClient {
|
|
|
| // Borrowed pointers to other parts of Layout Tests state.
|
| TestRunner* test_runner_;
|
| - WebTestProxyBase* web_test_proxy_base_;
|
| + WebViewTestProxyBase* web_view_test_proxy_base_;
|
|
|
| bool animation_scheduled_;
|
|
|
|
|