| Index: content/browser/web_contents/web_contents_view_mus.h
|
| diff --git a/content/browser/web_contents/web_contents_view_mus.h b/content/browser/web_contents/web_contents_view_mus.h
|
| index 05d51d1a49e38e8fdee4a3726fddfa6483954d47..fab1165903e62a16c81f20cdc2d3c25809006f03 100644
|
| --- a/content/browser/web_contents/web_contents_view_mus.h
|
| +++ b/content/browser/web_contents/web_contents_view_mus.h
|
| @@ -5,10 +5,10 @@
|
| #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_MUS_H_
|
| #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_VIEW_MUS_H_
|
|
|
| +#include <memory>
|
| #include <vector>
|
|
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "build/build_config.h"
|
| #include "components/mus/public/cpp/scoped_window_ptr.h"
|
| #include "components/mus/public/cpp/window.h"
|
| @@ -107,9 +107,9 @@ class WebContentsViewMus : public WebContentsView,
|
| // The WebContentsImpl whose contents we display.
|
| WebContentsImpl* web_contents_;
|
|
|
| - scoped_ptr<WebContentsViewDelegate> delegate_;
|
| - scoped_ptr<aura::Window> aura_window_;
|
| - scoped_ptr<mus::ScopedWindowPtr> mus_window_;
|
| + std::unique_ptr<WebContentsViewDelegate> delegate_;
|
| + std::unique_ptr<aura::Window> aura_window_;
|
| + std::unique_ptr<mus::ScopedWindowPtr> mus_window_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(WebContentsViewMus);
|
| };
|
|
|