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

Unified Diff: net/spdy/hpack/hpack_entry_test.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/hpack/hpack_entry.cc ('k') | net/spdy/hpack/hpack_header_table_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/hpack/hpack_entry_test.cc
diff --git a/net/spdy/hpack/hpack_entry_test.cc b/net/spdy/hpack/hpack_entry_test.cc
index eb7de1c3bd7ecca4fda959be82d14ba28deabf4d..eda78d0c73ecc95d6f866e701f7ad1568c1c5dce 100644
--- a/net/spdy/hpack/hpack_entry_test.cc
+++ b/net/spdy/hpack/hpack_entry_test.cc
@@ -4,16 +4,12 @@
#include "net/spdy/hpack/hpack_entry.h"
-#include <string>
-
#include "testing/gtest/include/gtest/gtest.h"
namespace net {
namespace {
-using std::string;
-
class HpackEntryTest : public ::testing::Test {
protected:
HpackEntryTest()
@@ -46,7 +42,7 @@ class HpackEntryTest : public ::testing::Test {
return name_.size() + value_.size() + HpackEntry::kSizeOverhead;
}
- string name_, value_;
+ SpdyString name_, value_;
private:
// Referenced by HpackEntry instances.
« no previous file with comments | « net/spdy/hpack/hpack_entry.cc ('k') | net/spdy/hpack/hpack_header_table_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698