| Index: third_party/WebKit/Source/core/html/HTMLVideoElement.h
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLVideoElement.h b/third_party/WebKit/Source/core/html/HTMLVideoElement.h
|
| index 61dfb9d8428806a7d052e46f91b2b169c58f5c42..e8575f0962012044658d564ccb810f2a0f010330 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLVideoElement.h
|
| +++ b/third_party/WebKit/Source/core/html/HTMLVideoElement.h
|
| @@ -98,9 +98,9 @@ class CORE_EXPORT HTMLVideoElement final : public HTMLMediaElement,
|
| bool isHTMLVideoElement() const override { return true; }
|
| int sourceWidth() override { return videoWidth(); }
|
| int sourceHeight() override { return videoHeight(); }
|
| - bool isAccelerated() const override {
|
| - return false;
|
| - } // Video elements currently always go through RAM when used as a canvas image source.
|
| + // Video elements currently always go through RAM when used as a canvas image
|
| + // source.
|
| + bool isAccelerated() const override { return false; }
|
|
|
| // ImageBitmapSource implementation
|
| IntSize bitmapSourceSize() const override;
|
|
|