| Index: ui/views/widget/desktop_aura/desktop_drop_target_win.h
|
| diff --git a/ui/views/widget/desktop_aura/desktop_drop_target_win.h b/ui/views/widget/desktop_aura/desktop_drop_target_win.h
|
| index 24059b6f64c5bc162aabcb9998488cf503ea6fdf..b7fcf6c8a78570232e33c80933a3ce4560126418 100644
|
| --- a/ui/views/widget/desktop_aura/desktop_drop_target_win.h
|
| +++ b/ui/views/widget/desktop_aura/desktop_drop_target_win.h
|
| @@ -5,8 +5,9 @@
|
| #ifndef UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTIOP_DROP_TARGET_WIN_H_
|
| #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTIOP_DROP_TARGET_WIN_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "ui/aura/window_observer.h"
|
| #include "ui/base/dragdrop/drop_target_win.h"
|
|
|
| @@ -57,8 +58,8 @@ class DesktopDropTargetWin : public ui::DropTargetWin,
|
| DWORD key_state,
|
| POINT cursor_position,
|
| DWORD effect,
|
| - scoped_ptr<ui::OSExchangeData>* data,
|
| - scoped_ptr<ui::DropTargetEvent>* event,
|
| + std::unique_ptr<ui::OSExchangeData>* data,
|
| + std::unique_ptr<ui::DropTargetEvent>* event,
|
| aura::client::DragDropDelegate** delegate);
|
|
|
| void NotifyDragLeave();
|
|
|