Index: content/browser/device_sensors/device_inertial_sensor_service.h |
diff --git a/content/browser/device_sensors/device_inertial_sensor_service.h b/content/browser/device_sensors/device_inertial_sensor_service.h |
index f25abc6de085ec2b130e30e2e67c589af7175858..bd3cf0c1392b4dea8d72cccd89a749ca336d1ecb 100644 |
--- a/content/browser/device_sensors/device_inertial_sensor_service.h |
+++ b/content/browser/device_sensors/device_inertial_sensor_service.h |
@@ -5,9 +5,10 @@ |
#ifndef CONTENT_BROWSER_DEVICE_SENSORS_DEVICE_INERTIAL_SENSOR_SERVICE_H_ |
#define CONTENT_BROWSER_DEVICE_SENSORS_DEVICE_INERTIAL_SENSOR_SERVICE_H_ |
+#include <memory> |
+ |
#include "base/callback_forward.h" |
#include "base/macros.h" |
-#include "base/memory/scoped_ptr.h" |
#include "base/memory/shared_memory.h" |
#include "base/memory/singleton.h" |
#include "base/threading/thread_checker.h" |
@@ -61,7 +62,7 @@ class CONTENT_EXPORT DeviceInertialSensorService { |
int num_orientation_readers_; |
int num_orientation_absolute_readers_; |
bool is_shutdown_; |
- scoped_ptr<DataFetcherSharedMemory> data_fetcher_; |
+ std::unique_ptr<DataFetcherSharedMemory> data_fetcher_; |
base::ThreadChecker thread_checker_; |
DISALLOW_COPY_AND_ASSIGN(DeviceInertialSensorService); |