| 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 14 matching lines...) Expand all Loading... |
| 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/media/MediaControls.h" |
| 34 #include "core/html/shadow/MediaControlElementTypes.h" | 34 #include "core/html/shadow/MediaControlElementTypes.h" |
| 35 #include "core/html/shadow/MediaControlElements.h" | |
| 36 #include "core/layout/LayoutBox.h" | 35 #include "core/layout/LayoutBox.h" |
| 37 #include "core/paint/PaintInfo.h" | 36 #include "core/paint/PaintInfo.h" |
| 38 #include "core/style/ComputedStyle.h" | 37 #include "core/style/ComputedStyle.h" |
| 39 #include "platform/graphics/Gradient.h" | 38 #include "platform/graphics/Gradient.h" |
| 40 #include "platform/graphics/GraphicsContext.h" | 39 #include "platform/graphics/GraphicsContext.h" |
| 41 | 40 |
| 42 namespace blink { | 41 namespace blink { |
| 43 | 42 |
| 44 static const double kCurrentTimeBufferedDelta = 1.0; | 43 static const double kCurrentTimeBufferedDelta = 1.0; |
| 45 | 44 |
| (...skipping 578 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 624 void MediaControlsPainter::AdjustMediaSliderThumbSize(ComputedStyle& style) { | 623 void MediaControlsPainter::AdjustMediaSliderThumbSize(ComputedStyle& style) { |
| 625 const float zoom_level = style.EffectiveZoom(); | 624 const float zoom_level = style.EffectiveZoom(); |
| 626 | 625 |
| 627 style.SetWidth(Length( | 626 style.SetWidth(Length( |
| 628 static_cast<int>(kMediaSliderThumbTouchWidth * zoom_level), kFixed)); | 627 static_cast<int>(kMediaSliderThumbTouchWidth * zoom_level), kFixed)); |
| 629 style.SetHeight(Length( | 628 style.SetHeight(Length( |
| 630 static_cast<int>(kMediaSliderThumbTouchHeight * zoom_level), kFixed)); | 629 static_cast<int>(kMediaSliderThumbTouchHeight * zoom_level), kFixed)); |
| 631 } | 630 } |
| 632 | 631 |
| 633 } // namespace blink | 632 } // namespace blink |
| OLD | NEW |