| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2012 Google Inc. All rights reserved. | 3 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 MediaVolumeSliderThumb, | 61 MediaVolumeSliderThumb, |
| 62 MediaExitFullscreenButton, | 62 MediaExitFullscreenButton, |
| 63 MediaOverlayPlayButton, | 63 MediaOverlayPlayButton, |
| 64 MediaCastOffButton, | 64 MediaCastOffButton, |
| 65 MediaCastOnButton, | 65 MediaCastOnButton, |
| 66 MediaOverlayCastOffButton, | 66 MediaOverlayCastOffButton, |
| 67 MediaOverlayCastOnButton, | 67 MediaOverlayCastOnButton, |
| 68 MediaOverflowButton, | 68 MediaOverflowButton, |
| 69 MediaOverflowList, | 69 MediaOverflowList, |
| 70 MediaDownloadButton, | 70 MediaDownloadButton, |
| 71 MediaRemotingCastIcon, |
| 71 }; | 72 }; |
| 72 | 73 |
| 73 CORE_EXPORT const HTMLMediaElement* toParentMediaElement(const Node*); | 74 CORE_EXPORT const HTMLMediaElement* toParentMediaElement(const Node*); |
| 74 CORE_EXPORT const HTMLMediaElement* toParentMediaElement(const LayoutObject&); | 75 CORE_EXPORT const HTMLMediaElement* toParentMediaElement(const LayoutObject&); |
| 75 | 76 |
| 76 CORE_EXPORT MediaControlElementType mediaControlElementType(const Node*); | 77 CORE_EXPORT MediaControlElementType mediaControlElementType(const Node*); |
| 77 | 78 |
| 78 // ---------------------------- | 79 // ---------------------------- |
| 79 | 80 |
| 80 // TODO(mustaq): The Media control elements that use MouseEvents should be | 81 // TODO(mustaq): The Media control elements that use MouseEvents should be |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 protected: | 202 protected: |
| 202 MediaControlTimeDisplayElement(MediaControls&, MediaControlElementType); | 203 MediaControlTimeDisplayElement(MediaControls&, MediaControlElementType); |
| 203 | 204 |
| 204 private: | 205 private: |
| 205 double m_currentValue; | 206 double m_currentValue; |
| 206 }; | 207 }; |
| 207 | 208 |
| 208 } // namespace blink | 209 } // namespace blink |
| 209 | 210 |
| 210 #endif // MediaControlElementTypes_h | 211 #endif // MediaControlElementTypes_h |
| OLD | NEW |