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

Unified Diff: Source/modules/storage/DOMWindowStorage.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/DOMWindowStorage.h
diff --git a/Source/modules/storage/DOMWindowStorage.h b/Source/modules/storage/DOMWindowStorage.h
index 467552f57ccdf5a9be5522bd1da9a6a72b37015e..440037ef2a1a1c793dcf9bf71165ac66cbeee8fc 100644
--- a/Source/modules/storage/DOMWindowStorage.h
+++ b/Source/modules/storage/DOMWindowStorage.h
@@ -34,9 +34,9 @@ private:
explicit DOMWindowStorage(LocalDOMWindow&);
static const char* supplementName();
- LocalDOMWindow& m_window;
- mutable RefPtrWillBeMember<Storage> m_sessionStorage;
- mutable RefPtrWillBeMember<Storage> m_localStorage;
+ RawPtrWillBeMember<LocalDOMWindow> m_window;
haraken 2015/04/26 08:55:36 Not related to your CL, we should probably provide
sof 2015/04/26 14:16:35 I was thinking about the same thing this morning :
+ mutable PersistentWillBeMember<Storage> m_sessionStorage;
+ mutable PersistentWillBeMember<Storage> m_localStorage;
};

Powered by Google App Engine
This is Rietveld 408576698