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

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

Issue 2760063003: Remove the -webkit-fullscreen-volume-* pseudos, they're dead code. (Closed)
Patch Set: Created 3 years, 9 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 * This file is part of the theme implementation for form controls in WebCore. 2 * This file is part of the theme implementation for form controls in WebCore.
3 * 3 *
4 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Computer, Inc. 4 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Computer, Inc.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 case MediaSliderPart: 125 case MediaSliderPart:
126 return MediaControlsPainter::paintMediaSlider(o, paintInfo, r); 126 return MediaControlsPainter::paintMediaSlider(o, paintInfo, r);
127 case MediaSliderThumbPart: 127 case MediaSliderThumbPart:
128 return MediaControlsPainter::paintMediaSliderThumb(o, paintInfo, r); 128 return MediaControlsPainter::paintMediaSliderThumb(o, paintInfo, r);
129 case MediaVolumeSliderContainerPart: 129 case MediaVolumeSliderContainerPart:
130 return true; 130 return true;
131 case MediaVolumeSliderPart: 131 case MediaVolumeSliderPart:
132 return MediaControlsPainter::paintMediaVolumeSlider(o, paintInfo, r); 132 return MediaControlsPainter::paintMediaVolumeSlider(o, paintInfo, r);
133 case MediaVolumeSliderThumbPart: 133 case MediaVolumeSliderThumbPart:
134 return MediaControlsPainter::paintMediaVolumeSliderThumb(o, paintInfo, r); 134 return MediaControlsPainter::paintMediaVolumeSliderThumb(o, paintInfo, r);
135 case MediaFullscreenVolumeSliderPart:
136 case MediaFullscreenVolumeSliderThumbPart:
137 case MediaTimeRemainingPart: 135 case MediaTimeRemainingPart:
138 case MediaCurrentTimePart: 136 case MediaCurrentTimePart:
139 case MediaControlsBackgroundPart: 137 case MediaControlsBackgroundPart:
140 return true; 138 return true;
141 case MediaCastOffButtonPart: 139 case MediaCastOffButtonPart:
142 case MediaOverlayCastOffButtonPart: 140 case MediaOverlayCastOffButtonPart:
143 return MediaControlsPainter::paintMediaCastButton(o, paintInfo, r); 141 return MediaControlsPainter::paintMediaCastButton(o, paintInfo, r);
144 case MediaTrackSelectionCheckmarkPart: 142 case MediaTrackSelectionCheckmarkPart:
145 return MediaControlsPainter::paintMediaTrackSelectionCheckmark( 143 return MediaControlsPainter::paintMediaTrackSelectionCheckmark(
146 o, paintInfo, r); 144 o, paintInfo, r);
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 i.context.translate(-unzoomedRect.x(), -unzoomedRect.y()); 404 i.context.translate(-unzoomedRect.x(), -unzoomedRect.y());
407 } 405 }
408 406
409 Platform::current()->fallbackThemeEngine()->paint( 407 Platform::current()->fallbackThemeEngine()->paint(
410 canvas, WebFallbackThemeEngine::PartRadio, getWebFallbackThemeState(o), 408 canvas, WebFallbackThemeEngine::PartRadio, getWebFallbackThemeState(o),
411 WebRect(unzoomedRect), &extraParams); 409 WebRect(unzoomedRect), &extraParams);
412 return false; 410 return false;
413 } 411 }
414 412
415 } // namespace blink 413 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698