| Index: chrome/browser/ui/views/download/download_shelf_context_menu_view.h
|
| diff --git a/chrome/browser/ui/views/download/download_shelf_context_menu_view.h b/chrome/browser/ui/views/download/download_shelf_context_menu_view.h
|
| index d6230fa6a578de18be1f739b89c6d3744510ba66..f57335cd77d4fc265764fc01dfb11c7c3d8b2794 100644
|
| --- a/chrome/browser/ui/views/download/download_shelf_context_menu_view.h
|
| +++ b/chrome/browser/ui/views/download/download_shelf_context_menu_view.h
|
| @@ -5,9 +5,10 @@
|
| #ifndef CHROME_BROWSER_UI_VIEWS_DOWNLOAD_DOWNLOAD_SHELF_CONTEXT_MENU_VIEW_H_
|
| #define CHROME_BROWSER_UI_VIEWS_DOWNLOAD_DOWNLOAD_SHELF_CONTEXT_MENU_VIEW_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "base/compiler_specific.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/time/time.h"
|
| #include "chrome/browser/download/download_shelf_context_menu.h"
|
| #include "ui/base/ui_base_types.h"
|
| @@ -40,7 +41,7 @@ class DownloadShelfContextMenuView : public DownloadShelfContextMenu {
|
| ui::MenuSourceType source_type);
|
|
|
| private:
|
| - scoped_ptr<views::MenuRunner> menu_runner_;
|
| + std::unique_ptr<views::MenuRunner> menu_runner_;
|
|
|
| // Time the menu was closed.
|
| base::TimeTicks close_time_;
|
|
|