| Index: third_party/WebKit/Source/platform/DecimalTest.cpp
|
| diff --git a/third_party/WebKit/Source/platform/DecimalTest.cpp b/third_party/WebKit/Source/platform/DecimalTest.cpp
|
| index 886ecc6eba3e3db3bf4bc3f9230ff2b1b2861716..551a2812a017905ccb0d66baddc179ade4bdfbde 100644
|
| --- a/third_party/WebKit/Source/platform/DecimalTest.cpp
|
| +++ b/third_party/WebKit/Source/platform/DecimalTest.cpp
|
| @@ -37,17 +37,7 @@
|
|
|
| namespace blink {
|
|
|
| -std::ostream& operator<<(std::ostream& os, const Decimal& decimal)
|
| -{
|
| - Decimal::EncodedData data = decimal.value();
|
| - return os
|
| - << "encode(" << String::number(data.coefficient()).ascii().data()
|
| - << ", " << String::number(data.exponent()).ascii().data()
|
| - << ", " << (data.getSign() == Decimal::Negative ? "Negative" : "Positive")
|
| - << ")=" << decimal.toString().ascii().data();
|
| -}
|
| -
|
| -// Simulate WebCore/html/StepRange
|
| +// Simulate core/html/forms/StepRange
|
| class DecimalStepRange {
|
| public:
|
| Decimal maximum;
|
|
|