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

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

Issue 2738453004: Avoid using declarations in headers which introduce symbol conflicts. (Closed)
Patch Set: Created 3 years, 9 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 bd87ac6c152eb181cceadb12b045201acae4a9ca..28251a924e7444c8c3fd6a0ab7f1e13ce5e799f1 100644
--- a/third_party/WebKit/Source/modules/storage/InspectorDOMStorageAgent.h
+++ b/third_party/WebKit/Source/modules/storage/InspectorDOMStorageAgent.h
@@ -65,24 +65,27 @@ class MODULES_EXPORT InspectorDOMStorageAgent final
void restore() override;
// protocol::Dispatcher::DOMStorageCommandHandler overrides.
- Response enable() override;
- Response disable() override;
- Response clear(std::unique_ptr<protocol::DOMStorage::StorageId>) override;
+ protocol::Response enable() override;
+ protocol::Response disable() override;
+ protocol::Response clear(
+ std::unique_ptr<protocol::DOMStorage::StorageId>) override;
- Response getDOMStorageItems(
+ protocol::Response getDOMStorageItems(
std::unique_ptr<protocol::DOMStorage::StorageId>,
std::unique_ptr<protocol::Array<protocol::Array<String>>>* entries)
override;
- Response setDOMStorageItem(std::unique_ptr<protocol::DOMStorage::StorageId>,
- const String& key,
- const String& value) override;
- Response removeDOMStorageItem(
+ protocol::Response setDOMStorageItem(
+ std::unique_ptr<protocol::DOMStorage::StorageId>,
+ const String& key,
+ const String& value) override;
+ protocol::Response removeDOMStorageItem(
std::unique_ptr<protocol::DOMStorage::StorageId>,
const String& key) override;
- Response findStorageArea(std::unique_ptr<protocol::DOMStorage::StorageId>,
- LocalFrame*&,
- StorageArea*&);
+ protocol::Response findStorageArea(
+ std::unique_ptr<protocol::DOMStorage::StorageId>,
+ LocalFrame*&,
+ StorageArea*&);
std::unique_ptr<protocol::DOMStorage::StorageId> storageId(
SecurityOrigin*,
bool isLocalStorage);

Powered by Google App Engine
This is Rietveld 408576698