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 16 matching lines...) Expand all Loading... |
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
28 */ | 28 */ |
29 | 29 |
30 #include "config.h" | 30 #include "config.h" |
31 | 31 |
32 #if ENABLE(VIDEO) | 32 #if ENABLE(VIDEO) |
33 #include "MediaControlElements.h" | 33 #include "MediaControlElements.h" |
34 | 34 |
35 #include "CaptionUserPreferences.h" | 35 #include "CaptionUserPreferences.h" |
36 #include "DOMTokenList.h" | 36 #include "DOMTokenList.h" |
| 37 #include "EventHandler.h" |
37 #include "EventNames.h" | 38 #include "EventNames.h" |
38 #include "EventTarget.h" | 39 #include "EventTarget.h" |
39 #include "ExceptionCodePlaceholder.h" | 40 #include "ExceptionCodePlaceholder.h" |
40 #include "Frame.h" | 41 #include "Frame.h" |
41 #include "GraphicsContext.h" | 42 #include "GraphicsContext.h" |
42 #include "HTMLVideoElement.h" | 43 #include "HTMLVideoElement.h" |
43 #include "Language.h" | 44 #include "Language.h" |
44 #include "LocalizedStrings.h" | 45 #include "LocalizedStrings.h" |
45 #include "MediaControls.h" | 46 #include "MediaControls.h" |
46 #include "MouseEvent.h" | 47 #include "MouseEvent.h" |
(...skipping 998 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1045 void MediaControlTextTrackContainerElement::textTrackRepresentationBoundsChanged
(const IntRect&) | 1046 void MediaControlTextTrackContainerElement::textTrackRepresentationBoundsChanged
(const IntRect&) |
1046 { | 1047 { |
1047 updateSizes(); | 1048 updateSizes(); |
1048 } | 1049 } |
1049 | 1050 |
1050 // ---------------------------- | 1051 // ---------------------------- |
1051 | 1052 |
1052 } // namespace WebCore | 1053 } // namespace WebCore |
1053 | 1054 |
1054 #endif // ENABLE(VIDEO) | 1055 #endif // ENABLE(VIDEO) |
OLD | NEW |