| Index: ios/web/navigation/crw_session_controller+private_constructors.h
|
| diff --git a/ios/web/navigation/crw_session_controller+private_constructors.h b/ios/web/navigation/crw_session_controller+private_constructors.h
|
| index dd7a119fdbf323b69bdfdff487e9a77042d1a92f..4943c09edf941cfa4ff354cf8ea357fe75450939 100644
|
| --- a/ios/web/navigation/crw_session_controller+private_constructors.h
|
| +++ b/ios/web/navigation/crw_session_controller+private_constructors.h
|
| @@ -7,7 +7,8 @@
|
|
|
| #import "ios/web/navigation/crw_session_controller.h"
|
|
|
| -#include "base/memory/scoped_vector.h"
|
| +#include <memory>
|
| +#include <vector>
|
|
|
| namespace web {
|
| class BrowserState;
|
| @@ -29,7 +30,8 @@ class NavigationItem;
|
|
|
| // Initializes a session controller, supplying a list of NavigationItem objects
|
| // and the current index in the navigation history.
|
| -- (id)initWithNavigationItems:(ScopedVector<web::NavigationItem>)scoped_items
|
| +- (id)initWithNavigationItems:
|
| + (std::vector<std::unique_ptr<web::NavigationItem>>)items
|
| currentIndex:(NSUInteger)currentIndex
|
| browserState:(web::BrowserState*)browserState;
|
| @end
|
|
|