| Index: ios/web/navigation/crw_session_controller.mm
|
| diff --git a/ios/web/navigation/crw_session_controller.mm b/ios/web/navigation/crw_session_controller.mm
|
| index e367d21bd3b02c21961cb1b7a9d54a66f6899003..fc09d62599a01c57d0fe16175f22bac7cdfbe56b 100644
|
| --- a/ios/web/navigation/crw_session_controller.mm
|
| +++ b/ios/web/navigation/crw_session_controller.mm
|
| @@ -75,7 +75,6 @@ @interface CRWSessionController () {
|
| // Expose setters for serialization properties. These are exposed in a category
|
| // in SessionStorageBuilder, and will be removed as ownership of
|
| // their backing ivars moves to NavigationManagerImpl.
|
| -@property(nonatomic, readwrite, getter=isOpenedByDOM) BOOL openedByDOM;
|
| @property(nonatomic, readwrite, assign) NSInteger previousNavigationIndex;
|
|
|
| // Removes all items after currentNavigationIndex_.
|
| @@ -99,14 +98,11 @@ @implementation CRWSessionController
|
| @synthesize currentNavigationIndex = _currentNavigationIndex;
|
| @synthesize previousNavigationIndex = _previousNavigationIndex;
|
| @synthesize pendingItemIndex = _pendingItemIndex;
|
| -@synthesize openedByDOM = _openedByDOM;
|
| @synthesize sessionCertificatePolicyManager = _sessionCertificatePolicyManager;
|
|
|
| -- (instancetype)initWithBrowserState:(web::BrowserState*)browserState
|
| - openedByDOM:(BOOL)openedByDOM {
|
| +- (instancetype)initWithBrowserState:(web::BrowserState*)browserState {
|
| self = [super init];
|
| if (self) {
|
| - _openedByDOM = openedByDOM;
|
| _browserState = browserState;
|
| _currentNavigationIndex = -1;
|
| _previousNavigationIndex = -1;
|
|
|