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

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

Issue 1689383002: Add additive animation support for CSS property background-size (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@_transformOriginInterpolationType
Patch Set: Rebased Created 4 years, 10 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/LengthListPropertyFunctions.h
diff --git a/third_party/WebKit/Source/core/animation/LengthListPropertyFunctions.h b/third_party/WebKit/Source/core/animation/LengthListPropertyFunctions.h
index b15720dd112b0ab346f46baa85605dec2053c778..e50b59f4fc7481b4e760193d90638abc8a6bf171 100644
--- a/third_party/WebKit/Source/core/animation/LengthListPropertyFunctions.h
+++ b/third_party/WebKit/Source/core/animation/LengthListPropertyFunctions.h
@@ -17,8 +17,8 @@ class LengthListPropertyFunctions {
STATIC_ONLY(LengthListPropertyFunctions);
public:
static ValueRange valueRange(CSSPropertyID);
- static Vector<Length> getInitialLengthList(CSSPropertyID);
- static Vector<Length> getLengthList(CSSPropertyID, const ComputedStyle&);
+ static bool getInitialLengthList(CSSPropertyID, Vector<Length>& result);
+ static bool getLengthList(CSSPropertyID, const ComputedStyle&, Vector<Length>& result);
static void setLengthList(CSSPropertyID, ComputedStyle&, Vector<Length>&& lengthList);
};

Powered by Google App Engine
This is Rietveld 408576698