Chromium Code Reviews| Index: ios/web/navigation/serializable_user_data_manager_impl.h |
| diff --git a/ios/web/navigation/serializable_user_data_manager_impl.h b/ios/web/navigation/serializable_user_data_manager_impl.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..c0017f9ef1bf034dde56e20295d9526e1e0bc00c |
| --- /dev/null |
| +++ b/ios/web/navigation/serializable_user_data_manager_impl.h |
| @@ -0,0 +1,53 @@ |
| +// Copyright 2017 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef IOS_WEB_NAVIGATION_SERIALIZABLE_USER_DATA_MANAGER_IMPL_H_ |
| +#define IOS_WEB_NAVIGATION_SERIALIZABLE_USER_DATA_MANAGER_IMPL_H_ |
| + |
| +#import "base/mac/scoped_nsobject.h" |
| +#import "ios/web/public/serializable_user_data_manager.h" |
| + |
| +namespace web { |
| + |
| +class SerializableUserDataImpl : public SerializableUserData { |
| + public: |
| + SerializableUserDataImpl(); |
| + ~SerializableUserDataImpl(); |
| + |
| + // Constructor taking the NSDictionary holding the serializable data. |
| + SerializableUserDataImpl(NSDictionary* data); |
|
Eugene But (OOO till 7-30)
2017/02/11 02:46:48
explicit
kkhorimoto
2017/02/11 03:19:48
Done.
|
| + |
| + // SerializableUserData: |
| + void Encode(NSCoder* coder) override; |
| + void Decode(NSCoder* coder) override; |
| + |
| + // Returns the serializable data. |
| + NSDictionary* data() { return data_; }; |
| + |
| + private: |
| + // The dictionary passed on initialization. After calling Decode(), this will |
| + // contain the data that is decoded from the NSCoder. |
| + base::scoped_nsobject<NSDictionary> data_; |
| +}; |
| + |
| +class SerializableUserDataManagerImpl : public SerializableUserDataManager { |
| + public: |
| + SerializableUserDataManagerImpl(); |
| + ~SerializableUserDataManagerImpl(); |
| + |
| + // SerializableUserDataManager: |
| + void AddSerializableData(id<NSCoding> data, NSString* key) override; |
| + id<NSCoding> GetValueForSerializationKey(NSString* key) override; |
| + std::unique_ptr<SerializableUserData> CreateSerializableUserData() |
| + const override; |
| + void AddSerializableUserData(SerializableUserData* data) override; |
| + |
| + private: |
| + // The dictionary that stores serializable user data. |
| + base::scoped_nsobject<NSMutableDictionary> data_; |
| +}; |
| + |
| +} // namespace web |
| + |
| +#endif // IOS_WEB_NAVIGATION_SERIALIZABLE_USER_DATA_MANAGER_IMPL_H_ |