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

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: Created 5 years, 3 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 16 matching lines...) Expand all
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698