| Index: third_party/WebKit/Source/core/html/HTMLVideoElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLVideoElement.cpp b/third_party/WebKit/Source/core/html/HTMLVideoElement.cpp
|
| index d9b535d7ad42cf252b18ac9926592890bd77510c..1bef144d1c13cec73f9abf79bc0fce29a37ef277 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLVideoElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLVideoElement.cpp
|
| @@ -255,12 +255,12 @@ bool HTMLVideoElement::hasAvailableVideoFrame() const {
|
|
|
| void HTMLVideoElement::webkitEnterFullscreen() {
|
| if (!isFullscreen())
|
| - enterFullscreen();
|
| + Fullscreen::requestFullscreen(*this, Fullscreen::RequestType::Prefixed);
|
| }
|
|
|
| void HTMLVideoElement::webkitExitFullscreen() {
|
| if (isFullscreen())
|
| - exitFullscreen();
|
| + Fullscreen::exitFullscreen(document());
|
| }
|
|
|
| bool HTMLVideoElement::webkitSupportsFullscreen() {
|
|
|