Chromium Code Reviews| 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 16 matching lines...) Expand all Loading... | |
| 27 @property(nonatomic, assign) NSTimeInterval lastVisitedTimestamp; | 27 @property(nonatomic, assign) NSTimeInterval lastVisitedTimestamp; |
| 28 // TODO(kkhorimoto): |entries| currently contains CRWSessionEntries. Once | 28 // TODO(kkhorimoto): |entries| currently contains CRWSessionEntries. Once |
| 29 // NavigationItemImpls are encoded/decoded using CRWSerializedNavigationItems | 29 // NavigationItemImpls are encoded/decoded using CRWSerializedNavigationItems |
| 30 // (analogous to the approach taken with NavigationManagerImpl), this will | 30 // (analogous to the approach taken with NavigationManagerImpl), this will |
| 31 // become an array of CRWSerializedNavigationItems. | 31 // become an array of CRWSerializedNavigationItems. |
| 32 @property(nonatomic, copy) NSArray* entries; | 32 @property(nonatomic, copy) NSArray* entries; |
| 33 @property(nonatomic, retain) | 33 @property(nonatomic, retain) |
| 34 CRWSessionCertificatePolicyManager* sessionCertificatePolicyManager; | 34 CRWSessionCertificatePolicyManager* sessionCertificatePolicyManager; |
| 35 @property(nonatomic, retain) XCallbackParameters* xCallbackParameters; | 35 @property(nonatomic, retain) XCallbackParameters* xCallbackParameters; |
| 36 | 36 |
| 37 // Dictionary of arbitrary serialized data added using | |
|
Eugene But (OOO till 7-30)
2015/09/24 17:05:06
NIT: maybe "A dictionary"?
kkhorimoto
2015/09/24 21:24:29
Done.
| |
| 38 // SerializedUserDataManager. | |
| 39 @property(nonatomic, copy) NSDictionary* serializedUserData; | |
| 40 | |
| 37 @end | 41 @end |
| 38 | 42 |
| 39 #endif // IOS_WEB_NAVIGATION_CRW_SERIALIZED_NAVIGATION_MANAGER_H_ | 43 #endif // IOS_WEB_NAVIGATION_CRW_SERIALIZED_NAVIGATION_MANAGER_H_ |
| OLD | NEW |