Index: third_party/WebKit/Source/core/dom/Fullscreen.h |
diff --git a/third_party/WebKit/Source/core/dom/Fullscreen.h b/third_party/WebKit/Source/core/dom/Fullscreen.h |
index 9c0b01b4704a04fe7f8818c0169638440a3590e2..b98977dd31b74ff9aaa5f84cf60dc3b69d90d8f3 100644 |
--- a/third_party/WebKit/Source/core/dom/Fullscreen.h |
+++ b/third_party/WebKit/Source/core/dom/Fullscreen.h |
@@ -69,10 +69,10 @@ public: |
// |forCrossProcessDescendant| is used in OOPIF scenarios and is set to |
// true when fullscreen is requested for an out-of-process descendant |
// element. |
- void requestFullscreen(Element&, RequestType, bool forCrossProcessDescendant = false); |
+ static void requestFullscreen(Element&, RequestType, bool forCrossProcessDescendant = false); |
static void fullyExitFullscreen(Document&); |
- void exitFullscreen(); |
+ static void exitFullscreen(Document&); |
static bool fullscreenEnabled(Document&); |
// TODO(foolip): The fullscreen element stack is modified synchronously in |