| Index: third_party/WebKit/Source/platform/v8_inspector/V8Console.cpp
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8Console.cpp b/third_party/WebKit/Source/platform/v8_inspector/V8Console.cpp
|
| index 1bd738a8660aea2f82447ff42612ad721e5d3b69..491549688d90daa4119dc1c2571e326027b423d4 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8Console.cpp
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8Console.cpp
|
| @@ -439,7 +439,7 @@ static void timeEndFunction(const v8::FunctionCallbackInfo<v8::Value>& info, boo
|
| if (!helper.privateMap("V8Console#timeMap").ToLocal(&timeMap))
|
| return;
|
| double elapsed = client->currentTimeMS() - helper.getDoubleFromMap(timeMap, protocolTitle, 0.0);
|
| - String16 message = protocolTitle + ": " + String16::fromDoubleFixedPrecision(elapsed, 3) + "ms";
|
| + String16 message = protocolTitle + ": " + String16::fromDoublePrecision3(elapsed) + "ms";
|
| helper.reportCallWithArgument(ConsoleAPIType::kTimeEnd, message);
|
| }
|
| }
|
|
|