| Index: ios/web/public/crw_session_storage.mm
|
| diff --git a/ios/web/public/crw_session_storage.mm b/ios/web/public/crw_session_storage.mm
|
| index 368fbd62b6e02c905bb54ccbedf19890a06de2a8..a2c3d25602405e28da6bf5474dae3e0472004a99 100644
|
| --- a/ios/web/public/crw_session_storage.mm
|
| +++ b/ios/web/public/crw_session_storage.mm
|
| @@ -16,7 +16,6 @@ namespace {
|
| NSString* const kCertificatePolicyManagerKey = @"certificatePolicyManager";
|
| NSString* const kCurrentNavigationIndexKey = @"currentNavigationIndex";
|
| NSString* const kItemStoragesKey = @"entries";
|
| -NSString* const kLastVisitedTimestampKey = @"lastVisitedTimestamp";
|
| NSString* const kOpenedByDOMKey = @"openedByDOM";
|
| NSString* const kPreviousNavigationIndexKey = @"previousNavigationIndex";
|
| }
|
| @@ -33,7 +32,6 @@ NSString* const kPreviousNavigationIndexKey = @"previousNavigationIndex";
|
| @synthesize openedByDOM = _openedByDOM;
|
| @synthesize currentNavigationIndex = _currentNavigationIndex;
|
| @synthesize previousNavigationIndex = _previousNavigationIndex;
|
| -@synthesize lastVisitedTimestamp = _lastVisitedTimestamp;
|
| @synthesize itemStorages = _itemStorages;
|
| @synthesize sessionCertificatePolicyManager = _sessionCertificatePolicyManager;
|
|
|
| @@ -58,8 +56,6 @@ NSString* const kPreviousNavigationIndexKey = @"previousNavigationIndex";
|
| [decoder decodeIntForKey:kCurrentNavigationIndexKey];
|
| _previousNavigationIndex =
|
| [decoder decodeIntForKey:kPreviousNavigationIndexKey];
|
| - _lastVisitedTimestamp =
|
| - [decoder decodeDoubleForKey:kLastVisitedTimestampKey];
|
| _itemStorages = [[NSMutableArray alloc]
|
| initWithArray:[decoder decodeObjectForKey:kItemStoragesKey]];
|
| // Prior to M34, 0 was used as "no index" instead of -1; adjust for that.
|
| @@ -83,8 +79,6 @@ NSString* const kPreviousNavigationIndexKey = @"previousNavigationIndex";
|
| forKey:kCurrentNavigationIndexKey];
|
| [coder encodeInt:self.previousNavigationIndex
|
| forKey:kPreviousNavigationIndexKey];
|
| - [coder encodeDouble:self.lastVisitedTimestamp
|
| - forKey:kLastVisitedTimestampKey];
|
| [coder encodeObject:self.itemStorages forKey:kItemStoragesKey];
|
| [coder encodeObject:self.sessionCertificatePolicyManager
|
| forKey:kCertificatePolicyManagerKey];
|
|
|