| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 | 49 |
| 50 void playbackStarted(); | 50 void playbackStarted(); |
| 51 void playbackProgressed(); | 51 void playbackProgressed(); |
| 52 void playbackStopped(); | 52 void playbackStopped(); |
| 53 | 53 |
| 54 void beginScrubbing(); | 54 void beginScrubbing(); |
| 55 void endScrubbing(); | 55 void endScrubbing(); |
| 56 | 56 |
| 57 void updateCurrentTimeDisplay(); | 57 void updateCurrentTimeDisplay(); |
| 58 | 58 |
| 59 void changedMute(); | 59 void updateVolume(); |
| 60 void changedVolume(); | |
| 61 | 60 |
| 62 void changedClosedCaptionsVisibility(); | 61 void changedClosedCaptionsVisibility(); |
| 63 void refreshClosedCaptionsButtonVisibility(); | 62 void refreshClosedCaptionsButtonVisibility(); |
| 64 void closedCaptionTracksChanged(); | 63 void closedCaptionTracksChanged(); |
| 65 | 64 |
| 66 void enteredFullscreen(); | 65 void enteredFullscreen(); |
| 67 void exitedFullscreen(); | 66 void exitedFullscreen(); |
| 68 | 67 |
| 69 void updateTextTrackDisplay(); | 68 void updateTextTrackDisplay(); |
| 70 | 69 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 bool m_isFullscreen : 1; | 120 bool m_isFullscreen : 1; |
| 122 bool m_isMouseOverControls : 1; | 121 bool m_isMouseOverControls : 1; |
| 123 bool m_isPausedForScrubbing : 1; | 122 bool m_isPausedForScrubbing : 1; |
| 124 }; | 123 }; |
| 125 | 124 |
| 126 DEFINE_ELEMENT_TYPE_CASTS(MediaControls, isMediaControls()); | 125 DEFINE_ELEMENT_TYPE_CASTS(MediaControls, isMediaControls()); |
| 127 | 126 |
| 128 } | 127 } |
| 129 | 128 |
| 130 #endif | 129 #endif |
| OLD | NEW |