| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_orientation/data_fetcher_shared_memory.h" | 5 #include "content/browser/device_orientation/data_fetcher_shared_memory.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "content/browser/device_orientation/sensor_manager_android.h" | 8 #include "content/browser/device_orientation/sensor_manager_android.h" |
| 9 #include "content/common/device_light/device_light_hardware_buffer.h" |
| 9 #include "content/common/device_orientation/device_motion_hardware_buffer.h" | 10 #include "content/common/device_orientation/device_motion_hardware_buffer.h" |
| 10 #include "content/common/device_orientation/device_orientation_hardware_buffer.h
" | 11 #include "content/common/device_orientation/device_orientation_hardware_buffer.h
" |
| 11 | 12 |
| 12 namespace content { | 13 namespace content { |
| 13 | 14 |
| 14 DataFetcherSharedMemory::DataFetcherSharedMemory() { | 15 DataFetcherSharedMemory::DataFetcherSharedMemory() { |
| 15 } | 16 } |
| 16 | 17 |
| 17 DataFetcherSharedMemory::~DataFetcherSharedMemory() { | 18 DataFetcherSharedMemory::~DataFetcherSharedMemory() { |
| 18 } | 19 } |
| 19 | 20 |
| 20 bool DataFetcherSharedMemory::Start(ConsumerType consumer_type, void* buffer) { | 21 bool DataFetcherSharedMemory::Start(ConsumerType consumer_type, void* buffer) { |
| 21 DCHECK(buffer); | 22 DCHECK(buffer); |
| 22 | 23 |
| 23 switch (consumer_type) { | 24 switch (consumer_type) { |
| 24 case CONSUMER_TYPE_MOTION: | 25 case CONSUMER_TYPE_MOTION: |
| 25 return SensorManagerAndroid::GetInstance()-> | 26 return SensorManagerAndroid::GetInstance()-> |
| 26 StartFetchingDeviceMotionData( | 27 StartFetchingDeviceMotionData( |
| 27 static_cast<DeviceMotionHardwareBuffer*>(buffer)); | 28 static_cast<DeviceMotionHardwareBuffer*>(buffer)); |
| 28 case CONSUMER_TYPE_ORIENTATION: | 29 case CONSUMER_TYPE_ORIENTATION: |
| 29 return SensorManagerAndroid::GetInstance()-> | 30 return SensorManagerAndroid::GetInstance()-> |
| 30 StartFetchingDeviceOrientationData( | 31 StartFetchingDeviceOrientationData( |
| 31 static_cast<DeviceOrientationHardwareBuffer*>(buffer)); | 32 static_cast<DeviceOrientationHardwareBuffer*>(buffer)); |
| 33 case CONSUMER_TYPE_LIGHT: |
| 34 return SensorManagerAndroid::GetInstance()-> |
| 35 StartFetchingDeviceLightData( |
| 36 static_cast<DeviceLightHardwareBuffer*>(buffer)); |
| 32 default: | 37 default: |
| 33 NOTREACHED(); | 38 NOTREACHED(); |
| 34 } | 39 } |
| 35 return false; | 40 return false; |
| 36 } | 41 } |
| 37 | 42 |
| 38 bool DataFetcherSharedMemory::Stop(ConsumerType consumer_type) { | 43 bool DataFetcherSharedMemory::Stop(ConsumerType consumer_type) { |
| 39 switch (consumer_type) { | 44 switch (consumer_type) { |
| 40 case CONSUMER_TYPE_MOTION: | 45 case CONSUMER_TYPE_MOTION: |
| 41 SensorManagerAndroid::GetInstance()->StopFetchingDeviceMotionData(); | 46 SensorManagerAndroid::GetInstance()->StopFetchingDeviceMotionData(); |
| 42 return true; | 47 return true; |
| 43 case CONSUMER_TYPE_ORIENTATION: | 48 case CONSUMER_TYPE_ORIENTATION: |
| 44 SensorManagerAndroid::GetInstance()->StopFetchingDeviceOrientationData(); | 49 SensorManagerAndroid::GetInstance()->StopFetchingDeviceOrientationData(); |
| 45 return true; | 50 return true; |
| 51 case CONSUMER_TYPE_LIGHT: |
| 52 SensorManagerAndroid::GetInstance()-> |
| 53 StopFetchingDeviceLightData(); |
| 54 return true; |
| 46 default: | 55 default: |
| 47 NOTREACHED(); | 56 NOTREACHED(); |
| 48 } | 57 } |
| 49 return false; | 58 return false; |
| 50 } | 59 } |
| 51 | 60 |
| 52 } // namespace content | 61 } // namespace content |
| OLD | NEW |