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

Unified Diff: components/test_runner/web_test_proxy.h

Issue 1903043002: Use correct WebView from AccessibilityController. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@event-sender-per-view
Patch Set: Rebasing... Created 4 years, 8 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.cc ('k') | components/test_runner/web_test_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/test_runner/web_test_proxy.h
diff --git a/components/test_runner/web_test_proxy.h b/components/test_runner/web_test_proxy.h
index c3a220b0f25e66943ac1cd4692e3dfe13eacf64e..53870f3831c4202878c2bde44bcef4cdae4ce669 100644
--- a/components/test_runner/web_test_proxy.h
+++ b/components/test_runner/web_test_proxy.h
@@ -41,6 +41,7 @@ struct WebWindowFeatures;
namespace test_runner {
+class AccessibilityController;
class EventSender;
class TestInterfaces;
class TextInputController;
@@ -87,6 +88,10 @@ class TEST_RUNNER_EXPORT WebTestProxyBase {
EventSender* event_sender() { return event_sender_.get(); }
void SetSendWheelGestures(bool send_gestures);
+ AccessibilityController* accessibility_controller() {
+ return accessibility_controller_.get();
+ }
+
void Reset();
void BindTo(blink::WebLocalFrame* frame);
@@ -104,6 +109,7 @@ class TEST_RUNNER_EXPORT WebTestProxyBase {
blink::WebView* web_view_;
blink::WebWidget* web_widget_;
scoped_ptr<WebViewTestClient> view_test_client_;
+ scoped_ptr<AccessibilityController> accessibility_controller_;
scoped_ptr<EventSender> event_sender_;
scoped_ptr<TextInputController> text_input_controller_;
« no previous file with comments | « components/test_runner/web_test_interfaces.cc ('k') | components/test_runner/web_test_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698