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

Side by Side Diff: content/renderer/device_sensors/device_orientation_event_pump_unittest.cc

Issue 1967823004: Fix include path for moved thread_task_runner_handle.h header in content/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: Created 4 years, 7 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 "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/single_thread_task_runner.h" 12 #include "base/single_thread_task_runner.h"
13 #include "base/thread_task_runner_handle.h" 13 #include "base/threading/thread_task_runner_handle.h"
14 #include "content/common/device_sensors/device_orientation_hardware_buffer.h" 14 #include "content/common/device_sensors/device_orientation_hardware_buffer.h"
15 #include "content/public/test/test_utils.h" 15 #include "content/public/test/test_utils.h"
16 #include "testing/gtest/include/gtest/gtest.h" 16 #include "testing/gtest/include/gtest/gtest.h"
17 #include "third_party/WebKit/public/platform/modules/device_orientation/WebDevic eOrientationListener.h" 17 #include "third_party/WebKit/public/platform/modules/device_orientation/WebDevic eOrientationListener.h"
18 18
19 namespace content { 19 namespace content {
20 20
21 class MockDeviceOrientationListener 21 class MockDeviceOrientationListener
22 : public blink::WebDeviceOrientationListener { 22 : public blink::WebDeviceOrientationListener {
23 public: 23 public:
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 FROM_HERE, base::Bind(&DeviceOrientationEventPumpForTesting::FireEvent, 211 FROM_HERE, base::Bind(&DeviceOrientationEventPumpForTesting::FireEvent,
212 base::Unretained(orientation_pump()))); 212 base::Unretained(orientation_pump())));
213 base::MessageLoop::current()->Run(); 213 base::MessageLoop::current()->Run();
214 214
215 EXPECT_TRUE(listener()->did_change_device_orientation()); 215 EXPECT_TRUE(listener()->did_change_device_orientation());
216 EXPECT_EQ(1 + DeviceOrientationEventPump::kOrientationThreshold, 216 EXPECT_EQ(1 + DeviceOrientationEventPump::kOrientationThreshold,
217 static_cast<double>(received_data.alpha)); 217 static_cast<double>(received_data.alpha));
218 } 218 }
219 219
220 } // namespace content 220 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698