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

Side by Side Diff: components/test_runner/web_test_proxy.h

Issue 2050033002: Revert of Remove enable/disable wheel gestures setting. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@can_scroll_remove
Patch Set: Created 4 years, 6 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 unified diff | Download patch
« no previous file with comments | « components/test_runner/event_sender.cc ('k') | components/test_runner/web_test_proxy.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef COMPONENTS_TEST_RUNNER_WEB_TEST_PROXY_H_ 5 #ifndef COMPONENTS_TEST_RUNNER_WEB_TEST_PROXY_H_
6 #define COMPONENTS_TEST_RUNNER_WEB_TEST_PROXY_H_ 6 #define COMPONENTS_TEST_RUNNER_WEB_TEST_PROXY_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 #include <utility> 10 #include <utility>
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 void set_delegate(WebTestDelegate* delegate) { 89 void set_delegate(WebTestDelegate* delegate) {
90 DCHECK(delegate); 90 DCHECK(delegate);
91 DCHECK(!delegate_); 91 DCHECK(!delegate_);
92 delegate_ = delegate; 92 delegate_ = delegate;
93 } 93 }
94 94
95 TestInterfaces* test_interfaces() { return test_interfaces_; } 95 TestInterfaces* test_interfaces() { return test_interfaces_; }
96 void SetInterfaces(WebTestInterfaces* web_test_interfaces); 96 void SetInterfaces(WebTestInterfaces* web_test_interfaces);
97 97
98 EventSender* event_sender() { return event_sender_.get(); } 98 EventSender* event_sender() { return event_sender_.get(); }
99 void SetSendWheelGestures(bool send_gestures);
99 100
100 AccessibilityController* accessibility_controller() { 101 AccessibilityController* accessibility_controller() {
101 return accessibility_controller_.get(); 102 return accessibility_controller_.get();
102 } 103 }
103 104
104 TestRunnerForSpecificView* view_test_runner() { 105 TestRunnerForSpecificView* view_test_runner() {
105 return view_test_runner_.get(); 106 return view_test_runner_.get();
106 } 107 }
107 108
108 void Reset(); 109 void Reset();
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 251
251 private: 252 private:
252 virtual ~WebTestProxy() {} 253 virtual ~WebTestProxy() {}
253 254
254 DISALLOW_COPY_AND_ASSIGN(WebTestProxy); 255 DISALLOW_COPY_AND_ASSIGN(WebTestProxy);
255 }; 256 };
256 257
257 } // namespace test_runner 258 } // namespace test_runner
258 259
259 #endif // COMPONENTS_TEST_RUNNER_WEB_TEST_PROXY_H_ 260 #endif // COMPONENTS_TEST_RUNNER_WEB_TEST_PROXY_H_
OLDNEW
« no previous file with comments | « components/test_runner/event_sender.cc ('k') | components/test_runner/web_test_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698