| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011, 2012 Apple Inc. All rights reserved. | 2 * Copyright (C) 2011, 2012 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. | 3 * Copyright (C) 2011, 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 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 #include "core/html/media/MediaControls.h" | 31 #include "core/html/media/MediaControls.h" |
| 32 #include "core/html/shadow/MediaControlElements.h" | 32 #include "core/html/shadow/MediaControlElements.h" |
| 33 #include "modules/ModulesExport.h" | 33 #include "modules/ModulesExport.h" |
| 34 | 34 |
| 35 namespace blink { | 35 namespace blink { |
| 36 | 36 |
| 37 class Event; | 37 class Event; |
| 38 class MediaControlsMediaEventListener; | 38 class MediaControlsMediaEventListener; |
| 39 class MediaControlsOrientationLockDelegate; | 39 class MediaControlsOrientationLockDelegate; |
| 40 class MediaControlsWindowEventListener; | 40 class MediaControlsWindowEventListener; |
| 41 class MediaControlCastButtonElement; |
| 41 class MediaControlCurrentTimeDisplayElement; | 42 class MediaControlCurrentTimeDisplayElement; |
| 43 class MediaControlDownloadButtonElement; |
| 42 class MediaControlFullscreenButtonElement; | 44 class MediaControlFullscreenButtonElement; |
| 43 class MediaControlMuteButtonElement; | 45 class MediaControlMuteButtonElement; |
| 44 class MediaControlOverflowMenuButtonElement; | 46 class MediaControlOverflowMenuButtonElement; |
| 45 class MediaControlOverflowMenuListElement; | 47 class MediaControlOverflowMenuListElement; |
| 46 class MediaControlOverlayEnclosureElement; | 48 class MediaControlOverlayEnclosureElement; |
| 47 class MediaControlOverlayPlayButtonElement; | 49 class MediaControlOverlayPlayButtonElement; |
| 48 class MediaControlPanelElement; | 50 class MediaControlPanelElement; |
| 49 class MediaControlPanelEnclosureElement; | 51 class MediaControlPanelEnclosureElement; |
| 50 class MediaControlPlayButtonElement; | 52 class MediaControlPlayButtonElement; |
| 51 class MediaControlRemainingTimeDisplayElement; | 53 class MediaControlRemainingTimeDisplayElement; |
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 IntSize size_; | 256 IntSize size_; |
| 255 | 257 |
| 256 bool keep_showing_until_timer_fires_ : 1; | 258 bool keep_showing_until_timer_fires_ : 1; |
| 257 }; | 259 }; |
| 258 | 260 |
| 259 DEFINE_ELEMENT_TYPE_CASTS(MediaControlsImpl, IsMediaControls()); | 261 DEFINE_ELEMENT_TYPE_CASTS(MediaControlsImpl, IsMediaControls()); |
| 260 | 262 |
| 261 } // namespace blink | 263 } // namespace blink |
| 262 | 264 |
| 263 #endif | 265 #endif |
| OLD | NEW |