Chromium Code Reviews| Index: Source/core/animation/LengthPropertyFunctions.h |
| diff --git a/Source/core/animation/LengthPropertyFunctions.h b/Source/core/animation/LengthPropertyFunctions.h |
| index d4e9c5e1a7124232cf795a6da9c515799e06f313..7963c8c9ddbd9464cabfaa1619b2e6562f332a03 100644 |
| --- a/Source/core/animation/LengthPropertyFunctions.h |
| +++ b/Source/core/animation/LengthPropertyFunctions.h |
| @@ -17,12 +17,12 @@ class ComputedStyle; |
| class LengthPropertyFunctions { |
| STATIC_ONLY(LengthPropertyFunctions); |
| public: |
| - typedef void (ComputedStyle::*LengthSetter)(const Length&); |
| - |
| static ValueRange valueRange(CSSPropertyID); |
| + static bool hasZoomedLength(CSSPropertyID); |
|
dstockwell
2015/08/31 05:33:40
has -> is? I imagine there's only one length per p
alancutter (OOO until 2018)
2015/08/31 07:15:30
Done.
|
| static bool getPixelsForKeyword(CSSPropertyID, CSSValueID, double& resultPixels); |
| - static bool getLength(CSSPropertyID, const ComputedStyle&, Length& result); |
| static bool getInitialLength(CSSPropertyID, Length& result); |
| + static bool getLength(CSSPropertyID, const ComputedStyle&, Length& result); |
| + static bool setLength(CSSPropertyID, ComputedStyle&, const Length&); |
| }; |
| } // namespace blink |