Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(81)

Side by Side Diff: third_party/WebKit/Source/core/paint/MediaControlsPainter.cpp

Issue 2795783004: Move core MediaControls implementation to modules/media_controls/. (Closed)
Patch Set: rebase Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutVTTCue.cpp ('k') | third_party/WebKit/Source/modules/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698