| 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 04f078d697d6fa63ca246b7fbe0f574e88ca24c6..ec7a7ed406cc3aea3fe065e952d849bb0dd35f79 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLVideoElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLVideoElement.cpp
|
| @@ -191,13 +191,13 @@ void HTMLVideoElement::updateDisplayState() {
|
| setDisplayMode(Poster);
|
| }
|
|
|
| -void HTMLVideoElement::paintCurrentFrame(SkCanvas* canvas,
|
| +void HTMLVideoElement::paintCurrentFrame(PaintCanvas* canvas,
|
| const IntRect& destRect,
|
| - const SkPaint* paint) const {
|
| + const PaintFlags* paint) const {
|
| if (!webMediaPlayer())
|
| return;
|
|
|
| - SkPaint mediaPaint;
|
| + PaintFlags mediaPaint;
|
| if (paint) {
|
| mediaPaint = *paint;
|
| } else {
|
|
|