| Index: device/hid/hid_service.h
|
| diff --git a/device/hid/hid_service.h b/device/hid/hid_service.h
|
| index f143fad26bc7993de6333e8ebfa4e85bf2d21854..bcff953411cd831ca66f00a594b0dc88458165c4 100644
|
| --- a/device/hid/hid_service.h
|
| +++ b/device/hid/hid_service.h
|
| @@ -6,13 +6,13 @@
|
| #define DEVICE_HID_HID_SERVICE_H_
|
|
|
| #include <map>
|
| +#include <memory>
|
| #include <string>
|
| #include <vector>
|
|
|
| #include "base/bind_helpers.h"
|
| #include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/observer_list.h"
|
| #include "base/single_thread_task_runner.h"
|
| #include "base/threading/thread_checker.h"
|
| @@ -47,7 +47,7 @@ class HidService {
|
|
|
| // This function should be called on a thread with a MessageLoopForUI and be
|
| // passed the task runner for a thread with a MessageLoopForIO.
|
| - static scoped_ptr<HidService> Create(
|
| + static std::unique_ptr<HidService> Create(
|
| scoped_refptr<base::SingleThreadTaskRunner> file_task_runner);
|
|
|
| virtual ~HidService();
|
|
|