Index: components/test_runner/text_input_controller.h |
diff --git a/components/test_runner/text_input_controller.h b/components/test_runner/text_input_controller.h |
index f7fa3676aa17f296cabfb2d604022e486fe4107f..d7d29586b2effcc2b88bc66a09de5b67d4bb16b1 100644 |
--- a/components/test_runner/text_input_controller.h |
+++ b/components/test_runner/text_input_controller.h |
@@ -18,14 +18,14 @@ class WebView; |
namespace test_runner { |
-class WebTestProxyBase; |
+class WebViewTestProxyBase; |
// TextInputController is bound to window.textInputController in Javascript |
// when content_shell is running. Layout tests use it to exercise various |
// corners of text input. |
class TextInputController { |
public: |
- explicit TextInputController(WebTestProxyBase* web_test_proxy_base); |
+ explicit TextInputController(WebViewTestProxyBase* web_view_test_proxy_base); |
~TextInputController(); |
void Install(blink::WebLocalFrame* frame); |
@@ -45,7 +45,7 @@ class TextInputController { |
void SetComposition(const std::string& text); |
blink::WebView* view(); |
- WebTestProxyBase* web_test_proxy_base_; |
+ WebViewTestProxyBase* web_view_test_proxy_base_; |
base::WeakPtrFactory<TextInputController> weak_factory_; |