OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. |
3 * | 3 * |
4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
8 * | 8 * |
9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
12 * Library General Public License for more details. | 12 * Library General Public License for more details. |
13 * | 13 * |
14 * You should have received a copy of the GNU Library General Public License | 14 * You should have received a copy of the GNU Library General Public License |
15 * along with this library; see the file COPYING.LIB. If not, write to | 15 * along with this library; see the file COPYING.LIB. If not, write to |
16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
17 * Boston, MA 02110-1301, USA. | 17 * Boston, MA 02110-1301, USA. |
18 * | 18 * |
19 */ | 19 */ |
20 | 20 |
21 #include "config.h" | 21 #include "config.h" |
22 #include "core/rendering/RenderSlider.h" | 22 #include "core/rendering/RenderSlider.h" |
23 | 23 |
24 #include "CSSPropertyNames.h" | 24 #include "CSSPropertyNames.h" |
25 #include "Document.h" | |
26 #include "Event.h" | |
27 #include "EventNames.h" | |
28 #include "HTMLInputElement.h" | 25 #include "HTMLInputElement.h" |
29 #include "HTMLNames.h" | 26 #include "HTMLNames.h" |
30 #include "HTMLParserIdioms.h" | 27 #include "HTMLParserIdioms.h" |
31 #include "MediaControlElements.h" | 28 #include "MediaControlElements.h" |
32 #include "MouseEvent.h" | |
33 #include "Node.h" | |
34 #include "ShadowRoot.h" | |
35 #include "SliderThumbElement.h" | 29 #include "SliderThumbElement.h" |
36 #include "StepRange.h" | 30 #include "StepRange.h" |
37 #include "core/css/StyleResolver.h" | 31 #include "core/css/StyleResolver.h" |
| 32 #include "core/dom/Document.h" |
| 33 #include "core/dom/Event.h" |
| 34 #include "core/dom/EventNames.h" |
| 35 #include "core/dom/MouseEvent.h" |
| 36 #include "core/dom/Node.h" |
| 37 #include "core/dom/ShadowRoot.h" |
38 #include "core/page/EventHandler.h" | 38 #include "core/page/EventHandler.h" |
39 #include "core/page/Frame.h" | 39 #include "core/page/Frame.h" |
40 #include "core/rendering/RenderLayer.h" | 40 #include "core/rendering/RenderLayer.h" |
41 #include "core/rendering/RenderTheme.h" | 41 #include "core/rendering/RenderTheme.h" |
42 #include "core/rendering/RenderView.h" | 42 #include "core/rendering/RenderView.h" |
43 #include <wtf/MathExtras.h> | 43 #include <wtf/MathExtras.h> |
44 | 44 |
45 using std::min; | 45 using std::min; |
46 | 46 |
47 namespace WebCore { | 47 namespace WebCore { |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 | 115 |
116 RenderFlexibleBox::layout(); | 116 RenderFlexibleBox::layout(); |
117 } | 117 } |
118 | 118 |
119 bool RenderSlider::inDragMode() const | 119 bool RenderSlider::inDragMode() const |
120 { | 120 { |
121 return sliderThumbElementOf(node())->active(); | 121 return sliderThumbElementOf(node())->active(); |
122 } | 122 } |
123 | 123 |
124 } // namespace WebCore | 124 } // namespace WebCore |
OLD | NEW |