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

Unified Diff: Source/modules/quota/NavigatorStorageQuota.cpp

Issue 1101263003: Oilpan: have Navigator and its supplements be on the heap by default. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased 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/quota/NavigatorStorageQuota.cpp
diff --git a/Source/modules/quota/NavigatorStorageQuota.cpp b/Source/modules/quota/NavigatorStorageQuota.cpp
index 230a92f347fa094416eb2597620b59152d3457b1..74263bf03605ac1c73f4c95cea832aa684db6f78 100644
--- a/Source/modules/quota/NavigatorStorageQuota.cpp
+++ b/Source/modules/quota/NavigatorStorageQuota.cpp
@@ -42,7 +42,9 @@ NavigatorStorageQuota::NavigatorStorageQuota(LocalFrame* frame)
{
}
-DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(NavigatorStorageQuota);
+NavigatorStorageQuota::~NavigatorStorageQuota()
+{
+}
const char* NavigatorStorageQuota::supplementName()
{
@@ -51,10 +53,10 @@ const char* NavigatorStorageQuota::supplementName()
NavigatorStorageQuota& NavigatorStorageQuota::from(Navigator& navigator)
{
- NavigatorStorageQuota* supplement = static_cast<NavigatorStorageQuota*>(WillBeHeapSupplement<Navigator>::from(navigator, supplementName()));
+ NavigatorStorageQuota* supplement = static_cast<NavigatorStorageQuota*>(HeapSupplement<Navigator>::from(navigator, supplementName()));
if (!supplement) {
supplement = new NavigatorStorageQuota(navigator.frame());
- provideTo(navigator, supplementName(), adoptPtrWillBeNoop(supplement));
+ provideTo(navigator, supplementName(), supplement);
}
return *supplement;
}
@@ -100,7 +102,7 @@ DEFINE_TRACE(NavigatorStorageQuota)
visitor->trace(m_storageQuota);
visitor->trace(m_temporaryStorage);
visitor->trace(m_persistentStorage);
- WillBeHeapSupplement<Navigator>::trace(visitor);
+ HeapSupplement<Navigator>::trace(visitor);
DOMWindowProperty::trace(visitor);
}
« no previous file with comments | « Source/modules/quota/NavigatorStorageQuota.h ('k') | Source/modules/serviceworkers/NavigatorServiceWorker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698