| 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_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 23 matching lines...) Expand all Loading... |
| 34 bool did_change_device_light_; | 34 bool did_change_device_light_; |
| 35 DeviceLightData data_; | 35 DeviceLightData data_; |
| 36 | 36 |
| 37 DISALLOW_COPY_AND_ASSIGN(MockDeviceLightListener); | 37 DISALLOW_COPY_AND_ASSIGN(MockDeviceLightListener); |
| 38 }; | 38 }; |
| 39 | 39 |
| 40 class DeviceLightEventPumpForTesting : public DeviceLightEventPump { | 40 class DeviceLightEventPumpForTesting : public DeviceLightEventPump { |
| 41 public: | 41 public: |
| 42 DeviceLightEventPumpForTesting() | 42 DeviceLightEventPumpForTesting() |
| 43 : DeviceLightEventPump(0) {} | 43 : DeviceLightEventPump(0) {} |
| 44 virtual ~DeviceLightEventPumpForTesting() {} | 44 ~DeviceLightEventPumpForTesting() override {} |
| 45 | 45 |
| 46 void OnDidStart(base::SharedMemoryHandle renderer_handle) { | 46 void OnDidStart(base::SharedMemoryHandle renderer_handle) { |
| 47 DeviceLightEventPump::OnDidStart(renderer_handle); | 47 DeviceLightEventPump::OnDidStart(renderer_handle); |
| 48 } | 48 } |
| 49 virtual void SendStartMessage() override { } | 49 void SendStartMessage() override {} |
| 50 virtual void SendStopMessage() override { } | 50 void SendStopMessage() override {} |
| 51 virtual void FireEvent() override { | 51 void FireEvent() override { |
| 52 DeviceLightEventPump::FireEvent(); | 52 DeviceLightEventPump::FireEvent(); |
| 53 Stop(); | 53 Stop(); |
| 54 base::MessageLoop::current()->QuitWhenIdle(); | 54 base::MessageLoop::current()->QuitWhenIdle(); |
| 55 } | 55 } |
| 56 | 56 |
| 57 private: | 57 private: |
| 58 DISALLOW_COPY_AND_ASSIGN(DeviceLightEventPumpForTesting); | 58 DISALLOW_COPY_AND_ASSIGN(DeviceLightEventPumpForTesting); |
| 59 }; | 59 }; |
| 60 | 60 |
| 61 class DeviceLightEventPumpTest : public testing::Test { | 61 class DeviceLightEventPumpTest : public testing::Test { |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 |
| OLD | NEW |