Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(575)

Unified Diff: third_party/WebKit/Source/core/inspector/ProtocolParserTest.cpp

Issue 2522583002: Roll third_party/inspector_protocol to 4ad35c45aca9834b67ec2cb152c816ea1b7ceb48 (Closed)
Patch Set: updated README.chromium Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 e6d6e665d70fc2bce3cfb60988d8c33499798c04..1f8c2e8128b387b61bad81dc3c2564583e1d60cd 100644
--- a/third_party/WebKit/Source/core/inspector/ProtocolParserTest.cpp
+++ b/third_party/WebKit/Source/core/inspector/ProtocolParserTest.cpp
@@ -332,7 +332,7 @@ TEST(ProtocolParserTest, Reading) {
" \"S\":\"str\"\n"
"}\n");
ASSERT_TRUE(root2.get());
- EXPECT_EQ(root->toJSONString(), root2->toJSONString());
+ EXPECT_EQ(root->serialize(), root2->serialize());
root2 = parseJSON(
"{\r\n"
@@ -341,7 +341,7 @@ TEST(ProtocolParserTest, Reading) {
" \"S\":\"str\"\r\n"
"}\r\n");
ASSERT_TRUE(root2.get());
- EXPECT_EQ(root->toJSONString(), root2->toJSONString());
+ EXPECT_EQ(root->serialize(), root2->serialize());
// Test nesting
root = parseJSON("{\"inner\":{\"array\":[true]},\"false\":false,\"d\":{}}");

Powered by Google App Engine
This is Rietveld 408576698