Index: Source/core/css/CSSGradientValue.h |
diff --git a/Source/core/css/CSSGradientValue.h b/Source/core/css/CSSGradientValue.h |
index 5c3c631d507cb48cc1ca277edb8ae8a3eaf83cd8..2eed10b981fca8325909b1e00bbb968bf649d65a 100644 |
--- a/Source/core/css/CSSGradientValue.h |
+++ b/Source/core/css/CSSGradientValue.h |
@@ -164,7 +164,7 @@ private: |
{ |
} |
- CSSLinearGradientValue(const CSSLinearGradientValue& other) |
+ explicit CSSLinearGradientValue(const CSSLinearGradientValue& other) |
: CSSGradientValue(other, LinearGradientClass, other.gradientType()) |
, m_angle(other.m_angle) |
{ |
@@ -207,7 +207,7 @@ private: |
{ |
} |
- CSSRadialGradientValue(const CSSRadialGradientValue& other) |
+ explicit CSSRadialGradientValue(const CSSRadialGradientValue& other) |
: CSSGradientValue(other, RadialGradientClass, other.gradientType()) |
, m_firstRadius(other.m_firstRadius) |
, m_secondRadius(other.m_secondRadius) |