| 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 22 matching lines...) Expand all Loading... |
| 33 | 33 |
| 34 #include "core/events/Event.h" | 34 #include "core/events/Event.h" |
| 35 #include "core/events/MouseEvent.h" | 35 #include "core/events/MouseEvent.h" |
| 36 #include "core/dom/shadow/ShadowRoot.h" | 36 #include "core/dom/shadow/ShadowRoot.h" |
| 37 #include "core/frame/LocalFrame.h" | 37 #include "core/frame/LocalFrame.h" |
| 38 #include "core/html/HTMLInputElement.h" | 38 #include "core/html/HTMLInputElement.h" |
| 39 #include "core/html/forms/StepRange.h" | 39 #include "core/html/forms/StepRange.h" |
| 40 #include "core/html/parser/HTMLParserIdioms.h" | 40 #include "core/html/parser/HTMLParserIdioms.h" |
| 41 #include "core/html/shadow/ShadowElementNames.h" | 41 #include "core/html/shadow/ShadowElementNames.h" |
| 42 #include "core/input/EventHandler.h" | 42 #include "core/input/EventHandler.h" |
| 43 #include "core/layout/LayoutSlider.h" | |
| 44 #include "core/layout/LayoutSliderContainer.h" | 43 #include "core/layout/LayoutSliderContainer.h" |
| 45 #include "core/layout/LayoutSliderThumb.h" | 44 #include "core/layout/LayoutSliderThumb.h" |
| 46 #include "core/layout/LayoutTheme.h" | 45 #include "core/layout/LayoutTheme.h" |
| 47 | 46 |
| 48 namespace blink { | 47 namespace blink { |
| 49 | 48 |
| 50 using namespace HTMLNames; | 49 using namespace HTMLNames; |
| 51 | 50 |
| 52 inline static bool hasVerticalAppearance(HTMLInputElement* input) | 51 inline static bool hasVerticalAppearance(HTMLInputElement* input) |
| 53 { | 52 { |
| (...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 case MediaVolumeSliderThumbPart: | 323 case MediaVolumeSliderThumbPart: |
| 325 case MediaFullScreenVolumeSliderPart: | 324 case MediaFullScreenVolumeSliderPart: |
| 326 case MediaFullScreenVolumeSliderThumbPart: | 325 case MediaFullScreenVolumeSliderThumbPart: |
| 327 return mediaSliderContainer; | 326 return mediaSliderContainer; |
| 328 default: | 327 default: |
| 329 return sliderContainer; | 328 return sliderContainer; |
| 330 } | 329 } |
| 331 } | 330 } |
| 332 | 331 |
| 333 } // namespace blink | 332 } // namespace blink |
| OLD | NEW |