| Index: third_party/WebKit/Source/modules/storage/InspectorDOMStorageAgent.h
|
| diff --git a/third_party/WebKit/Source/modules/storage/InspectorDOMStorageAgent.h b/third_party/WebKit/Source/modules/storage/InspectorDOMStorageAgent.h
|
| index 6381c9eded7734e8063169cb3f532ed5c1ceb040..e25d352c5d4f1a9b88502265c0559e0d23a33f85 100644
|
| --- a/third_party/WebKit/Source/modules/storage/InspectorDOMStorageAgent.h
|
| +++ b/third_party/WebKit/Source/modules/storage/InspectorDOMStorageAgent.h
|
| @@ -68,12 +68,12 @@ private:
|
| // protocol::Dispatcher::DOMStorageCommandHandler overrides.
|
| void enable(ErrorString*) override;
|
| void disable(ErrorString*) override;
|
| - void getDOMStorageItems(ErrorString*, PassOwnPtr<protocol::DOMStorage::StorageId> in_storageId, OwnPtr<protocol::Array<protocol::Array<String>>>* out_entries) override;
|
| - void setDOMStorageItem(ErrorString*, PassOwnPtr<protocol::DOMStorage::StorageId> in_storageId, const String& in_key, const String& in_value) override;
|
| - void removeDOMStorageItem(ErrorString*, PassOwnPtr<protocol::DOMStorage::StorageId> in_storageId, const String& in_key) override;
|
| + void getDOMStorageItems(ErrorString*, std::unique_ptr<protocol::DOMStorage::StorageId> in_storageId, std::unique_ptr<protocol::Array<protocol::Array<String>>>* out_entries) override;
|
| + void setDOMStorageItem(ErrorString*, std::unique_ptr<protocol::DOMStorage::StorageId> in_storageId, const String& in_key, const String& in_value) override;
|
| + void removeDOMStorageItem(ErrorString*, std::unique_ptr<protocol::DOMStorage::StorageId> in_storageId, const String& in_key) override;
|
|
|
| - StorageArea* findStorageArea(ErrorString*, PassOwnPtr<protocol::DOMStorage::StorageId>, LocalFrame*&);
|
| - PassOwnPtr<protocol::DOMStorage::StorageId> storageId(SecurityOrigin*, bool isLocalStorage);
|
| + StorageArea* findStorageArea(ErrorString*, std::unique_ptr<protocol::DOMStorage::StorageId>, LocalFrame*&);
|
| + std::unique_ptr<protocol::DOMStorage::StorageId> storageId(SecurityOrigin*, bool isLocalStorage);
|
|
|
| Member<Page> m_page;
|
| bool m_isEnabled;
|
|
|