| 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 712c1172bc1ff124dbf2c9e5acd59e53b2180243..e6393192a0668b49b68e782e1e2dc37c19eed521 100644
|
| --- a/chrome/browser/extensions/api/tab_capture/offscreen_tab.h
|
| +++ b/chrome/browser/extensions/api/tab_capture/offscreen_tab.h
|
| @@ -11,7 +11,6 @@
|
| #include <vector>
|
|
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_vector.h"
|
| #include "base/time/time.h"
|
| #include "base/timer/timer.h"
|
| #include "content/public/browser/web_contents_delegate.h"
|
| @@ -75,7 +74,7 @@ class OffscreenTabsOwner
|
| explicit OffscreenTabsOwner(content::WebContents* extension_web_contents);
|
|
|
| content::WebContents* const extension_web_contents_;
|
| - ScopedVector<OffscreenTab> tabs_;
|
| + std::vector<std::unique_ptr<OffscreenTab>> tabs_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(OffscreenTabsOwner);
|
| };
|
|
|