Index: ios/web/navigation/crw_session_entry.h |
diff --git a/ios/web/navigation/crw_session_entry.h b/ios/web/navigation/crw_session_entry.h |
index bb41c68ea7edb7b74bebb54ffedacf4ae2e9c19a..2a8ce2579c9c608c988d26474c3344f7a985300f 100644 |
--- a/ios/web/navigation/crw_session_entry.h |
+++ b/ios/web/navigation/crw_session_entry.h |
@@ -8,7 +8,8 @@ |
#import <Foundation/Foundation.h> |
#include <stdint.h> |
-#include "base/memory/scoped_ptr.h" |
+#include <memory> |
+ |
#include "base/strings/string16.h" |
#include "base/time/time.h" |
#include "ui/base/page_transition_types.h" |
@@ -71,7 +72,8 @@ extern NSString* const kSessionEntryUseDesktopUserAgentKey; |
@property(nonatomic, readonly) web::NavigationItemImpl* navigationItemImpl; |
// Initialize the session entry with the given NavigationItem. |
-- (instancetype)initWithNavigationItem:(scoped_ptr<web::NavigationItem>)item; |
+- (instancetype)initWithNavigationItem: |
+ (std::unique_ptr<web::NavigationItem>)item; |
@end |