| Index: third_party/WebKit/Source/platform/inspector_protocol/String16STL.h
|
| diff --git a/third_party/WebKit/Source/platform/inspector_protocol/String16STL.h b/third_party/WebKit/Source/platform/inspector_protocol/String16STL.h
|
| index a3e6d215a964b23e129b2efb8ebad4ede290b1d4..7b185a26b72504f498d1d00bd0b0bc5c78601bfb 100644
|
| --- a/third_party/WebKit/Source/platform/inspector_protocol/String16STL.h
|
| +++ b/third_party/WebKit/Source/platform/inspector_protocol/String16STL.h
|
| @@ -173,6 +173,11 @@ public:
|
| m_impl = m_impl + String16::number(i).impl();
|
| }
|
|
|
| + void appendNumber(double d)
|
| + {
|
| + m_impl = m_impl + String16::fromDoubleFixedPrecision(d, 6).impl();
|
| + }
|
| +
|
| void append(const UChar* c, size_t length)
|
| {
|
| // presubmit: allow wstring
|
|
|