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

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

Issue 2340263003: Move Document.fullscreenElement to DocumentOrShadowRoot (Closed)
Patch Set: Fix for comments Created 4 years, 2 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: third_party/WebKit/Source/core/dom/DocumentFullscreen.h
diff --git a/third_party/WebKit/Source/core/dom/DocumentFullscreen.h b/third_party/WebKit/Source/core/dom/DocumentFullscreen.h
index aa8da7411136da7dd842dd2fadc7371db60807da..679852c67e9c5b7758301da359517546fa6e8f76 100644
--- a/third_party/WebKit/Source/core/dom/DocumentFullscreen.h
+++ b/third_party/WebKit/Source/core/dom/DocumentFullscreen.h
@@ -39,14 +39,14 @@ class DocumentFullscreen {
public:
static bool fullscreenEnabled(Document&);
- static Element* fullscreenElement(Document&);
+ static Element* webkitFullscreenElement(Document&);
foolip 2016/10/10 12:13:40 If prefixed and unprefixed are kept in sync, these
static void exitFullscreen(Document&);
DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(fullscreenchange);
DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(fullscreenerror);
// Mozilla version
- static Element* currentFullScreenElement(Document&);
+ static Element* webkitCurrentFullScreenElement(Document&);
DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(webkitfullscreenchange);
DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(webkitfullscreenerror);

Powered by Google App Engine
This is Rietveld 408576698