| OLD | NEW |
| 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 "device_orientation_event_pump.h" | 5 #include "device_orientation_event_pump.h" |
| 6 | 6 |
| 7 #include <string.h> | 7 #include <string.h> |
| 8 | 8 |
| 9 #include "base/location.h" | 9 #include "base/location.h" |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/run_loop.h" | 12 #include "base/run_loop.h" |
| 13 #include "base/single_thread_task_runner.h" | 13 #include "base/single_thread_task_runner.h" |
| 14 #include "base/threading/thread_task_runner_handle.h" | 14 #include "base/threading/thread_task_runner_handle.h" |
| 15 #include "content/common/device_sensors/device_orientation_hardware_buffer.h" | |
| 16 #include "content/public/test/test_utils.h" | 15 #include "content/public/test/test_utils.h" |
| 16 #include "device/sensors/public/cpp/device_orientation_hardware_buffer.h" |
| 17 #include "testing/gtest/include/gtest/gtest.h" | 17 #include "testing/gtest/include/gtest/gtest.h" |
| 18 #include "third_party/WebKit/public/platform/modules/device_orientation/WebDevic
eOrientationListener.h" | 18 #include "third_party/WebKit/public/platform/modules/device_orientation/WebDevic
eOrientationListener.h" |
| 19 | 19 |
| 20 namespace content { | 20 namespace content { |
| 21 | 21 |
| 22 class MockDeviceOrientationListener | 22 class MockDeviceOrientationListener |
| 23 : public blink::WebDeviceOrientationListener { | 23 : public blink::WebDeviceOrientationListener { |
| 24 public: | 24 public: |
| 25 MockDeviceOrientationListener() : did_change_device_orientation_(false) { | 25 MockDeviceOrientationListener() : did_change_device_orientation_(false) { |
| 26 memset(&data_, 0, sizeof(data_)); | 26 memset(&data_, 0, sizeof(data_)); |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 FROM_HERE, base::Bind(&DeviceOrientationEventPumpForTesting::FireEvent, | 206 FROM_HERE, base::Bind(&DeviceOrientationEventPumpForTesting::FireEvent, |
| 207 base::Unretained(orientation_pump()))); | 207 base::Unretained(orientation_pump()))); |
| 208 base::RunLoop().Run(); | 208 base::RunLoop().Run(); |
| 209 | 209 |
| 210 EXPECT_TRUE(listener()->did_change_device_orientation()); | 210 EXPECT_TRUE(listener()->did_change_device_orientation()); |
| 211 EXPECT_EQ(1 + DeviceOrientationEventPump::kOrientationThreshold, | 211 EXPECT_EQ(1 + DeviceOrientationEventPump::kOrientationThreshold, |
| 212 static_cast<double>(received_data.alpha)); | 212 static_cast<double>(received_data.alpha)); |
| 213 } | 213 } |
| 214 | 214 |
| 215 } // namespace content | 215 } // namespace content |
| OLD | NEW |