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

Unified Diff: Source/modules/storage/StorageNamespace.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/StorageNamespace.h
diff --git a/Source/modules/storage/StorageNamespace.h b/Source/modules/storage/StorageNamespace.h
index b6572b4ccc4c8a250f8eaa0aecfbebfa62f371f5..66c11221d6f039a126e80236bbe81583c8e5385a 100644
--- a/Source/modules/storage/StorageNamespace.h
+++ b/Source/modules/storage/StorageNamespace.h
@@ -45,9 +45,9 @@ public:
explicit StorageNamespace(PassOwnPtr<blink::WebStorageNamespace>);
~StorageNamespace();
- static PassOwnPtrWillBeRawPtr<StorageArea> localStorageArea(SecurityOrigin*);
+ static StorageArea* localStorageArea(SecurityOrigin*);
- PassOwnPtrWillBeRawPtr<StorageArea> storageArea(SecurityOrigin*);
+ StorageArea* storageArea(SecurityOrigin*);
bool isSameNamespace(const blink::WebStorageNamespace& sessionNamespace) const;
private:

Powered by Google App Engine
This is Rietveld 408576698