| Index: third_party/WebKit/Source/core/inspector/V8InspectorString.h
|
| diff --git a/third_party/WebKit/Source/core/inspector/V8InspectorString.h b/third_party/WebKit/Source/core/inspector/V8InspectorString.h
|
| index 86072d03d80f63b2332325c33ae416368e61ed05..bb2274e9e11f2aa677ec270cbfdfb04d5de713e6 100644
|
| --- a/third_party/WebKit/Source/core/inspector/V8InspectorString.h
|
| +++ b/third_party/WebKit/Source/core/inspector/V8InspectorString.h
|
| @@ -8,6 +8,7 @@
|
| #include "core/CoreExport.h"
|
| #include "platform/Decimal.h"
|
| #include "wtf/Allocator.h"
|
| +#include "wtf/Assertions.h"
|
| #include "wtf/text/StringBuilder.h"
|
| #include "wtf/text/StringHash.h"
|
| #include "wtf/text/StringView.h"
|
| @@ -48,10 +49,9 @@ class CORE_EXPORT StringUtil {
|
| static void builderReserve(StringBuilder& builder, unsigned capacity) {
|
| builder.reserveCapacity(capacity);
|
| }
|
| + static std::unique_ptr<protocol::Value> parseJSON(const String&);
|
| };
|
|
|
| -CORE_EXPORT std::unique_ptr<protocol::Value> parseJSON(const String&);
|
| -
|
| } // namespace protocol
|
|
|
| } // namespace blink
|
|
|