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); |
}; |