| Index: third_party/WebKit/Source/modules/media_controls/MediaControlsImpl.cpp
|
| diff --git a/third_party/WebKit/Source/modules/media_controls/MediaControlsImpl.cpp b/third_party/WebKit/Source/modules/media_controls/MediaControlsImpl.cpp
|
| index 9bf2b7bd75b07965ea592663da13bd45c8245d39..283be0ab777169ef82b2fa88635be08ad89ee3c3 100644
|
| --- a/third_party/WebKit/Source/modules/media_controls/MediaControlsImpl.cpp
|
| +++ b/third_party/WebKit/Source/modules/media_controls/MediaControlsImpl.cpp
|
| @@ -27,7 +27,6 @@
|
| #include "modules/media_controls/MediaControlsImpl.h"
|
|
|
| #include "bindings/core/v8/ExceptionState.h"
|
| -#include "core/dom/ClientRect.h"
|
| #include "core/dom/Fullscreen.h"
|
| #include "core/dom/MutationCallback.h"
|
| #include "core/dom/MutationObserver.h"
|
| @@ -40,6 +39,7 @@
|
| #include "core/events/MouseEvent.h"
|
| #include "core/frame/Settings.h"
|
| #include "core/frame/UseCounter.h"
|
| +#include "core/geometry/DOMRect.h"
|
| #include "core/html/HTMLMediaElement.h"
|
| #include "core/html/HTMLVideoElement.h"
|
| #include "core/html/media/AutoplayPolicy.h"
|
| @@ -1029,7 +1029,7 @@ void MediaControlsImpl::OnPanelKeypress() {
|
| ResetHideMediaControlsTimer();
|
| }
|
|
|
| -void MediaControlsImpl::NotifyElementSizeChanged(ClientRect* new_size) {
|
| +void MediaControlsImpl::NotifyElementSizeChanged(DOMRect* new_size) {
|
| // Note that this code permits a bad frame on resize, since it is
|
| // run after the relayout / paint happens. It would be great to improve
|
| // this, but it would be even greater to move this code entirely to
|
|
|