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

Unified Diff: third_party/WebKit/Source/core/css/CSSPrimitiveValue.h

Issue 2797973002: Removing duplicate functions and symbol names in core/css (Closed)
Patch Set: Removed unnecessary include Created 3 years, 8 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: third_party/WebKit/Source/core/css/CSSPrimitiveValue.h
diff --git a/third_party/WebKit/Source/core/css/CSSPrimitiveValue.h b/third_party/WebKit/Source/core/css/CSSPrimitiveValue.h
index 740de4853716e003103065f2aa8baff19418ea55..a29487de259cfcc64f70b0f32599760a6c3fe218 100644
--- a/third_party/WebKit/Source/core/css/CSSPrimitiveValue.h
+++ b/third_party/WebKit/Source/core/css/CSSPrimitiveValue.h
@@ -321,6 +321,24 @@ using CSSLengthArray = CSSPrimitiveValue::CSSLengthArray;
DEFINE_CSS_VALUE_TYPE_CASTS(CSSPrimitiveValue, isPrimitiveValue());
+template <>
+int CSSPrimitiveValue::computeLength(const CSSToLengthConversionData&) const;
+
+template <>
+Length CSSPrimitiveValue::computeLength(const CSSToLengthConversionData&) const;
+
+template <>
+unsigned CSSPrimitiveValue::computeLength(
+ const CSSToLengthConversionData&) const;
+
+template <>
+short CSSPrimitiveValue::computeLength(const CSSToLengthConversionData&) const;
+
+template <>
+float CSSPrimitiveValue::computeLength(const CSSToLengthConversionData&) const;
+
+template <>
+double CSSPrimitiveValue::computeLength(const CSSToLengthConversionData&) const;
} // namespace blink
#endif // CSSPrimitiveValue_h

Powered by Google App Engine
This is Rietveld 408576698