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

Unified Diff: Source/WebCore/html/canvas/CanvasGradient.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/html/HTMLImageLoader.cpp ('k') | Source/WebCore/html/canvas/CanvasGradient.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/html/canvas/CanvasGradient.h
diff --git a/Source/WebCore/html/canvas/CanvasGradient.h b/Source/WebCore/html/canvas/CanvasGradient.h
index 1ff9c6559254addb489cf084d8006e4fdab9b539..7cc167b768d61ba0cfb1b98a4ea9eeb62c215b8c 100644
--- a/Source/WebCore/html/canvas/CanvasGradient.h
+++ b/Source/WebCore/html/canvas/CanvasGradient.h
@@ -52,19 +52,11 @@ namespace WebCore {
void addColorStop(float value, const String& color, ExceptionCode&);
void getColor(float value, float* r, float* g, float* b, float* a) const { m_gradient->getColor(value, r, g, b, a); }
-
-#if ENABLE(DASHBOARD_SUPPORT)
- void setDashboardCompatibilityMode() { m_dashbardCompatibilityMode = true; }
-#endif
-
private:
CanvasGradient(const FloatPoint& p0, const FloatPoint& p1);
CanvasGradient(const FloatPoint& p0, float r0, const FloatPoint& p1, float r1);
RefPtr<Gradient> m_gradient;
-#if ENABLE(DASHBOARD_SUPPORT)
- bool m_dashbardCompatibilityMode;
-#endif
};
} //namespace
« no previous file with comments | « Source/WebCore/html/HTMLImageLoader.cpp ('k') | Source/WebCore/html/canvas/CanvasGradient.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698