| 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 26 matching lines...) Expand all Loading... |
| 37 #include "core/events/MouseEvent.h" | 37 #include "core/events/MouseEvent.h" |
| 38 #include "core/frame/LocalFrame.h" | 38 #include "core/frame/LocalFrame.h" |
| 39 #include "core/html/HTMLLabelElement.h" | 39 #include "core/html/HTMLLabelElement.h" |
| 40 #include "core/html/HTMLMediaSource.h" | 40 #include "core/html/HTMLMediaSource.h" |
| 41 #include "core/html/HTMLSpanElement.h" | 41 #include "core/html/HTMLSpanElement.h" |
| 42 #include "core/html/HTMLVideoElement.h" | 42 #include "core/html/HTMLVideoElement.h" |
| 43 #include "core/html/TimeRanges.h" | 43 #include "core/html/TimeRanges.h" |
| 44 #include "core/html/shadow/MediaControls.h" | 44 #include "core/html/shadow/MediaControls.h" |
| 45 #include "core/html/track/TextTrackList.h" | 45 #include "core/html/track/TextTrackList.h" |
| 46 #include "core/input/EventHandler.h" | 46 #include "core/input/EventHandler.h" |
| 47 #include "core/layout/LayoutTheme.h" | |
| 48 #include "core/layout/LayoutVideo.h" | |
| 49 #include "core/layout/api/LayoutSliderItem.h" | 47 #include "core/layout/api/LayoutSliderItem.h" |
| 50 #include "platform/EventDispatchForbiddenScope.h" | 48 #include "platform/EventDispatchForbiddenScope.h" |
| 51 #include "platform/Histogram.h" | 49 #include "platform/Histogram.h" |
| 52 #include "platform/RuntimeEnabledFeatures.h" | 50 #include "platform/RuntimeEnabledFeatures.h" |
| 53 #include "platform/text/PlatformLocale.h" | 51 #include "platform/text/PlatformLocale.h" |
| 54 #include "public/platform/Platform.h" | 52 #include "public/platform/Platform.h" |
| 55 #include "public/platform/UserMetricsAction.h" | 53 #include "public/platform/UserMetricsAction.h" |
| 56 | 54 |
| 57 namespace blink { | 55 namespace blink { |
| 58 | 56 |
| (...skipping 795 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 854 } | 852 } |
| 855 | 853 |
| 856 MediaControlCurrentTimeDisplayElement* MediaControlCurrentTimeDisplayElement::cr
eate(MediaControls& mediaControls) | 854 MediaControlCurrentTimeDisplayElement* MediaControlCurrentTimeDisplayElement::cr
eate(MediaControls& mediaControls) |
| 857 { | 855 { |
| 858 MediaControlCurrentTimeDisplayElement* element = new MediaControlCurrentTime
DisplayElement(mediaControls); | 856 MediaControlCurrentTimeDisplayElement* element = new MediaControlCurrentTime
DisplayElement(mediaControls); |
| 859 element->setShadowPseudoId(AtomicString("-webkit-media-controls-current-time
-display")); | 857 element->setShadowPseudoId(AtomicString("-webkit-media-controls-current-time
-display")); |
| 860 return element; | 858 return element; |
| 861 } | 859 } |
| 862 | 860 |
| 863 } // namespace blink | 861 } // namespace blink |
| OLD | NEW |