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

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

Issue 171333003: Pass implementation object to supplemental classes by reference (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years, 10 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: Source/core/dom/DocumentFullscreen.h
diff --git a/Source/core/dom/DocumentFullscreen.h b/Source/core/dom/DocumentFullscreen.h
index ff5338da300f3bf6846faf0c454ce8e5fb599517..01a5ac96cf68b2be884aac7d65f691e6d655e7b6 100644
--- a/Source/core/dom/DocumentFullscreen.h
+++ b/Source/core/dom/DocumentFullscreen.h
@@ -33,14 +33,14 @@ class Element;
class DocumentFullscreen {
public:
- static bool webkitIsFullScreen(Document*);
- static bool webkitFullScreenKeyboardInputAllowed(Document*);
- static Element* webkitCurrentFullScreenElement(Document*);
- static void webkitCancelFullScreen(Document*);
+ static bool webkitIsFullScreen(Document&);
+ static bool webkitFullScreenKeyboardInputAllowed(Document&);
+ static Element* webkitCurrentFullScreenElement(Document&);
+ static void webkitCancelFullScreen(Document&);
- static bool webkitFullscreenEnabled(Document*);
- static Element* webkitFullscreenElement(Document*);
- static void webkitExitFullscreen(Document*);
+ static bool webkitFullscreenEnabled(Document&);
+ static Element* webkitFullscreenElement(Document&);
+ static void webkitExitFullscreen(Document&);
};
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698