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

Unified Diff: Source/modules/storage/StorageEvent.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/StorageEvent.h
diff --git a/Source/modules/storage/StorageEvent.h b/Source/modules/storage/StorageEvent.h
index e68678ecf7c06c292b26bfa98e9924a702f2bb08..d57670c44e48f95dc07cdfcdbfc2f37371a3cb62 100644
--- a/Source/modules/storage/StorageEvent.h
+++ b/Source/modules/storage/StorageEvent.h
@@ -67,7 +67,7 @@ private:
String m_oldValue;
String m_newValue;
String m_url;
- RefPtrWillBeMember<Storage> m_storageArea;
+ PersistentWillBeMember<Storage> m_storageArea;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698