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

Unified Diff: Source/core/dom/FullscreenElementStack.cpp

Issue 423093002: Oilpan: Prepare to move RenderObject and RenderObjectChildList to Oilpan heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: dispose -> destroy Created 6 years, 4 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/core/dom/FullscreenElementStack.h ('k') | Source/core/dom/Node.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/FullscreenElementStack.cpp
diff --git a/Source/core/dom/FullscreenElementStack.cpp b/Source/core/dom/FullscreenElementStack.cpp
index 7bd45e1839ba16a358958da4ac21aa3e256a1b8b..9797fa4ff3a6573012ad2d9c7bf493a282663ace 100644
--- a/Source/core/dom/FullscreenElementStack.cpp
+++ b/Source/core/dom/FullscreenElementStack.cpp
@@ -123,7 +123,7 @@ bool FullscreenElementStack::isFullScreen(Document& document)
FullscreenElementStack::FullscreenElementStack(Document& document)
: DocumentLifecycleObserver(&document)
, m_areKeysEnabledInFullScreen(false)
- , m_fullScreenRenderer(0)
+ , m_fullScreenRenderer(nullptr)
, m_eventQueueTimer(this, &FullscreenElementStack::eventQueueTimerFired)
{
document.setHasFullscreenElementStack();
@@ -501,7 +501,7 @@ void FullscreenElementStack::setFullScreenRenderer(RenderFullScreen* renderer)
void FullscreenElementStack::fullScreenRendererDestroyed()
{
- m_fullScreenRenderer = 0;
+ m_fullScreenRenderer = nullptr;
}
void FullscreenElementStack::enqueueChangeEvent(Document& document)
@@ -592,6 +592,7 @@ void FullscreenElementStack::trace(Visitor* visitor)
{
visitor->trace(m_fullScreenElement);
visitor->trace(m_fullScreenElementStack);
+ visitor->trace(m_fullScreenRenderer);
visitor->trace(m_eventQueue);
DocumentSupplement::trace(visitor);
}
« no previous file with comments | « Source/core/dom/FullscreenElementStack.h ('k') | Source/core/dom/Node.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698