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

Unified Diff: Source/core/rendering/RenderFullScreen.cpp

Issue 476763004: Rename FullscreenElementStack to just Fullscreen (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase 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/page/scrolling/ScrollingCoordinator.cpp ('k') | Source/core/rendering/RenderInline.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderFullScreen.cpp
diff --git a/Source/core/rendering/RenderFullScreen.cpp b/Source/core/rendering/RenderFullScreen.cpp
index 41c5ecee62bf56091de536791ade26b2e94fa812..b3f157be3b8de85e9f9dbde45441ee0b6bffdff2 100644
--- a/Source/core/rendering/RenderFullScreen.cpp
+++ b/Source/core/rendering/RenderFullScreen.cpp
@@ -25,7 +25,7 @@
#include "config.h"
#include "core/rendering/RenderFullScreen.h"
-#include "core/dom/FullscreenElementStack.h"
+#include "core/dom/Fullscreen.h"
#include "core/rendering/RenderBlockFlow.h"
using namespace blink;
@@ -81,7 +81,7 @@ void RenderFullScreen::willBeDestroyed()
// RenderObjects are unretained, so notify the document (which holds a pointer to a RenderFullScreen)
// if its RenderFullScreen is destroyed.
- FullscreenElementStack& fullscreen = FullscreenElementStack::from(document());
+ Fullscreen& fullscreen = Fullscreen::from(document());
if (fullscreen.fullScreenRenderer() == this)
fullscreen.fullScreenRendererDestroyed();
@@ -150,7 +150,7 @@ RenderObject* RenderFullScreen::wrapRenderer(RenderObject* object, RenderObject*
}
ASSERT(document);
- FullscreenElementStack::from(*document).setFullScreenRenderer(fullscreenRenderer);
+ Fullscreen::from(*document).setFullScreenRenderer(fullscreenRenderer);
return fullscreenRenderer;
}
« no previous file with comments | « Source/core/page/scrolling/ScrollingCoordinator.cpp ('k') | Source/core/rendering/RenderInline.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698