| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef IOS_WEB_NAVIGATION_CRW_SERIALIZED_NAVIGATION_MANAGER_H_ | 5 #ifndef IOS_WEB_NAVIGATION_CRW_SERIALIZED_NAVIGATION_MANAGER_H_ |
| 6 #define IOS_WEB_NAVIGATION_CRW_SERIALIZED_NAVIGATION_MANAGER_H_ | 6 #define IOS_WEB_NAVIGATION_CRW_SERIALIZED_NAVIGATION_MANAGER_H_ |
| 7 | 7 |
| 8 #import <Foundation/Foundation.h> | 8 #import <Foundation/Foundation.h> |
| 9 | 9 |
| 10 @class CRWSessionCertificatePolicyManager; | 10 @class CRWSessionCertificatePolicyManager; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 @property(nonatomic, assign) NSTimeInterval lastVisitedTimestamp; | 29 @property(nonatomic, assign) NSTimeInterval lastVisitedTimestamp; |
| 30 // TODO(kkhorimoto): |entries| currently contains CRWSessionEntries. Once | 30 // TODO(kkhorimoto): |entries| currently contains CRWSessionEntries. Once |
| 31 // NavigationItemImpls are encoded/decoded using CRWSerializedNavigationItems | 31 // NavigationItemImpls are encoded/decoded using CRWSerializedNavigationItems |
| 32 // (analogous to the approach taken with NavigationManagerImpl), this will | 32 // (analogous to the approach taken with NavigationManagerImpl), this will |
| 33 // become an array of CRWSerializedNavigationItems. | 33 // become an array of CRWSerializedNavigationItems. |
| 34 @property(nonatomic, copy) NSArray* entries; | 34 @property(nonatomic, copy) NSArray* entries; |
| 35 @property(nonatomic, retain) | 35 @property(nonatomic, retain) |
| 36 CRWSessionCertificatePolicyManager* sessionCertificatePolicyManager; | 36 CRWSessionCertificatePolicyManager* sessionCertificatePolicyManager; |
| 37 @property(nonatomic, retain) XCallbackParameters* XCallbackParameters; | 37 @property(nonatomic, retain) XCallbackParameters* XCallbackParameters; |
| 38 | 38 |
| 39 // A dictionary of arbitrary serialized data added using |
| 40 // SerializedUserDataManager. |
| 41 @property(nonatomic, copy) NSDictionary* serializedUserData; |
| 42 |
| 39 @end | 43 @end |
| 40 | 44 |
| 41 #endif // IOS_WEB_NAVIGATION_CRW_SERIALIZED_NAVIGATION_MANAGER_H_ | 45 #endif // IOS_WEB_NAVIGATION_CRW_SERIALIZED_NAVIGATION_MANAGER_H_ |
| OLD | NEW |