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

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

Issue 686523002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 1 month 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_light_event_pump.h" 5 #include "device_light_event_pump.h"
6 6
7 #include "base/message_loop/message_loop.h" 7 #include "base/message_loop/message_loop.h"
8 #include "content/common/device_sensors/device_light_hardware_buffer.h" 8 #include "content/common/device_sensors/device_light_hardware_buffer.h"
9 #include "content/public/test/test_utils.h" 9 #include "content/public/test/test_utils.h"
10 #include "testing/gtest/include/gtest/gtest.h" 10 #include "testing/gtest/include/gtest/gtest.h"
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 }; 59 };
60 60
61 class DeviceLightEventPumpTest : public testing::Test { 61 class DeviceLightEventPumpTest : public testing::Test {
62 public: 62 public:
63 DeviceLightEventPumpTest() { 63 DeviceLightEventPumpTest() {
64 EXPECT_TRUE(shared_memory_.CreateAndMapAnonymous( 64 EXPECT_TRUE(shared_memory_.CreateAndMapAnonymous(
65 sizeof(DeviceLightHardwareBuffer))); 65 sizeof(DeviceLightHardwareBuffer)));
66 } 66 }
67 67
68 protected: 68 protected:
69 virtual void SetUp() override { 69 void SetUp() override {
70 const DeviceLightHardwareBuffer* null_buffer = NULL; 70 const DeviceLightHardwareBuffer* null_buffer = NULL;
71 listener_.reset(new MockDeviceLightListener); 71 listener_.reset(new MockDeviceLightListener);
72 light_pump_.reset(new DeviceLightEventPumpForTesting); 72 light_pump_.reset(new DeviceLightEventPumpForTesting);
73 buffer_ = static_cast<DeviceLightHardwareBuffer*>(shared_memory_.memory()); 73 buffer_ = static_cast<DeviceLightHardwareBuffer*>(shared_memory_.memory());
74 ASSERT_NE(null_buffer, buffer_); 74 ASSERT_NE(null_buffer, buffer_);
75 ASSERT_TRUE(shared_memory_.ShareToProcess(base::GetCurrentProcessHandle(), 75 ASSERT_TRUE(shared_memory_.ShareToProcess(base::GetCurrentProcessHandle(),
76 &handle_)); 76 &handle_));
77 } 77 }
78 78
79 void InitBuffer() { 79 void InitBuffer() {
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 base::Bind(&DeviceLightEventPumpForTesting::FireEvent, 151 base::Bind(&DeviceLightEventPumpForTesting::FireEvent,
152 base::Unretained(light_pump()))); 152 base::Unretained(light_pump())));
153 base::MessageLoop::current()->Run(); 153 base::MessageLoop::current()->Run();
154 154
155 // No change in device light as present value is same as previous value. 155 // No change in device light as present value is same as previous value.
156 EXPECT_FALSE(listener()->did_change_device_light()); 156 EXPECT_FALSE(listener()->did_change_device_light());
157 EXPECT_EQ(last_seen_data, static_cast<double>(received_data.value)); 157 EXPECT_EQ(last_seen_data, static_cast<double>(received_data.value));
158 } 158 }
159 159
160 } // namespace content 160 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698