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

Unified Diff: Source/modules/storage/StorageArea.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/StorageArea.h
diff --git a/Source/modules/storage/StorageArea.h b/Source/modules/storage/StorageArea.h
index ddfc488b316fee8e6582fb4c1d2c8cd69de7549a..64157534509d95333360bece5597dffd78251be5 100644
--- a/Source/modules/storage/StorageArea.h
+++ b/Source/modules/storage/StorageArea.h
@@ -48,10 +48,10 @@ enum StorageType {
SessionStorage
};
-class MODULES_EXPORT StorageArea final : public NoBaseWillBeGarbageCollectedFinalized<StorageArea>, public LocalFrameLifecycleObserver {
+class MODULES_EXPORT StorageArea final : public GarbageCollectedFinalized<StorageArea>, public LocalFrameLifecycleObserver {
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(StorageArea);
public:
- static PassOwnPtrWillBeRawPtr<StorageArea> create(PassOwnPtr<WebStorageArea>, StorageType);
+ static StorageArea* create(PassOwnPtr<WebStorageArea>, StorageType);
virtual ~StorageArea();

Powered by Google App Engine
This is Rietveld 408576698