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

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

Issue 1055133003: Oilpan: have Storage objects reside on the heap by default. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: trivial cl footprint reduction Created 5 years, 8 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: Source/modules/storage/InspectorDOMStorageAgent.h
diff --git a/Source/modules/storage/InspectorDOMStorageAgent.h b/Source/modules/storage/InspectorDOMStorageAgent.h
index 8c72431a2a6ca9b9f6b6ad6d8e71d11e23e542f4..ea4865e127bf04c16fbba6f0de0180d2bc5601ca 100644
--- a/Source/modules/storage/InspectorDOMStorageAgent.h
+++ b/Source/modules/storage/InspectorDOMStorageAgent.h
@@ -71,7 +71,7 @@ private:
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;
- PassOwnPtrWillBeRawPtr<StorageArea> findStorageArea(ErrorString*, const RefPtr<JSONObject>&, LocalFrame*&);
+ StorageArea* findStorageArea(ErrorString*, const RefPtr<JSONObject>&, LocalFrame*&);
PassRefPtr<TypeBuilder::DOMStorage::StorageId> storageId(SecurityOrigin*, bool isLocalStorage);
RawPtrWillBeMember<Page> m_page;

Powered by Google App Engine
This is Rietveld 408576698