| 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 "content/browser/device_sensors/data_fetcher_shared_memory.h" | 5 #include "device/sensors/data_fetcher_shared_memory.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "content/browser/device_sensors/sensor_manager_android.h" | |
| 9 #include "device/sensors/public/cpp/device_light_hardware_buffer.h" | 8 #include "device/sensors/public/cpp/device_light_hardware_buffer.h" |
| 10 #include "device/sensors/public/cpp/device_motion_hardware_buffer.h" | 9 #include "device/sensors/public/cpp/device_motion_hardware_buffer.h" |
| 11 #include "device/sensors/public/cpp/device_orientation_hardware_buffer.h" | 10 #include "device/sensors/public/cpp/device_orientation_hardware_buffer.h" |
| 11 #include "device/sensors/sensor_manager_android.h" |
| 12 | 12 |
| 13 namespace content { | 13 namespace device { |
| 14 | 14 |
| 15 DataFetcherSharedMemory::DataFetcherSharedMemory() { | 15 DataFetcherSharedMemory::DataFetcherSharedMemory() { |
| 16 } | 16 } |
| 17 | 17 |
| 18 DataFetcherSharedMemory::~DataFetcherSharedMemory() { | 18 DataFetcherSharedMemory::~DataFetcherSharedMemory() { |
| 19 } | 19 } |
| 20 | 20 |
| 21 bool DataFetcherSharedMemory::Start(ConsumerType consumer_type, void* buffer) { | 21 bool DataFetcherSharedMemory::Start(ConsumerType consumer_type, void* buffer) { |
| 22 DCHECK(buffer); | 22 DCHECK(buffer); |
| 23 | 23 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 NOTREACHED(); | 64 NOTREACHED(); |
| 65 } | 65 } |
| 66 return false; | 66 return false; |
| 67 } | 67 } |
| 68 | 68 |
| 69 void DataFetcherSharedMemory::Shutdown() { | 69 void DataFetcherSharedMemory::Shutdown() { |
| 70 DataFetcherSharedMemoryBase::Shutdown(); | 70 DataFetcherSharedMemoryBase::Shutdown(); |
| 71 SensorManagerAndroid::GetInstance()->Shutdown(); | 71 SensorManagerAndroid::GetInstance()->Shutdown(); |
| 72 } | 72 } |
| 73 | 73 |
| 74 } // namespace content | 74 } // namespace device |
| OLD | NEW |