| 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 e76e9775fb9ebc60e76deddfaeda0fa4a9273458..de9495b85e114d2990fbad5730eeb678767df00d 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
|
|
|