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

Unified Diff: third_party/WebKit/Source/modules/storage/InspectorDOMStorageAgent.h

Issue 2632553002: [DevTools] Clear local storage (Closed)
Patch Set: [DevTools] Clear local storage Created 3 years, 11 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 side-by-side diff with in-line comments
Download patch
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 5297be07848e046b7a9dff30c5501bfe20d95d89..bd87ac6c152eb181cceadb12b045201acae4a9ca 100644
--- a/third_party/WebKit/Source/modules/storage/InspectorDOMStorageAgent.h
+++ b/third_party/WebKit/Source/modules/storage/InspectorDOMStorageAgent.h
@@ -67,17 +67,18 @@ class MODULES_EXPORT InspectorDOMStorageAgent final
// protocol::Dispatcher::DOMStorageCommandHandler overrides.
Response enable() override;
Response disable() override;
+ Response clear(std::unique_ptr<protocol::DOMStorage::StorageId>) override;
+
Response getDOMStorageItems(
- std::unique_ptr<protocol::DOMStorage::StorageId> in_storageId,
- std::unique_ptr<protocol::Array<protocol::Array<String>>>* out_entries)
+ std::unique_ptr<protocol::DOMStorage::StorageId>,
+ std::unique_ptr<protocol::Array<protocol::Array<String>>>* entries)
override;
- Response setDOMStorageItem(
- std::unique_ptr<protocol::DOMStorage::StorageId> in_storageId,
- const String& in_key,
- const String& in_value) override;
+ Response setDOMStorageItem(std::unique_ptr<protocol::DOMStorage::StorageId>,
+ const String& key,
+ const String& value) override;
Response removeDOMStorageItem(
- std::unique_ptr<protocol::DOMStorage::StorageId> in_storageId,
- const String& in_key) override;
+ std::unique_ptr<protocol::DOMStorage::StorageId>,
+ const String& key) override;
Response findStorageArea(std::unique_ptr<protocol::DOMStorage::StorageId>,
LocalFrame*&,

Powered by Google App Engine
This is Rietveld 408576698