| Index: chrome/browser/extensions/api/tab_capture/offscreen_tab.h
|
| diff --git a/chrome/browser/extensions/api/tab_capture/offscreen_tab.h b/chrome/browser/extensions/api/tab_capture/offscreen_tab.h
|
| index afc252c707dadd3e42fe6544bc2cc065cac9a13f..20d88e7445fa07c30d382f19de84c8881a5f1f15 100644
|
| --- a/chrome/browser/extensions/api/tab_capture/offscreen_tab.h
|
| +++ b/chrome/browser/extensions/api/tab_capture/offscreen_tab.h
|
| @@ -186,10 +186,10 @@ class OffscreenTab : protected content::WebContentsDelegate,
|
|
|
| // A non-shared off-the-record profile based on the profile of the extension
|
| // background page.
|
| - const scoped_ptr<Profile> profile_;
|
| + const std::unique_ptr<Profile> profile_;
|
|
|
| // The WebContents containing the off-screen tab's page.
|
| - scoped_ptr<content::WebContents> offscreen_tab_web_contents_;
|
| + std::unique_ptr<content::WebContents> offscreen_tab_web_contents_;
|
|
|
| // The time at which Start() finished creating |offscreen_tab_web_contents_|.
|
| base::TimeTicks start_time_;
|
|
|