| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2011 Google Inc. All rights reserved. | 3 * Copyright (C) 2011 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 void exitedFullscreen(); | 77 void exitedFullscreen(); |
| 78 | 78 |
| 79 void reportedError(); | 79 void reportedError(); |
| 80 void loadedMetadata(); | 80 void loadedMetadata(); |
| 81 void changedClosedCaptionsVisibility(); | 81 void changedClosedCaptionsVisibility(); |
| 82 | 82 |
| 83 void showVolumeSlider(); | 83 void showVolumeSlider(); |
| 84 void updateTimeDisplay(); | 84 void updateTimeDisplay(); |
| 85 void updateStatusDisplay(); | 85 void updateStatusDisplay(); |
| 86 | 86 |
| 87 void bufferingProgressed(); |
| 88 |
| 87 virtual bool shouldHideControls(); | 89 virtual bool shouldHideControls(); |
| 88 | 90 |
| 89 private: | 91 private: |
| 90 MediaControlRootElementChromium(HTMLMediaElement*); | 92 MediaControlRootElementChromium(HTMLMediaElement*); |
| 91 | 93 |
| 92 virtual void defaultEventHandler(Event*); | 94 virtual void defaultEventHandler(Event*); |
| 93 | 95 |
| 94 virtual const AtomicString& shadowPseudoId() const; | 96 virtual const AtomicString& shadowPseudoId() const; |
| 95 | 97 |
| 96 bool containsRelatedTarget(Event*); | 98 bool containsRelatedTarget(Event*); |
| (...skipping 11 matching lines...) Expand all Loading... |
| 108 | 110 |
| 109 bool m_opaque; | 111 bool m_opaque; |
| 110 bool m_isMouseOverControls; | 112 bool m_isMouseOverControls; |
| 111 }; | 113 }; |
| 112 | 114 |
| 113 } | 115 } |
| 114 | 116 |
| 115 #endif | 117 #endif |
| 116 | 118 |
| 117 #endif | 119 #endif |
| OLD | NEW |