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

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

Issue 1737443002: Make DeviceOrientationEvent.prototype.absolute non-nullable (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address feedback Created 4 years, 9 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 | « no previous file | components/test_runner/test_runner.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_TEST_RUNNER_H_ 5 #ifndef COMPONENTS_TEST_RUNNER_TEST_RUNNER_H_
6 #define COMPONENTS_TEST_RUNNER_TEST_RUNNER_H_ 6 #define COMPONENTS_TEST_RUNNER_TEST_RUNNER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <deque> 10 #include <deque>
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 bool has_rotation_rate_alpha, 297 bool has_rotation_rate_alpha,
298 double rotation_rate_alpha, 298 double rotation_rate_alpha,
299 bool has_rotation_rate_beta, 299 bool has_rotation_rate_beta,
300 double rotation_rate_beta, 300 double rotation_rate_beta,
301 bool has_rotation_rate_gamma, 301 bool has_rotation_rate_gamma,
302 double rotation_rate_gamma, 302 double rotation_rate_gamma,
303 double interval); 303 double interval);
304 void SetMockDeviceOrientation(bool has_alpha, double alpha, 304 void SetMockDeviceOrientation(bool has_alpha, double alpha,
305 bool has_beta, double beta, 305 bool has_beta, double beta,
306 bool has_gamma, double gamma, 306 bool has_gamma, double gamma,
307 bool has_absolute, bool absolute); 307 bool absolute);
308 308
309 void SetMockScreenOrientation(const std::string& orientation); 309 void SetMockScreenOrientation(const std::string& orientation);
310 void DisableMockScreenOrientation(); 310 void DisableMockScreenOrientation();
311 311
312 void DidAcquirePointerLock(); 312 void DidAcquirePointerLock();
313 void DidNotAcquirePointerLock(); 313 void DidNotAcquirePointerLock();
314 void DidLosePointerLock(); 314 void DidLosePointerLock();
315 void SetPointerLockWillFailSynchronously(); 315 void SetPointerLockWillFailSynchronously();
316 void SetPointerLockWillRespondAsynchronously(); 316 void SetPointerLockWillRespondAsynchronously();
317 317
(...skipping 501 matching lines...) Expand 10 before | Expand all | Expand 10 after
819 bool use_mock_theme_; 819 bool use_mock_theme_;
820 820
821 base::WeakPtrFactory<TestRunner> weak_factory_; 821 base::WeakPtrFactory<TestRunner> weak_factory_;
822 822
823 DISALLOW_COPY_AND_ASSIGN(TestRunner); 823 DISALLOW_COPY_AND_ASSIGN(TestRunner);
824 }; 824 };
825 825
826 } // namespace test_runner 826 } // namespace test_runner
827 827
828 #endif // COMPONENTS_TEST_RUNNER_TEST_RUNNER_H_ 828 #endif // COMPONENTS_TEST_RUNNER_TEST_RUNNER_H_
OLDNEW
« no previous file with comments | « no previous file | components/test_runner/test_runner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698