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 21 matching lines...) Expand all Loading... |
32 #include "MediaControlElements.h" | 32 #include "MediaControlElements.h" |
33 | 33 |
34 #include "CaptionUserPreferences.h" | 34 #include "CaptionUserPreferences.h" |
35 #include "DOMTokenList.h" | 35 #include "DOMTokenList.h" |
36 #include "EventHandler.h" | 36 #include "EventHandler.h" |
37 #include "EventNames.h" | 37 #include "EventNames.h" |
38 #include "EventTarget.h" | 38 #include "EventTarget.h" |
39 #include "ExceptionCodePlaceholder.h" | 39 #include "ExceptionCodePlaceholder.h" |
40 #include "Frame.h" | 40 #include "Frame.h" |
41 #include "HTMLVideoElement.h" | 41 #include "HTMLVideoElement.h" |
42 #include "Language.h" | |
43 #include "LocalizedStrings.h" | |
44 #include "MediaControls.h" | 42 #include "MediaControls.h" |
45 #include "MouseEvent.h" | 43 #include "MouseEvent.h" |
46 #include "Page.h" | 44 #include "Page.h" |
47 #include "PageGroup.h" | 45 #include "PageGroup.h" |
48 #include "RenderLayer.h" | 46 #include "RenderLayer.h" |
49 #include "RenderMediaControlElements.h" | 47 #include "RenderMediaControlElements.h" |
50 #include "RenderSlider.h" | 48 #include "RenderSlider.h" |
51 #include "RenderTheme.h" | 49 #include "RenderTheme.h" |
52 #include "RenderVideo.h" | 50 #include "RenderVideo.h" |
53 #include "RenderView.h" | 51 #include "RenderView.h" |
54 #include "Settings.h" | 52 #include "Settings.h" |
55 #include "TextTrack.h" | 53 #include "TextTrack.h" |
56 #include "TextTrackList.h" | 54 #include "TextTrackList.h" |
| 55 #include "core/platform/Language.h" |
| 56 #include "core/platform/LocalizedStrings.h" |
57 #include "core/platform/graphics/GraphicsContext.h" | 57 #include "core/platform/graphics/GraphicsContext.h" |
58 | 58 |
59 namespace WebCore { | 59 namespace WebCore { |
60 | 60 |
61 using namespace HTMLNames; | 61 using namespace HTMLNames; |
62 | 62 |
63 static const AtomicString& getMediaControlCurrentTimeDisplayElementShadowPseudoI
d(); | 63 static const AtomicString& getMediaControlCurrentTimeDisplayElementShadowPseudoI
d(); |
64 static const AtomicString& getMediaControlTimeRemainingDisplayElementShadowPseud
oId(); | 64 static const AtomicString& getMediaControlTimeRemainingDisplayElementShadowPseud
oId(); |
65 | 65 |
66 static const char* textTracksOffAttrValue = "-1"; // This must match HTMLMediaEl
ement::textTracksOffIndex() | 66 static const char* textTracksOffAttrValue = "-1"; // This must match HTMLMediaEl
ement::textTracksOffIndex() |
(...skipping 976 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1043 } | 1043 } |
1044 | 1044 |
1045 void MediaControlTextTrackContainerElement::textTrackRepresentationBoundsChanged
(const IntRect&) | 1045 void MediaControlTextTrackContainerElement::textTrackRepresentationBoundsChanged
(const IntRect&) |
1046 { | 1046 { |
1047 updateSizes(); | 1047 updateSizes(); |
1048 } | 1048 } |
1049 | 1049 |
1050 // ---------------------------- | 1050 // ---------------------------- |
1051 | 1051 |
1052 } // namespace WebCore | 1052 } // namespace WebCore |
OLD | NEW |