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

Unified Diff: components/test_runner/web_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/web_test_interfaces.h ('k') | components/test_runner/web_test_proxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/test_runner/web_test_interfaces.cc
diff --git a/components/test_runner/web_test_interfaces.cc b/components/test_runner/web_test_interfaces.cc
index 241e240cd63dccc443b815b5353253924dc139af..fa9b59b15df703dcc8ea346f844c42e03f099b97 100644
--- a/components/test_runner/web_test_interfaces.cc
+++ b/components/test_runner/web_test_interfaces.cc
@@ -15,8 +15,8 @@
#include "components/test_runner/test_interfaces.h"
#include "components/test_runner/test_runner.h"
#include "components/test_runner/web_frame_test_client.h"
-#include "components/test_runner/web_test_proxy.h"
#include "components/test_runner/web_view_test_client.h"
+#include "components/test_runner/web_view_test_proxy.h"
#include "components/test_runner/web_widget_test_client.h"
using namespace blink;
@@ -90,30 +90,29 @@ WebTestInterfaces::CreateAppBannerClient() {
}
std::unique_ptr<WebFrameTestClient> WebTestInterfaces::CreateWebFrameTestClient(
- WebTestProxyBase* web_test_proxy_base,
+ WebViewTestProxyBase* web_view_test_proxy_base,
WebFrameTestProxyBase* web_frame_test_proxy_base) {
- return base::WrapUnique(new WebFrameTestClient(interfaces_->GetTestRunner(),
- interfaces_->GetDelegate(),
- web_test_proxy_base,
- web_frame_test_proxy_base));
+ return base::WrapUnique(new WebFrameTestClient(
+ interfaces_->GetTestRunner(), interfaces_->GetDelegate(),
+ web_view_test_proxy_base, web_frame_test_proxy_base));
}
std::unique_ptr<WebViewTestClient> WebTestInterfaces::CreateWebViewTestClient(
- WebTestProxyBase* web_test_proxy_base) {
- return base::WrapUnique(
- new WebViewTestClient(interfaces_->GetTestRunner(), web_test_proxy_base));
+ WebViewTestProxyBase* web_view_test_proxy_base) {
+ return base::WrapUnique(new WebViewTestClient(interfaces_->GetTestRunner(),
+ web_view_test_proxy_base));
}
std::unique_ptr<WebWidgetTestClient>
WebTestInterfaces::CreateWebWidgetTestClient(
- WebTestProxyBase* web_test_proxy_base) {
+ WebViewTestProxyBase* web_view_test_proxy_base) {
return base::WrapUnique(new WebWidgetTestClient(interfaces_->GetTestRunner(),
- web_test_proxy_base));
+ web_view_test_proxy_base));
}
std::vector<blink::WebView*> WebTestInterfaces::GetWindowList() {
std::vector<blink::WebView*> result;
- for (WebTestProxyBase* proxy : interfaces_->GetWindowList())
+ for (WebViewTestProxyBase* proxy : interfaces_->GetWindowList())
result.push_back(proxy->web_view());
return result;
}
« no previous file with comments | « components/test_runner/web_test_interfaces.h ('k') | components/test_runner/web_test_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698