| 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 kMediaVolumeSliderThumb, | 61 kMediaVolumeSliderThumb, |
| 62 kMediaExitFullscreenButton, | 62 kMediaExitFullscreenButton, |
| 63 kMediaOverlayPlayButton, | 63 kMediaOverlayPlayButton, |
| 64 kMediaCastOffButton, | 64 kMediaCastOffButton, |
| 65 kMediaCastOnButton, | 65 kMediaCastOnButton, |
| 66 kMediaOverlayCastOffButton, | 66 kMediaOverlayCastOffButton, |
| 67 kMediaOverlayCastOnButton, | 67 kMediaOverlayCastOnButton, |
| 68 kMediaOverflowButton, | 68 kMediaOverflowButton, |
| 69 kMediaOverflowList, | 69 kMediaOverflowList, |
| 70 kMediaDownloadButton, | 70 kMediaDownloadButton, |
| 71 kMediaRemotingCastIcon, |
| 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 GetMediaControlElementType(const Node*); | 77 CORE_EXPORT MediaControlElementType GetMediaControlElementType(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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 protected: | 203 protected: |
| 203 MediaControlTimeDisplayElement(MediaControls&, MediaControlElementType); | 204 MediaControlTimeDisplayElement(MediaControls&, MediaControlElementType); |
| 204 | 205 |
| 205 private: | 206 private: |
| 206 double current_value_; | 207 double current_value_; |
| 207 }; | 208 }; |
| 208 | 209 |
| 209 } // namespace blink | 210 } // namespace blink |
| 210 | 211 |
| 211 #endif // MediaControlElementTypes_h | 212 #endif // MediaControlElementTypes_h |
| OLD | NEW |