OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2011 Apple Inc. All rights reserved. |
3 * 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) | 3 * 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) |
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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 #include "HTMLSelectElement.h" | 45 #include "HTMLSelectElement.h" |
46 #include "HitTestResult.h" | 46 #include "HitTestResult.h" |
47 #include "NodeRenderStyle.h" | 47 #include "NodeRenderStyle.h" |
48 #include "Page.h" | 48 #include "Page.h" |
49 #include "PaintInfo.h" | 49 #include "PaintInfo.h" |
50 #include "RenderLayer.h" | 50 #include "RenderLayer.h" |
51 #include "RenderScrollbar.h" | 51 #include "RenderScrollbar.h" |
52 #include "RenderText.h" | 52 #include "RenderText.h" |
53 #include "RenderTheme.h" | 53 #include "RenderTheme.h" |
54 #include "RenderView.h" | 54 #include "RenderView.h" |
55 #include "Scrollbar.h" | |
56 #include "ScrollbarTheme.h" | |
57 #include "SpatialNavigation.h" | 55 #include "SpatialNavigation.h" |
58 #include "StyleResolver.h" | 56 #include "StyleResolver.h" |
59 #include "core/accessibility/AXObjectCache.h" | 57 #include "core/accessibility/AXObjectCache.h" |
| 58 #include "core/platform/Scrollbar.h" |
| 59 #include "core/platform/ScrollbarTheme.h" |
60 #include "core/platform/graphics/FontCache.h" | 60 #include "core/platform/graphics/FontCache.h" |
61 #include "core/platform/graphics/GraphicsContext.h" | 61 #include "core/platform/graphics/GraphicsContext.h" |
62 | 62 |
63 using namespace std; | 63 using namespace std; |
64 | 64 |
65 namespace WebCore { | 65 namespace WebCore { |
66 | 66 |
67 using namespace HTMLNames; | 67 using namespace HTMLNames; |
68 | 68 |
69 const int rowSpacing = 1; | 69 const int rowSpacing = 1; |
(...skipping 809 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
879 | 879 |
880 if (m_vBar) | 880 if (m_vBar) |
881 m_vBar->styleChanged(); | 881 m_vBar->styleChanged(); |
882 | 882 |
883 // Force an update since we know the scrollbars have changed things. | 883 // Force an update since we know the scrollbars have changed things. |
884 if (document()->hasAnnotatedRegions()) | 884 if (document()->hasAnnotatedRegions()) |
885 document()->setAnnotatedRegionsDirty(true); | 885 document()->setAnnotatedRegionsDirty(true); |
886 } | 886 } |
887 | 887 |
888 } // namespace WebCore | 888 } // namespace WebCore |
OLD | NEW |