Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(159)

Side by Side Diff: ios/web/navigation/crw_serialized_navigation_manager.h

Issue 1361173005: Created SerializedUserDataManager. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@serialized_navigation_manager
Patch Set: Eugene's comments Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698