Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(464)

Unified Diff: components/test_runner/web_widget_test_client.h

Issue 2171503005: Rename WebTestProxy to WebViewTestProxy. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressing comments Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/test_runner/web_view_test_proxy.cc ('k') | components/test_runner/web_widget_test_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_;
« no previous file with comments | « components/test_runner/web_view_test_proxy.cc ('k') | components/test_runner/web_widget_test_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698