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

Unified Diff: net/spdy/spdy_log_util_unittest.cc

Issue 2801603003: Add SpdyString alias for std::string in net/spdy. (Closed)
Patch Set: Created 3 years, 8 months 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
« no previous file with comments | « net/spdy/spdy_log_util.cc ('k') | net/spdy/spdy_network_transaction_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_log_util_unittest.cc
diff --git a/net/spdy/spdy_log_util_unittest.cc b/net/spdy/spdy_log_util_unittest.cc
index 40ac1c916efb90ad9e543c68dea1a48f68911319..7c1f6d7d1611c993c8906e8e82cbf34141b807fa 100644
--- a/net/spdy/spdy_log_util_unittest.cc
+++ b/net/spdy/spdy_log_util_unittest.cc
@@ -27,7 +27,7 @@ TEST(SpdyLogUtilTest, ElideSpdyHeaderBlockForNetLog) {
std::unique_ptr<base::ListValue> list =
ElideSpdyHeaderBlockForNetLog(headers, NetLogCaptureMode::Default());
EXPECT_EQ(2u, list->GetSize());
- std::string field;
+ SpdyString field;
EXPECT_TRUE(list->GetString(0, &field));
EXPECT_EQ("foo: bar", field);
EXPECT_TRUE(list->GetString(1, &field));
« no previous file with comments | « net/spdy/spdy_log_util.cc ('k') | net/spdy/spdy_network_transaction_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698