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

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

Issue 1538803002: Migrates battery_status from content/renderer/ to WebKit/platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Ready for code review Created 4 years, 10 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
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 #include "components/test_runner/test_runner.h" 5 #include "components/test_runner/test_runner.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <limits> 8 #include <limits>
9 #include <utility> 9 #include <utility>
10 10
11 #include "base/command_line.h" 11 #include "base/command_line.h"
12 #include "base/logging.h" 12 #include "base/logging.h"
13 #include "base/macros.h" 13 #include "base/macros.h"
14 #include "base/strings/string_number_conversions.h" 14 #include "base/strings/string_number_conversions.h"
15 #include "base/strings/stringprintf.h" 15 #include "base/strings/stringprintf.h"
16 #include "build/build_config.h" 16 #include "build/build_config.h"
17 #include "components/test_runner/mock_credential_manager_client.h" 17 #include "components/test_runner/mock_credential_manager_client.h"
18 #include "components/test_runner/mock_web_speech_recognizer.h" 18 #include "components/test_runner/mock_web_speech_recognizer.h"
19 #include "components/test_runner/test_interfaces.h" 19 #include "components/test_runner/test_interfaces.h"
20 #include "components/test_runner/test_preferences.h" 20 #include "components/test_runner/test_preferences.h"
21 #include "components/test_runner/web_content_settings.h" 21 #include "components/test_runner/web_content_settings.h"
22 #include "components/test_runner/web_test_delegate.h" 22 #include "components/test_runner/web_test_delegate.h"
23 #include "components/test_runner/web_test_proxy.h" 23 #include "components/test_runner/web_test_proxy.h"
24 #include "gin/arguments.h" 24 #include "gin/arguments.h"
25 #include "gin/array_buffer.h" 25 #include "gin/array_buffer.h"
26 #include "gin/handle.h" 26 #include "gin/handle.h"
27 #include "gin/object_template_builder.h" 27 #include "gin/object_template_builder.h"
28 #include "gin/wrappable.h" 28 #include "gin/wrappable.h"
29 #include "third_party/WebKit/public/platform/WebBatteryStatus.h"
30 #include "third_party/WebKit/public/platform/WebCanvas.h" 29 #include "third_party/WebKit/public/platform/WebCanvas.h"
31 #include "third_party/WebKit/public/platform/WebData.h" 30 #include "third_party/WebKit/public/platform/WebData.h"
32 #include "third_party/WebKit/public/platform/WebPasswordCredential.h" 31 #include "third_party/WebKit/public/platform/WebPasswordCredential.h"
33 #include "third_party/WebKit/public/platform/WebPoint.h" 32 #include "third_party/WebKit/public/platform/WebPoint.h"
34 #include "third_party/WebKit/public/platform/WebURLResponse.h" 33 #include "third_party/WebKit/public/platform/WebURLResponse.h"
35 #include "third_party/WebKit/public/platform/modules/device_orientation/WebDevic eMotionData.h" 34 #include "third_party/WebKit/public/platform/modules/device_orientation/WebDevic eMotionData.h"
36 #include "third_party/WebKit/public/platform/modules/device_orientation/WebDevic eOrientationData.h" 35 #include "third_party/WebKit/public/platform/modules/device_orientation/WebDevic eOrientationData.h"
37 #include "third_party/WebKit/public/platform/modules/serviceworker/WebServiceWor kerRegistration.h" 36 #include "third_party/WebKit/public/platform/modules/serviceworker/WebServiceWor kerRegistration.h"
38 #include "third_party/WebKit/public/web/WebArrayBuffer.h" 37 #include "third_party/WebKit/public/web/WebArrayBuffer.h"
39 #include "third_party/WebKit/public/web/WebArrayBufferConverter.h" 38 #include "third_party/WebKit/public/web/WebArrayBufferConverter.h"
(...skipping 2505 matching lines...) Expand 10 before | Expand all | Expand 10 after
2545 orientation = WebScreenOrientationPortraitSecondary; 2544 orientation = WebScreenOrientationPortraitSecondary;
2546 } else if (orientation_str == "landscape-primary") { 2545 } else if (orientation_str == "landscape-primary") {
2547 orientation = WebScreenOrientationLandscapePrimary; 2546 orientation = WebScreenOrientationLandscapePrimary;
2548 } else if (orientation_str == "landscape-secondary") { 2547 } else if (orientation_str == "landscape-secondary") {
2549 orientation = WebScreenOrientationLandscapeSecondary; 2548 orientation = WebScreenOrientationLandscapeSecondary;
2550 } 2549 }
2551 2550
2552 delegate_->SetScreenOrientation(orientation); 2551 delegate_->SetScreenOrientation(orientation);
2553 } 2552 }
2554 2553
2555 void TestRunner::DidChangeBatteryStatus(bool charging, 2554 void TestRunner::DidChangeBatteryStatus(bool charging,
haraken 2016/02/09 12:01:21 Not directly related to this CL, but what's a diff
Yuki 2016/02/12 12:36:14 I'm not sure, but I guess window.internals is impl
2556 double chargingTime, 2555 double chargingTime,
2557 double dischargingTime, 2556 double dischargingTime,
2558 double level) { 2557 double level) {
2559 blink::WebBatteryStatus status; 2558 web_view_->updateBatteryStatusForTesting(
2560 status.charging = charging; 2559 charging, chargingTime, dischargingTime, level);
2561 status.chargingTime = chargingTime;
2562 status.dischargingTime = dischargingTime;
2563 status.level = level;
2564 delegate_->DidChangeBatteryStatus(status);
2565 } 2560 }
2566 2561
2567 void TestRunner::ResetBatteryStatus() { 2562 void TestRunner::ResetBatteryStatus() {
2568 blink::WebBatteryStatus status; 2563 web_view_->resetBatteryStatusForTesting();
2569 delegate_->DidChangeBatteryStatus(status);
2570 } 2564 }
2571 2565
2572 void TestRunner::DidAcquirePointerLock() { 2566 void TestRunner::DidAcquirePointerLock() {
2573 DidAcquirePointerLockInternal(); 2567 DidAcquirePointerLockInternal();
2574 } 2568 }
2575 2569
2576 void TestRunner::DidNotAcquirePointerLock() { 2570 void TestRunner::DidNotAcquirePointerLock() {
2577 DidNotAcquirePointerLockInternal(); 2571 DidNotAcquirePointerLockInternal();
2578 } 2572 }
2579 2573
(...skipping 633 matching lines...) Expand 10 before | Expand all | Expand 10 after
3213 } 3207 }
3214 3208
3215 void TestRunner::DidLosePointerLockInternal() { 3209 void TestRunner::DidLosePointerLockInternal() {
3216 bool was_locked = pointer_locked_; 3210 bool was_locked = pointer_locked_;
3217 pointer_locked_ = false; 3211 pointer_locked_ = false;
3218 if (was_locked) 3212 if (was_locked)
3219 web_view_->didLosePointerLock(); 3213 web_view_->didLosePointerLock();
3220 } 3214 }
3221 3215
3222 } // namespace test_runner 3216 } // namespace test_runner
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698