| Index: ui/views/widget/desktop_aura/desktop_cursor_loader_updater.h
|
| diff --git a/ui/views/widget/desktop_aura/desktop_cursor_loader_updater.h b/ui/views/widget/desktop_aura/desktop_cursor_loader_updater.h
|
| index ff116bc81a0269c7b4aca76135786c4891e70f20..7f228a1ca690304ef0c5ebc83d0021e0d2e006e6 100644
|
| --- a/ui/views/widget/desktop_aura/desktop_cursor_loader_updater.h
|
| +++ b/ui/views/widget/desktop_aura/desktop_cursor_loader_updater.h
|
| @@ -5,7 +5,8 @@
|
| #ifndef UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_CURSOR_LOADER_UPDATER_H_
|
| #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_CURSOR_LOADER_UPDATER_H_
|
|
|
| -#include "base/memory/scoped_ptr.h"
|
| +#include <memory>
|
| +
|
| #include "ui/views/views_export.h"
|
|
|
| namespace aura {
|
| @@ -30,7 +31,7 @@ class VIEWS_EXPORT DesktopCursorLoaderUpdater {
|
|
|
| // Creates a new DesktopCursorLoaderUpdater, or NULL if the platform doesn't
|
| // support one.
|
| - static scoped_ptr<DesktopCursorLoaderUpdater> Create();
|
| + static std::unique_ptr<DesktopCursorLoaderUpdater> Create();
|
|
|
| // Called when a CursorLoader is created.
|
| virtual void OnCreate(float device_scale_factor,
|
|
|