| Index: Source/core/dom/Fullscreen.h
|
| diff --git a/Source/core/dom/Fullscreen.h b/Source/core/dom/Fullscreen.h
|
| index 704e4a9146402a5b8564ab9c6f53a06b59867fc2..24ff00033d5df5357335645d76b2743136c280cc 100644
|
| --- a/Source/core/dom/Fullscreen.h
|
| +++ b/Source/core/dom/Fullscreen.h
|
| @@ -60,9 +60,11 @@ public:
|
| static bool isActiveFullScreenElement(const Element&);
|
|
|
| enum RequestType {
|
| - UnprefixedRequest, // Element.requestFullscreen()
|
| - PrefixedRequest, // Element.webkitRequestFullscreen() and webkitRequestFullScreen()
|
| - PrefixedVideoRequest, // HTMLVideoElement.webkitEnterFullscreen() and webkitEnterFullScreen()
|
| + // Element.requestFullscreen()
|
| + UnprefixedRequest,
|
| + // Element.webkitRequestFullscreen()/webkitRequestFullScreen() and
|
| + // HTMLVideoElement.webkitEnterFullscreen()/webkitEnterFullScreen()
|
| + PrefixedRequest,
|
| };
|
|
|
| void requestFullscreen(Element&, RequestType);
|
|
|