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

Unified Diff: components/test_runner/test_interfaces.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/test_interfaces.h ('k') | components/test_runner/test_runner.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/test_runner/test_interfaces.cc
diff --git a/components/test_runner/test_interfaces.cc b/components/test_runner/test_interfaces.cc
index 3b2d7c3af8c6625d3b873cacdc81c3ffa0a34452..d28293252be849740ba1132366dcd2cd33e72e1e 100644
--- a/components/test_runner/test_interfaces.cc
+++ b/components/test_runner/test_interfaces.cc
@@ -18,7 +18,7 @@
#include "components/test_runner/gc_controller.h"
#include "components/test_runner/test_runner.h"
#include "components/test_runner/text_input_controller.h"
-#include "components/test_runner/web_test_proxy.h"
+#include "components/test_runner/web_view_test_proxy.h"
#include "third_party/WebKit/public/platform/WebURL.h"
#include "third_party/WebKit/public/web/WebCache.h"
#include "third_party/WebKit/public/web/WebKit.h"
@@ -69,8 +69,8 @@ void TestInterfaces::ResetTestHelperControllers() {
gamepad_controller_->Reset();
blink::WebCache::clear();
- for (WebTestProxyBase* web_test_proxy_base : window_list_)
- web_test_proxy_base->Reset();
+ for (WebViewTestProxyBase* web_view_test_proxy_base : window_list_)
+ web_view_test_proxy_base->Reset();
}
void TestInterfaces::ResetAll() {
@@ -121,12 +121,12 @@ void TestInterfaces::SetAppBannerClient(AppBannerClient* app_banner_client) {
app_banner_client_ = app_banner_client;
}
-void TestInterfaces::WindowOpened(WebTestProxyBase* proxy) {
+void TestInterfaces::WindowOpened(WebViewTestProxyBase* proxy) {
window_list_.push_back(proxy);
}
-void TestInterfaces::WindowClosed(WebTestProxyBase* proxy) {
- std::vector<WebTestProxyBase*>::iterator pos =
+void TestInterfaces::WindowClosed(WebViewTestProxyBase* proxy) {
+ std::vector<WebViewTestProxyBase*>::iterator pos =
std::find(window_list_.begin(), window_list_.end(), proxy);
if (pos == window_list_.end()) {
NOTREACHED();
@@ -146,7 +146,7 @@ WebTestDelegate* TestInterfaces::GetDelegate() {
return delegate_;
}
-const std::vector<WebTestProxyBase*>& TestInterfaces::GetWindowList() {
+const std::vector<WebViewTestProxyBase*>& TestInterfaces::GetWindowList() {
return window_list_;
}
« no previous file with comments | « components/test_runner/test_interfaces.h ('k') | components/test_runner/test_runner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698