| 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 fe5170644016ab7a1e42efe73e22ff1a051996b1..449d984a3e4c69e6504892a4d3d16d8e9e0fb69e 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLVideoElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLVideoElement.cpp
|
| @@ -320,4 +320,9 @@ FloatSize HTMLVideoElement::elementSize() const
|
| return FloatSize(videoWidth(), videoHeight());
|
| }
|
|
|
| +IntSize HTMLVideoElement::bitmapSourceSize() const
|
| +{
|
| + return IntSize(videoWidth(), videoHeight());
|
| +}
|
| +
|
| } // namespace blink
|
|
|