| Index: chrome/browser/ui/views/omnibox/omnibox_view_views.h
|
| diff --git a/chrome/browser/ui/views/omnibox/omnibox_view_views.h b/chrome/browser/ui/views/omnibox/omnibox_view_views.h
|
| index f5a5dcb810068170960cd39d43198c43d125bbdd..79d4cd5de3cfdbdfc5f30ea36465684bf2a81558 100644
|
| --- a/chrome/browser/ui/views/omnibox/omnibox_view_views.h
|
| +++ b/chrome/browser/ui/views/omnibox/omnibox_view_views.h
|
| @@ -7,12 +7,12 @@
|
|
|
| #include <stddef.h>
|
|
|
| +#include <memory>
|
| #include <set>
|
| #include <string>
|
|
|
| #include "base/gtest_prod_util.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "build/build_config.h"
|
| #include "components/omnibox/browser/omnibox_view.h"
|
| @@ -211,7 +211,7 @@ class OmniboxViewViews
|
| // different presentation (smaller font size). This is used for popups.
|
| bool popup_window_mode_;
|
|
|
| - scoped_ptr<OmniboxPopupView> popup_view_;
|
| + std::unique_ptr<OmniboxPopupView> popup_view_;
|
|
|
| security_state::SecurityStateModel::SecurityLevel security_level_;
|
|
|
|
|