Chromium Code Reviews| Index: Source/core/svg/animation/SMILTime.cpp |
| diff --git a/Source/core/svg/animation/SMILTime.cpp b/Source/core/svg/animation/SMILTime.cpp |
| index d83230e963ba236a2d23d7529cafcefee6563c04..7abef296001dca9191d29faf4697b6411346878d 100644 |
| --- a/Source/core/svg/animation/SMILTime.cpp |
| +++ b/Source/core/svg/animation/SMILTime.cpp |
| @@ -31,10 +31,6 @@ |
| using namespace blink; |
| -const double SMILTime::unresolvedValue = DBL_MAX; |
| -// Just a big value smaller than DBL_MAX. Our times are relative to 0, we don't really need the full range. |
| -const double SMILTime::indefiniteValue = FLT_MAX; |
| - |
| SMILTime blink::operator+(const SMILTime& a, const SMILTime& b) |
| { |
| if (a.isUnresolved() || b.isUnresolved()) |
|
fs
2014/08/19 21:49:43
Note: With this new representation, this should no
|