Chromium Code Reviews

Unified Diff: Source/core/css/CSSTransformValue.cpp

Issue 717933002: Clean up after getPropertyCSSValue (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase / fix debug compile? Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « Source/core/css/CSSTransformValue.h ('k') | Source/core/css/CSSValue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSTransformValue.cpp
diff --git a/Source/core/css/CSSTransformValue.cpp b/Source/core/css/CSSTransformValue.cpp
index a917f164c49ad24808f95c7d0947443574b99eb1..855a181ed79154c8ebf111a933f04de1059a38fa 100644
--- a/Source/core/css/CSSTransformValue.cpp
+++ b/Source/core/css/CSSTransformValue.cpp
@@ -76,15 +76,4 @@ String CSSTransformValue::customCSSText() const
return transformValueToCssString(m_type, CSSValueList::customCSSText());
}
-CSSTransformValue::CSSTransformValue(const CSSTransformValue& cloneFrom)
- : CSSValueList(cloneFrom)
- , m_type(cloneFrom.m_type)
-{
-}
-
-PassRefPtrWillBeRawPtr<CSSTransformValue> CSSTransformValue::cloneForCSSOM() const
-{
- return adoptRefWillBeNoop(new CSSTransformValue(*this));
-}
-
}
« no previous file with comments | « Source/core/css/CSSTransformValue.h ('k') | Source/core/css/CSSValue.h » ('j') | no next file with comments »

Powered by Google App Engine