Index: Source/core/dom/DocumentFullscreen.cpp |
diff --git a/Source/core/dom/DocumentFullscreen.cpp b/Source/core/dom/DocumentFullscreen.cpp |
index 1d3887eeb6a50870d1e07cd185de787f5a5b7aaf..29ced8058a419498aa28d217110e30b8ce48ffc4 100644 |
--- a/Source/core/dom/DocumentFullscreen.cpp |
+++ b/Source/core/dom/DocumentFullscreen.cpp |
@@ -58,13 +58,13 @@ void DocumentFullscreen::webkitCancelFullScreen(Document& document) |
bool DocumentFullscreen::webkitFullscreenEnabled(Document& document) |
{ |
- return FullscreenElementStack::webkitFullscreenEnabled(document); |
+ return FullscreenElementStack::fullscreenEnabled(document); |
} |
Element* DocumentFullscreen::webkitFullscreenElement(Document& document) |
{ |
if (FullscreenElementStack* fullscreen = FullscreenElementStack::fromIfExists(document)) |
- return fullscreen->webkitFullscreenElement(); |
+ return fullscreen->fullscreenElement(); |
return 0; |
} |