| Index: chrome/browser/sessions/session_service.h
|
| diff --git a/chrome/browser/sessions/session_service.h b/chrome/browser/sessions/session_service.h
|
| index acd9af0af9299270f6ee34c731243444a1b33e79..15ec48cfd1b9e09b39fc07ffa7221e2bd08191d2 100644
|
| --- a/chrome/browser/sessions/session_service.h
|
| +++ b/chrome/browser/sessions/session_service.h
|
| @@ -11,7 +11,6 @@
|
| #include "base/callback.h"
|
| #include "base/gtest_prod_util.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_vector.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "base/task/cancelable_task_tracker.h"
|
| #include "base/time/time.h"
|
| @@ -260,8 +259,9 @@ class SessionService : public sessions::BaseSessionServiceDelegate,
|
| void OnBrowserSetLastActive(Browser* browser) override;
|
|
|
| // Converts |commands| to SessionWindows and notifies the callback.
|
| - void OnGotSessionCommands(const sessions::GetLastSessionCallback& callback,
|
| - ScopedVector<sessions::SessionCommand> commands);
|
| + void OnGotSessionCommands(
|
| + const sessions::GetLastSessionCallback& callback,
|
| + std::vector<std::unique_ptr<sessions::SessionCommand>> commands);
|
|
|
| // Adds commands to commands that will recreate the state of the specified
|
| // tab. This adds at most kMaxNavigationCountToPersist navigations (in each
|
|
|