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

Unified Diff: components/test_runner/text_input_controller.cc

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/text_input_controller.h ('k') | components/test_runner/web_frame_test_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/test_runner/text_input_controller.cc
diff --git a/components/test_runner/text_input_controller.cc b/components/test_runner/text_input_controller.cc
index a10d84962d81da8aafeef0139a49305bf42a98fd..788570bb87e9b0a8d6abebca3c641b7af5ec59fe 100644
--- a/components/test_runner/text_input_controller.cc
+++ b/components/test_runner/text_input_controller.cc
@@ -5,7 +5,7 @@
#include "components/test_runner/text_input_controller.h"
#include "base/macros.h"
-#include "components/test_runner/web_test_proxy.h"
+#include "components/test_runner/web_view_test_proxy.h"
#include "gin/arguments.h"
#include "gin/handle.h"
#include "gin/object_template_builder.h"
@@ -148,8 +148,10 @@ void TextInputControllerBindings::SetComposition(const std::string& text) {
// TextInputController ---------------------------------------------------------
-TextInputController::TextInputController(WebTestProxyBase* web_test_proxy_base)
- : web_test_proxy_base_(web_test_proxy_base), weak_factory_(this) {}
+TextInputController::TextInputController(
+ WebViewTestProxyBase* web_view_test_proxy_base)
+ : web_view_test_proxy_base_(web_view_test_proxy_base),
+ weak_factory_(this) {}
TextInputController::~TextInputController() {}
@@ -292,7 +294,7 @@ void TextInputController::SetComposition(const std::string& text) {
}
blink::WebView* TextInputController::view() {
- return web_test_proxy_base_->web_view();
+ return web_view_test_proxy_base_->web_view();
}
} // namespace test_runner
« no previous file with comments | « components/test_runner/text_input_controller.h ('k') | components/test_runner/web_frame_test_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698