| OLD | NEW |
| 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 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 case MediaMuteButtonPart: | 334 case MediaMuteButtonPart: |
| 335 return paintMediaMuteButton(o, paintInfo, r); | 335 return paintMediaMuteButton(o, paintInfo, r); |
| 336 case MediaSeekBackButtonPart: | 336 case MediaSeekBackButtonPart: |
| 337 return paintMediaSeekBackButton(o, paintInfo, r); | 337 return paintMediaSeekBackButton(o, paintInfo, r); |
| 338 case MediaSeekForwardButtonPart: | 338 case MediaSeekForwardButtonPart: |
| 339 return paintMediaSeekForwardButton(o, paintInfo, r); | 339 return paintMediaSeekForwardButton(o, paintInfo, r); |
| 340 case MediaRewindButtonPart: | 340 case MediaRewindButtonPart: |
| 341 return paintMediaRewindButton(o, paintInfo, r); | 341 return paintMediaRewindButton(o, paintInfo, r); |
| 342 case MediaReturnToRealtimeButtonPart: | 342 case MediaReturnToRealtimeButtonPart: |
| 343 return paintMediaReturnToRealtimeButton(o, paintInfo, r); | 343 return paintMediaReturnToRealtimeButton(o, paintInfo, r); |
| 344 case MediaToggleClosedCaptionsButtonPart: |
| 345 return paintMediaToggleClosedCaptionsButton(o, paintInfo, r); |
| 344 case MediaSliderPart: | 346 case MediaSliderPart: |
| 345 return paintMediaSliderTrack(o, paintInfo, r); | 347 return paintMediaSliderTrack(o, paintInfo, r); |
| 346 case MediaSliderThumbPart: | 348 case MediaSliderThumbPart: |
| 347 return paintMediaSliderThumb(o, paintInfo, r); | 349 return paintMediaSliderThumb(o, paintInfo, r); |
| 348 case MediaVolumeSliderMuteButtonPart: | 350 case MediaVolumeSliderMuteButtonPart: |
| 349 return paintMediaMuteButton(o, paintInfo, r); | 351 return paintMediaMuteButton(o, paintInfo, r); |
| 350 case MediaVolumeSliderContainerPart: | 352 case MediaVolumeSliderContainerPart: |
| 351 return paintMediaVolumeSliderContainer(o, paintInfo, r); | 353 return paintMediaVolumeSliderContainer(o, paintInfo, r); |
| 352 case MediaVolumeSliderPart: | 354 case MediaVolumeSliderPart: |
| 353 return paintMediaVolumeSliderTrack(o, paintInfo, r); | 355 return paintMediaVolumeSliderTrack(o, paintInfo, r); |
| (...skipping 906 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1260 | 1262 |
| 1261 return StringTruncator::centerTruncate(string, width, font, StringTruncator:
:EnableRoundingHacks); | 1263 return StringTruncator::centerTruncate(string, width, font, StringTruncator:
:EnableRoundingHacks); |
| 1262 } | 1264 } |
| 1263 | 1265 |
| 1264 bool RenderTheme::shouldOpenPickerWithF4Key() const | 1266 bool RenderTheme::shouldOpenPickerWithF4Key() const |
| 1265 { | 1267 { |
| 1266 return false; | 1268 return false; |
| 1267 } | 1269 } |
| 1268 | 1270 |
| 1269 } // namespace WebCore | 1271 } // namespace WebCore |
| OLD | NEW |