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

Unified Diff: third_party/WebKit/Source/core/animation/CSSTransformOriginInterpolationType.h

Issue 2283783002: Move static methods out of CSSLengthInterpolationType to LengthInterpolationFunctions (Closed)
Patch Set: Fix compile Created 4 years, 3 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/animation/CSSTransformOriginInterpolationType.h
diff --git a/third_party/WebKit/Source/core/animation/CSSTransformOriginInterpolationType.h b/third_party/WebKit/Source/core/animation/CSSTransformOriginInterpolationType.h
index 5e155453f905dba3e085736654757780582db7d9..d54218ca9693d704d7be4c29e0c4f7242b1a9b67 100644
--- a/third_party/WebKit/Source/core/animation/CSSTransformOriginInterpolationType.h
+++ b/third_party/WebKit/Source/core/animation/CSSTransformOriginInterpolationType.h
@@ -5,9 +5,9 @@
#ifndef CSSTransformOriginInterpolationType_h
#define CSSTransformOriginInterpolationType_h
-#include "core/animation/CSSLengthInterpolationType.h"
#include "core/animation/CSSLengthListInterpolationType.h"
#include "core/animation/CSSPositionAxisListInterpolationType.h"
+#include "core/animation/LengthInterpolationFunctions.h"
#include "core/animation/ListInterpolationFunctions.h"
#include "core/css/CSSValueList.h"
@@ -28,7 +28,7 @@ private:
const CSSValue& item = list.item(index);
if (index < 2)
return CSSPositionAxisListInterpolationType::convertPositionAxisCSSValue(item);
- return CSSLengthInterpolationType::maybeConvertCSSValue(item);
+ return LengthInterpolationFunctions::maybeConvertCSSValue(item);
});
}
};

Powered by Google App Engine
This is Rietveld 408576698