| 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 19 matching lines...) Expand all Loading... |
| 30 */ | 30 */ |
| 31 | 31 |
| 32 | 32 |
| 33 #include "config.h" | 33 #include "config.h" |
| 34 #include "core/html/shadow/SliderThumbElement.h" | 34 #include "core/html/shadow/SliderThumbElement.h" |
| 35 | 35 |
| 36 #include "core/dom/Event.h" | 36 #include "core/dom/Event.h" |
| 37 #include "core/dom/MouseEvent.h" | 37 #include "core/dom/MouseEvent.h" |
| 38 #include "core/dom/shadow/ShadowRoot.h" | 38 #include "core/dom/shadow/ShadowRoot.h" |
| 39 #include "core/html/HTMLInputElement.h" | 39 #include "core/html/HTMLInputElement.h" |
| 40 #include "core/html/StepRange.h" | 40 #include "core/html/forms/StepRange.h" |
| 41 #include "core/html/parser/HTMLParserIdioms.h" | 41 #include "core/html/parser/HTMLParserIdioms.h" |
| 42 #include "core/html/shadow/ShadowElementNames.h" | 42 #include "core/html/shadow/ShadowElementNames.h" |
| 43 #include "core/page/EventHandler.h" | 43 #include "core/page/EventHandler.h" |
| 44 #include "core/page/Frame.h" | 44 #include "core/page/Frame.h" |
| 45 #include "core/rendering/RenderFlexibleBox.h" | 45 #include "core/rendering/RenderFlexibleBox.h" |
| 46 #include "core/rendering/RenderSlider.h" | 46 #include "core/rendering/RenderSlider.h" |
| 47 #include "core/rendering/RenderTheme.h" | 47 #include "core/rendering/RenderTheme.h" |
| 48 | 48 |
| 49 using namespace std; | 49 using namespace std; |
| 50 | 50 |
| (...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 466 case MediaVolumeSliderThumbPart: | 466 case MediaVolumeSliderThumbPart: |
| 467 case MediaFullScreenVolumeSliderPart: | 467 case MediaFullScreenVolumeSliderPart: |
| 468 case MediaFullScreenVolumeSliderThumbPart: | 468 case MediaFullScreenVolumeSliderThumbPart: |
| 469 return mediaSliderContainer; | 469 return mediaSliderContainer; |
| 470 default: | 470 default: |
| 471 return sliderContainer; | 471 return sliderContainer; |
| 472 } | 472 } |
| 473 } | 473 } |
| 474 | 474 |
| 475 } | 475 } |
| OLD | NEW |