| Index: ui/gl/gpu_switching_manager.h
|
| diff --git a/ui/gl/gpu_switching_manager.h b/ui/gl/gpu_switching_manager.h
|
| index 92e865af7e3658f8cd2975132700e69f8b84301d..913962b22c8992c9734e95e3ded5f33479d59865 100644
|
| --- a/ui/gl/gpu_switching_manager.h
|
| +++ b/ui/gl/gpu_switching_manager.h
|
| @@ -7,10 +7,10 @@
|
|
|
| #include <stdint.h>
|
|
|
| +#include <memory>
|
| #include <vector>
|
|
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/memory/singleton.h"
|
| #include "base/observer_list.h"
|
| #include "build/build_config.h"
|
| @@ -74,7 +74,7 @@ class GL_EXPORT GpuSwitchingManager {
|
| bool supports_dual_gpus_set_;
|
|
|
| struct PlatformSpecific;
|
| - scoped_ptr<PlatformSpecific> platform_specific_;
|
| + std::unique_ptr<PlatformSpecific> platform_specific_;
|
|
|
| base::ObserverList<GpuSwitchingObserver> observer_list_;
|
|
|
|
|