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

Unified Diff: Source/core/svg/SVGColor.h

Issue 26145005: DEFINE_CSS_VALUE_TYPE_CASTS starts to use DEFINE_TYPE_CASTS (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 2 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
Index: Source/core/svg/SVGColor.h
diff --git a/Source/core/svg/SVGColor.h b/Source/core/svg/SVGColor.h
index 42875ed651673d783af09466b7e4140f94b1be03..8a7591f09733d2840a0f806de9079c8cd3b87eff 100644
--- a/Source/core/svg/SVGColor.h
+++ b/Source/core/svg/SVGColor.h
@@ -94,7 +94,7 @@ private:
};
// This will catch anyone doing an unnecessary cast.
-SVGColor* toSVGColor(const SVGColor*);
+void toSVGColor(const SVGColor*);
tkent 2013/10/16 21:54:11 This change doesn't look related to this CL.
gyuyoung-inactive 2013/10/17 00:03:18 If you think so, I will fix this in other CL.
inline SVGColor* toSVGColor(CSSValue* value)
{
@@ -108,7 +108,6 @@ inline const SVGColor* toSVGColor(const CSSValue* value)
return static_cast<const SVGColor*>(value);
}
-
} // namespace WebCore
#endif // SVGColor_h

Powered by Google App Engine
This is Rietveld 408576698