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

Unified Diff: Source/modules/presentation/NavigatorPresentation.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
« no previous file with comments | « Source/modules/presentation/NavigatorPresentation.h ('k') | Source/modules/quota/NavigatorStorageQuota.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/presentation/NavigatorPresentation.cpp
diff --git a/Source/modules/presentation/NavigatorPresentation.cpp b/Source/modules/presentation/NavigatorPresentation.cpp
index 49ef2c2b2e6e1e1d9e96fcbcd8fd29a59bbc0684..6dde703687f9e047368c890ab9f6fbdb21b18cdf 100644
--- a/Source/modules/presentation/NavigatorPresentation.cpp
+++ b/Source/modules/presentation/NavigatorPresentation.cpp
@@ -14,10 +14,6 @@ NavigatorPresentation::NavigatorPresentation()
{
}
-NavigatorPresentation::~NavigatorPresentation()
-{
-}
-
// static
const char* NavigatorPresentation::supplementName()
{
@@ -27,10 +23,10 @@ const char* NavigatorPresentation::supplementName()
// static
NavigatorPresentation& NavigatorPresentation::from(Navigator& navigator)
{
- NavigatorPresentation* supplement = static_cast<NavigatorPresentation*>(WillBeHeapSupplement<Navigator>::from(navigator, supplementName()));
+ NavigatorPresentation* supplement = static_cast<NavigatorPresentation*>(HeapSupplement<Navigator>::from(navigator, supplementName()));
if (!supplement) {
supplement = new NavigatorPresentation();
- provideTo(navigator, supplementName(), adoptPtrWillBeNoop(supplement));
+ provideTo(navigator, supplementName(), supplement);
}
return *supplement;
}
@@ -44,13 +40,13 @@ Presentation* NavigatorPresentation::presentation(Navigator& navigator)
return nullptr;
self.m_presentation = Presentation::create(navigator.frame());
}
- return self.m_presentation.get();
+ return self.m_presentation;
}
DEFINE_TRACE(NavigatorPresentation)
{
visitor->trace(m_presentation);
- WillBeHeapSupplement<Navigator>::trace(visitor);
+ HeapSupplement<Navigator>::trace(visitor);
}
} // namespace blink
« no previous file with comments | « Source/modules/presentation/NavigatorPresentation.h ('k') | Source/modules/quota/NavigatorStorageQuota.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698