| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Apple Inc. | 2 * Copyright (C) 2009 Apple Inc. |
| 3 * Copyright (C) 2009 Google Inc. | 3 * Copyright (C) 2009 Google Inc. |
| 4 * All rights reserved. | 4 * All rights reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
| 8 * are met: | 8 * are met: |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 23 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 26 */ | 26 */ |
| 27 | 27 |
| 28 #include "core/paint/MediaControlsPainter.h" | 28 #include "core/paint/MediaControlsPainter.h" |
| 29 | 29 |
| 30 #include "bindings/core/v8/ExceptionState.h" | 30 #include "bindings/core/v8/ExceptionState.h" |
| 31 #include "core/html/HTMLMediaElement.h" | 31 #include "core/html/HTMLMediaElement.h" |
| 32 #include "core/html/TimeRanges.h" | 32 #include "core/html/TimeRanges.h" |
| 33 #include "core/html/media/MediaControls.h" |
| 33 #include "core/html/shadow/MediaControlElementTypes.h" | 34 #include "core/html/shadow/MediaControlElementTypes.h" |
| 34 #include "core/html/shadow/MediaControls.h" | 35 #include "core/html/shadow/MediaControlElements.h" |
| 35 #include "core/layout/LayoutBox.h" | 36 #include "core/layout/LayoutBox.h" |
| 36 #include "core/paint/PaintInfo.h" | 37 #include "core/paint/PaintInfo.h" |
| 37 #include "core/style/ComputedStyle.h" | 38 #include "core/style/ComputedStyle.h" |
| 38 #include "platform/graphics/Gradient.h" | 39 #include "platform/graphics/Gradient.h" |
| 39 #include "platform/graphics/GraphicsContext.h" | 40 #include "platform/graphics/GraphicsContext.h" |
| 40 | 41 |
| 41 namespace blink { | 42 namespace blink { |
| 42 | 43 |
| 43 static const double kCurrentTimeBufferedDelta = 1.0; | 44 static const double kCurrentTimeBufferedDelta = 1.0; |
| 44 | 45 |
| (...skipping 559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 604 void MediaControlsPainter::adjustMediaSliderThumbSize(ComputedStyle& style) { | 605 void MediaControlsPainter::adjustMediaSliderThumbSize(ComputedStyle& style) { |
| 605 const float zoomLevel = style.effectiveZoom(); | 606 const float zoomLevel = style.effectiveZoom(); |
| 606 | 607 |
| 607 style.setWidth( | 608 style.setWidth( |
| 608 Length(static_cast<int>(mediaSliderThumbTouchWidth * zoomLevel), Fixed)); | 609 Length(static_cast<int>(mediaSliderThumbTouchWidth * zoomLevel), Fixed)); |
| 609 style.setHeight( | 610 style.setHeight( |
| 610 Length(static_cast<int>(mediaSliderThumbTouchHeight * zoomLevel), Fixed)); | 611 Length(static_cast<int>(mediaSliderThumbTouchHeight * zoomLevel), Fixed)); |
| 611 } | 612 } |
| 612 | 613 |
| 613 } // namespace blink | 614 } // namespace blink |
| OLD | NEW |