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 55d0c4f01761e72d66a70c1af9fa0c828deff19e..8fecc2172a6e476d802aab172041d01413092d93 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); |
} |
} |