OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "config.h" | 5 #include "config.h" |
6 #include "core/paint/VideoPainter.h" | 6 #include "core/paint/VideoPainter.h" |
7 | 7 |
8 #include "core/dom/Document.h" | 8 #include "core/dom/Document.h" |
9 #include "core/frame/FrameView.h" | 9 #include "core/frame/FrameView.h" |
10 #include "core/html/HTMLVideoElement.h" | 10 #include "core/html/HTMLVideoElement.h" |
(...skipping 26 matching lines...) Expand all Loading... |
37 LayoutObjectDrawingRecorder drawingRecorder(*context, m_layoutVideo, paintIn
fo.phase, contentRect); | 37 LayoutObjectDrawingRecorder drawingRecorder(*context, m_layoutVideo, paintIn
fo.phase, contentRect); |
38 | 38 |
39 bool clip = !contentRect.contains(rect); | 39 bool clip = !contentRect.contains(rect); |
40 if (clip) { | 40 if (clip) { |
41 context->save(); | 41 context->save(); |
42 context->clip(contentRect); | 42 context->clip(contentRect); |
43 } | 43 } |
44 | 44 |
45 if (displayingPoster) { | 45 if (displayingPoster) { |
46 ImagePainter(m_layoutVideo).paintIntoRect(context, rect); | 46 ImagePainter(m_layoutVideo).paintIntoRect(context, rect); |
47 } else if ((m_layoutVideo.document().view() && m_layoutVideo.document().view
()->paintBehavior() & PaintBehaviorFlattenCompositingLayers) || !m_layoutVideo.a
cceleratedRenderingInUse()) { | 47 } else if ((gGlobalPaintFlags & GlobalPaintFlattenCompositingLayers) || !m_l
ayoutVideo.acceleratedRenderingInUse()) { |
48 SkPaint videoPaint = context->fillPaint(); | 48 SkPaint videoPaint = context->fillPaint(); |
49 videoPaint.setColor(SK_ColorBLACK); | 49 videoPaint.setColor(SK_ColorBLACK); |
50 m_layoutVideo.videoElement()->paintCurrentFrame(context->canvas(), pixel
SnappedIntRect(rect), &videoPaint); | 50 m_layoutVideo.videoElement()->paintCurrentFrame(context->canvas(), pixel
SnappedIntRect(rect), &videoPaint); |
51 } | 51 } |
52 if (clip) | 52 if (clip) |
53 context->restore(); | 53 context->restore(); |
54 } | 54 } |
55 | 55 |
56 } // namespace blink | 56 } // namespace blink |
OLD | NEW |