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

Unified Diff: components/test_runner/web_view_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_test_runner.h ('k') | components/test_runner/web_view_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_view_test_client.h
diff --git a/components/test_runner/web_view_test_client.h b/components/test_runner/web_view_test_client.h
index 03c65cda63a330551bf01f9426cbb6c07e8a7bdb..21b8c6117ca27077a39bb1d68b0d71123af258b7 100644
--- a/components/test_runner/web_view_test_client.h
+++ b/components/test_runner/web_view_test_client.h
@@ -17,10 +17,10 @@ namespace test_runner {
class EventSender;
class TestRunner;
class WebTestDelegate;
-class WebTestProxyBase;
+class WebViewTestProxyBase;
// WebViewTestClient implements WebViewClient interface, providing behavior
-// expected by tests. WebViewTestClient ends up used by WebTestProxy
+// expected by tests. WebViewTestClient ends up used by WebViewTestProxy
// which coordinates forwarding WebViewClient calls either to
// WebViewTestClient or to the product code (i.e. to RenderViewImpl).
class WebViewTestClient : public blink::WebViewClient {
@@ -28,11 +28,11 @@ class WebViewTestClient : public blink::WebViewClient {
// Caller has to ensure that all arguments (i.e. |test_runner| and |delegate|)
// live longer than |this|.
WebViewTestClient(TestRunner* test_runner,
- WebTestProxyBase* web_test_proxy_base);
+ WebViewTestProxyBase* web_view_test_proxy_base);
virtual ~WebViewTestClient();
- // WebViewClient overrides needed by WebTestProxy.
+ // WebViewClient overrides needed by WebViewTestProxy.
void showValidationMessage(const blink::WebRect& anchor_in_root_view,
const blink::WebString& main_message,
blink::WebTextDirection main_message_hint,
@@ -61,7 +61,7 @@ class WebViewTestClient : public blink::WebViewClient {
// Borrowed pointers to other parts of Layout Tests state.
TestRunner* test_runner_;
- WebTestProxyBase* web_test_proxy_base_;
+ WebViewTestProxyBase* web_view_test_proxy_base_;
DISALLOW_COPY_AND_ASSIGN(WebViewTestClient);
};
« no previous file with comments | « components/test_runner/web_test_runner.h ('k') | components/test_runner/web_view_test_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698