| Index: chrome/browser/ui/views/status_bubble_views.h
|
| diff --git a/chrome/browser/ui/views/status_bubble_views.h b/chrome/browser/ui/views/status_bubble_views.h
|
| index 142f31459edf09e30f0f4bc37b9a37ccb4c48a23..a18136c4fe68da2035dac1da7ed1168aa6471a03 100644
|
| --- a/chrome/browser/ui/views/status_bubble_views.h
|
| +++ b/chrome/browser/ui/views/status_bubble_views.h
|
| @@ -5,9 +5,10 @@
|
| #ifndef CHROME_BROWSER_UI_VIEWS_STATUS_BUBBLE_VIEWS_H_
|
| #define CHROME_BROWSER_UI_VIEWS_STATUS_BUBBLE_VIEWS_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "base/compiler_specific.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "base/strings/string16.h"
|
| #include "chrome/browser/ui/status_bubble.h"
|
| @@ -123,13 +124,13 @@ class StatusBubbleViews : public StatusBubble {
|
|
|
| // We use a HWND for the popup so that it may float above any HWNDs in our
|
| // UI (the location bar, for example).
|
| - scoped_ptr<views::Widget> popup_;
|
| + std::unique_ptr<views::Widget> popup_;
|
|
|
| views::View* base_view_;
|
| StatusView* view_;
|
|
|
| // Manages the expansion of a status bubble to fit a long URL.
|
| - scoped_ptr<StatusViewExpander> expand_view_;
|
| + std::unique_ptr<StatusViewExpander> expand_view_;
|
|
|
| // If the download shelf is visible, do not obscure it.
|
| bool download_shelf_is_visible_;
|
|
|