OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. |
3 * Copyright (C) 2011 Google Inc. All rights reserved. | 3 * Copyright (C) 2011 Google Inc. All rights reserved. |
4 * Copyright (C) 2012 Research In Motion Limited. All rights reserved. | 4 * Copyright (C) 2012 Research In Motion Limited. 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 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 private: | 186 private: |
187 MediaControlFullscreenTimelineContainerElement(Document*); | 187 MediaControlFullscreenTimelineContainerElement(Document*); |
188 virtual const AtomicString& shadowPseudoId() const OVERRIDE; | 188 virtual const AtomicString& shadowPseudoId() const OVERRIDE; |
189 }; | 189 }; |
190 | 190 |
191 class MediaControlFullscreenTimelineElement : public MediaControlInputElement { | 191 class MediaControlFullscreenTimelineElement : public MediaControlInputElement { |
192 public: | 192 public: |
193 static PassRefPtr<MediaControlFullscreenTimelineElement> create(Document*, M
ediaControls*); | 193 static PassRefPtr<MediaControlFullscreenTimelineElement> create(Document*, M
ediaControls*); |
194 | 194 |
195 virtual bool willRespondToMouseClickEvents() OVERRIDE; | 195 virtual bool willRespondToMouseClickEvents() OVERRIDE; |
196 void setPosition(float); | 196 void setPosition(double); |
197 void setDuration(float); | 197 void setDuration(double); |
198 | 198 |
199 private: | 199 private: |
200 MediaControlFullscreenTimelineElement(Document*, MediaControls*); | 200 MediaControlFullscreenTimelineElement(Document*, MediaControls*); |
201 virtual const AtomicString& shadowPseudoId() const OVERRIDE; | 201 virtual const AtomicString& shadowPseudoId() const OVERRIDE; |
202 virtual void defaultEventHandler(Event*) OVERRIDE; | 202 virtual void defaultEventHandler(Event*) OVERRIDE; |
203 | 203 |
204 MediaControls* m_controls; | 204 MediaControls* m_controls; |
205 }; | 205 }; |
206 | 206 |
207 class MediaControlFullscreenTimeRemainingDisplayElement : public MediaControlTim
eDisplayElement { | 207 class MediaControlFullscreenTimeRemainingDisplayElement : public MediaControlTim
eDisplayElement { |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 MediaControlEmbeddedPanelElement* m_embeddedPanel; | 289 MediaControlEmbeddedPanelElement* m_embeddedPanel; |
290 MediaControlFullscreenButtonContainerElement* m_fullScreenButtonContainer; | 290 MediaControlFullscreenButtonContainerElement* m_fullScreenButtonContainer; |
291 MediaControlPlayButtonContainerElement* m_playButtonContainer; | 291 MediaControlPlayButtonContainerElement* m_playButtonContainer; |
292 MediaControlPlaceholderElement* m_placeholder; | 292 MediaControlPlaceholderElement* m_placeholder; |
293 }; | 293 }; |
294 | 294 |
295 } | 295 } |
296 | 296 |
297 #endif | 297 #endif |
298 #endif | 298 #endif |
OLD | NEW |