| 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 a3466a06728f0d90d5f9c40b17fdf6c67cb4c2d1..c5617d97380677f60eb37b5e3fd1ebc7d8f4786e 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLVideoElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLVideoElement.cpp
|
| @@ -95,6 +95,10 @@ DEFINE_TRACE(HTMLVideoElement) {
|
| HTMLMediaElement::Trace(visitor);
|
| }
|
|
|
| +bool HTMLVideoElement::HasPendingActivityInternal() const {
|
| + return image_loader_ && image_loader_->HasPendingActivity();
|
| +}
|
| +
|
| Node::InsertionNotificationRequest HTMLVideoElement::InsertedInto(
|
| ContainerNode* insertion_point) {
|
| if (insertion_point->isConnected() && custom_controls_fullscreen_detector_)
|
|
|