| 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..e64a10fd0aa63fa70bd7c1a0daedc0f29a5d553a 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLVideoElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLVideoElement.cpp
|
| @@ -284,7 +284,7 @@
|
| return document().completeURL(url);
|
| }
|
|
|
| -PassRefPtr<Image> HTMLVideoElement::getSourceImageForCanvas(SourceImageStatus* status, AccelerationHint) const
|
| +PassRefPtr<Image> HTMLVideoElement::getSourceImageForCanvas(SourceImageStatus* status) const
|
| {
|
| if (!hasAvailableVideoFrame()) {
|
| *status = InvalidSourceImageStatus;
|
| @@ -292,7 +292,6 @@
|
| }
|
|
|
| IntSize intrinsicSize(videoWidth(), videoHeight());
|
| - // FIXME: Not sure if we dhould we be doing anything with the AccelerationHint argument here?
|
| OwnPtr<ImageBuffer> imageBuffer = ImageBuffer::create(intrinsicSize);
|
| if (!imageBuffer) {
|
| *status = InvalidSourceImageStatus;
|
|
|