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

Unified Diff: third_party/WebKit/Source/core/dom/DocumentFullscreen.cpp

Issue 2325663002: Make Fullscreen::requestFullscreen and exitFullscreen static (Closed)
Patch Set: doc->document, for loop Created 4 years, 3 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 | « no previous file | third_party/WebKit/Source/core/dom/ElementFullscreen.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/dom/DocumentFullscreen.cpp
diff --git a/third_party/WebKit/Source/core/dom/DocumentFullscreen.cpp b/third_party/WebKit/Source/core/dom/DocumentFullscreen.cpp
index 01ca3f8a23fba4d4b895290fe8c5119416627d2d..50057650522e34d7b1ca8636f5e95c55dc381f2c 100644
--- a/third_party/WebKit/Source/core/dom/DocumentFullscreen.cpp
+++ b/third_party/WebKit/Source/core/dom/DocumentFullscreen.cpp
@@ -41,7 +41,7 @@ Element* DocumentFullscreen::fullscreenElement(Document& document)
void DocumentFullscreen::exitFullscreen(Document& document)
{
- Fullscreen::from(document).exitFullscreen();
+ Fullscreen::exitFullscreen(document);
}
Element* DocumentFullscreen::currentFullScreenElement(Document& document)
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/ElementFullscreen.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698