Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(143)

Unified Diff: Source/WebCore/rendering/style/RenderStyle.h

Issue 13650009: Remove Dashboard support and supporting files. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix compiler error due to misspelling in code "Dashbard" Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/WebCore/rendering/RenderObject.cpp ('k') | Source/WebCore/rendering/style/RenderStyle.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « Source/WebCore/rendering/RenderObject.cpp ('k') | Source/WebCore/rendering/style/RenderStyle.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698