| Index: Source/WebCore/rendering/style/RenderStyle.h | 
| diff --git a/Source/WebCore/rendering/style/RenderStyle.h b/Source/WebCore/rendering/style/RenderStyle.h | 
| index 96b7932b3059de4a15d57aaecb90cae1b3798af3..e81316028358ecf9abdc6264aa774e590679af33 100644 | 
| --- a/Source/WebCore/rendering/style/RenderStyle.h | 
| +++ b/Source/WebCore/rendering/style/RenderStyle.h | 
| @@ -77,10 +77,6 @@ | 
| #include "StyleFilterData.h" | 
| #endif | 
|  | 
| -#if ENABLE(DASHBOARD_SUPPORT) | 
| -#include "StyleDashboardRegion.h" | 
| -#endif | 
| - | 
| #if ENABLE(SVG) | 
| #include "SVGPaint.h" | 
| #include "SVGRenderStyle.h" | 
| @@ -1012,25 +1008,6 @@ public: | 
| void setMinHeight(Length v) { SET_VAR(m_box, m_minHeight, v); } | 
| void setMaxHeight(Length v) { SET_VAR(m_box, m_maxHeight, v); } | 
|  | 
| -#if ENABLE(DASHBOARD_SUPPORT) | 
| -    Vector<StyleDashboardRegion> dashboardRegions() const { return rareNonInheritedData->m_dashboardRegions; } | 
| -    void setDashboardRegions(Vector<StyleDashboardRegion> regions) { SET_VAR(rareNonInheritedData, m_dashboardRegions, regions); } | 
| - | 
| -    void setDashboardRegion(int type, const String& label, Length t, Length r, Length b, Length l, bool append) | 
| -    { | 
| -        StyleDashboardRegion region; | 
| -        region.label = label; | 
| -        region.offset.m_top = t; | 
| -        region.offset.m_right = r; | 
| -        region.offset.m_bottom = b; | 
| -        region.offset.m_left = l; | 
| -        region.type = type; | 
| -        if (!append) | 
| -            rareNonInheritedData.access()->m_dashboardRegions.clear(); | 
| -        rareNonInheritedData.access()->m_dashboardRegions.append(region); | 
| -    } | 
| -#endif | 
| - | 
| #if ENABLE(DRAGGABLE_REGION) | 
| DraggableRegionMode getDraggableRegionMode() const { return rareNonInheritedData->m_draggableRegionMode; } | 
| void setDraggableRegionMode(DraggableRegionMode v) { SET_VAR(rareNonInheritedData, m_draggableRegionMode, v); } | 
| @@ -1749,10 +1726,6 @@ public: | 
| #if ENABLE(ACCELERATED_OVERFLOW_SCROLLING) | 
| static bool initialUseTouchOverflowScrolling() { return false; } | 
| #endif | 
| -#if ENABLE(DASHBOARD_SUPPORT) | 
| -    static const Vector<StyleDashboardRegion>& initialDashboardRegions(); | 
| -    static const Vector<StyleDashboardRegion>& noneDashboardRegions(); | 
| -#endif | 
| #if ENABLE(CSS_FILTERS) | 
| static const FilterOperations& initialFilter() { DEFINE_STATIC_LOCAL(FilterOperations, ops, ()); return ops; } | 
| #endif | 
|  |