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

Unified Diff: components/test_runner/accessibility_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/accessibility_controller.h ('k') | components/test_runner/event_sender.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/test_runner/accessibility_controller.cc
diff --git a/components/test_runner/accessibility_controller.cc b/components/test_runner/accessibility_controller.cc
index 005100c246220e94e2b3a55352393936196f1ec8..84bf61a3f1c8f9d9982d429f3d7c3f137871dae9 100644
--- a/components/test_runner/accessibility_controller.cc
+++ b/components/test_runner/accessibility_controller.cc
@@ -5,7 +5,7 @@
#include "components/test_runner/accessibility_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/handle.h"
#include "gin/object_template_builder.h"
#include "gin/wrappable.h"
@@ -136,9 +136,9 @@ v8::Local<v8::Object> AccessibilityControllerBindings::AccessibleElementById(
}
AccessibilityController::AccessibilityController(
- WebTestProxyBase* web_test_proxy_base)
+ WebViewTestProxyBase* web_view_test_proxy_base)
: log_accessibility_events_(false),
- web_test_proxy_base_(web_test_proxy_base),
+ web_view_test_proxy_base_(web_view_test_proxy_base),
weak_factory_(this) {}
AccessibilityController::~AccessibilityController() {}
@@ -270,7 +270,7 @@ AccessibilityController::FindAccessibleElementByIdRecursive(
}
blink::WebView* AccessibilityController::web_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/accessibility_controller.h ('k') | components/test_runner/event_sender.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698