| 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 e0d588971eead2fbe114422b0ddc99bbf75ccd36..6c3b453ccaf09c7a0b21d90b1a55179658d1d0bb 100644
|
| --- a/third_party/WebKit/Source/modules/storage/InspectorDOMStorageAgent.h
|
| +++ b/third_party/WebKit/Source/modules/storage/InspectorDOMStorageAgent.h
|
| @@ -61,17 +61,17 @@ private:
|
| explicit InspectorDOMStorageAgent(Page*);
|
|
|
| // InspectorBaseAgent overrides.
|
| - void disable(ErrorString*) override;
|
| void restore() override;
|
|
|
| // protocol::Dispatcher::DOMStorageCommandHandler overrides.
|
| void enable(ErrorString*) override;
|
| - void getDOMStorageItems(ErrorString*, const RefPtr<JSONObject>& storageId, RefPtr<protocol::TypeBuilder::Array<protocol::TypeBuilder::Array<String>>>& items) override;
|
| - void setDOMStorageItem(ErrorString*, const RefPtr<JSONObject>& storageId, const String& key, const String& value) override;
|
| - void removeDOMStorageItem(ErrorString*, const RefPtr<JSONObject>& storageId, const String& key) 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;
|
|
|
| - StorageArea* findStorageArea(ErrorString*, const RefPtr<JSONObject>&, LocalFrame*&);
|
| - PassRefPtr<protocol::TypeBuilder::DOMStorage::StorageId> storageId(SecurityOrigin*, bool isLocalStorage);
|
| + StorageArea* findStorageArea(ErrorString*, PassOwnPtr<protocol::DOMStorage::StorageId>, LocalFrame*&);
|
| + PassOwnPtr<protocol::DOMStorage::StorageId> storageId(SecurityOrigin*, bool isLocalStorage);
|
|
|
| RawPtrWillBeMember<Page> m_page;
|
| bool m_isEnabled;
|
|
|