| Index: chrome/browser/ui/cocoa/tab_contents/tab_contents_controller.h
|
| diff --git a/chrome/browser/ui/cocoa/tab_contents/tab_contents_controller.h b/chrome/browser/ui/cocoa/tab_contents/tab_contents_controller.h
|
| index fa77dfb2fbb1a76d219c8e29803aad4b22d5df3a..ad0e0de4a1d3829b938c0ac2b3a92cb643cc90f1 100644
|
| --- a/chrome/browser/ui/cocoa/tab_contents/tab_contents_controller.h
|
| +++ b/chrome/browser/ui/cocoa/tab_contents/tab_contents_controller.h
|
| @@ -7,7 +7,7 @@
|
|
|
| #include <Cocoa/Cocoa.h>
|
|
|
| -#include "base/memory/scoped_ptr.h"
|
| +#include <memory>
|
|
|
| class FullscreenObserver;
|
|
|
| @@ -36,7 +36,7 @@ class WebContents;
|
| content::WebContents* contents_; // weak
|
| // When |fullscreenObserver_| is not-NULL, TabContentsController monitors for
|
| // and auto-embeds fullscreen widgets as a subview.
|
| - scoped_ptr<FullscreenObserver> fullscreenObserver_;
|
| + std::unique_ptr<FullscreenObserver> fullscreenObserver_;
|
| // Set to true while TabContentsController is embedding a fullscreen widget
|
| // view as a subview instead of the normal WebContentsView render view.
|
| // Note: This will be false in the case of non-Flash fullscreen.
|
|
|