| 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 #ifndef RenderMediaControlsChromium_h | 28 #ifndef RenderMediaControlsChromium_h |
| 29 #define RenderMediaControlsChromium_h | 29 #define RenderMediaControlsChromium_h |
| 30 | 30 |
| 31 #include "core/html/shadow/MediaControlElements.h" | 31 #include "core/html/shadow/MediaControlElements.h" |
| 32 | 32 |
| 33 namespace WebCore { | 33 namespace WebCore { |
| 34 | 34 |
| 35 struct PaintInfo; | 35 class PaintInfo; |
| 36 | 36 |
| 37 class HTMLMediaElement; | 37 class HTMLMediaElement; |
| 38 class IntRect; | 38 class IntRect; |
| 39 class RenderObject; | 39 class RenderObject; |
| 40 | 40 |
| 41 class RenderMediaControlsChromium { | 41 class RenderMediaControlsChromium { |
| 42 public: | 42 public: |
| 43 static bool paintMediaControlsPart(MediaControlElementType, RenderObject*, c
onst PaintInfo&, const IntRect&); | 43 static bool paintMediaControlsPart(MediaControlElementType, RenderObject*, P
aintInfo&, const IntRect&); |
| 44 static void adjustMediaSliderThumbSize(RenderStyle*); | 44 static void adjustMediaSliderThumbSize(RenderStyle*); |
| 45 static String formatMediaControlsTime(float time); | 45 static String formatMediaControlsTime(float time); |
| 46 static String formatMediaControlsCurrentTime(float currentTime, float durati
on); | 46 static String formatMediaControlsCurrentTime(float currentTime, float durati
on); |
| 47 }; | 47 }; |
| 48 | 48 |
| 49 } // namespace WebCore | 49 } // namespace WebCore |
| 50 | 50 |
| 51 #endif // RenderMediaControlsChromium_h | 51 #endif // RenderMediaControlsChromium_h |
| OLD | NEW |