OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. |
3 * Copyright (C) 2010 Google Inc. All rights reserved. | 3 * Copyright (C) 2010 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 are | 6 * modification, are permitted provided that the following conditions are |
7 * met: | 7 * met: |
8 * | 8 * |
9 * * Redistributions of source code must retain the above copyright | 9 * * 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 18 matching lines...) Expand all Loading... |
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
30 */ | 30 */ |
31 | 31 |
32 | 32 |
33 #include "config.h" | 33 #include "config.h" |
34 #include "SliderThumbElement.h" | 34 #include "SliderThumbElement.h" |
35 | 35 |
36 #include "CSSValueKeywords.h" | 36 #include "CSSValueKeywords.h" |
37 #include "ElementShadow.h" | 37 #include "ElementShadow.h" |
38 #include "Event.h" | 38 #include "Event.h" |
| 39 #include "EventHandler.h" |
39 #include "Frame.h" | 40 #include "Frame.h" |
40 #include "HTMLInputElement.h" | 41 #include "HTMLInputElement.h" |
41 #include "HTMLParserIdioms.h" | 42 #include "HTMLParserIdioms.h" |
42 #include "MouseEvent.h" | 43 #include "MouseEvent.h" |
43 #include "RenderFlexibleBox.h" | 44 #include "RenderFlexibleBox.h" |
44 #include "RenderSlider.h" | 45 #include "RenderSlider.h" |
45 #include "RenderTheme.h" | 46 #include "RenderTheme.h" |
46 #include "ShadowRoot.h" | 47 #include "ShadowRoot.h" |
47 #include "StepRange.h" | 48 #include "StepRange.h" |
48 #include <wtf/MathExtras.h> | 49 #include <wtf/MathExtras.h> |
(...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
477 case MediaVolumeSliderThumbPart: | 478 case MediaVolumeSliderThumbPart: |
478 case MediaFullScreenVolumeSliderPart: | 479 case MediaFullScreenVolumeSliderPart: |
479 case MediaFullScreenVolumeSliderThumbPart: | 480 case MediaFullScreenVolumeSliderThumbPart: |
480 return mediaSliderContainer; | 481 return mediaSliderContainer; |
481 default: | 482 default: |
482 return sliderContainer; | 483 return sliderContainer; |
483 } | 484 } |
484 } | 485 } |
485 | 486 |
486 } | 487 } |
OLD | NEW |