| Index: third_party/WebKit/Source/core/inspector/ProtocolParserTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/inspector/ProtocolParserTest.cpp b/third_party/WebKit/Source/core/inspector/ProtocolParserTest.cpp
|
| index ee313460d33f3e665faabd0e088895adb9174007..e6d6e665d70fc2bce3cfb60988d8c33499798c04 100644
|
| --- a/third_party/WebKit/Source/core/inspector/ProtocolParserTest.cpp
|
| +++ b/third_party/WebKit/Source/core/inspector/ProtocolParserTest.cpp
|
| @@ -8,11 +8,14 @@
|
|
|
| namespace blink {
|
|
|
| -using protocol::parseJSON;
|
| using protocol::DictionaryValue;
|
| using protocol::ListValue;
|
| using protocol::Value;
|
|
|
| +static std::unique_ptr<protocol::Value> parseJSON(const String& string) {
|
| + return protocol::StringUtil::parseJSON(string);
|
| +}
|
| +
|
| TEST(ProtocolParserTest, Reading) {
|
| Value* tmpValue;
|
| std::unique_ptr<Value> root;
|
|
|