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

Unified Diff: net/spdy/hpack_encoder_test.cc

Issue 986713002: Fully qualify std::make_pair. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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_encoder.cc ('k') | net/spdy/write_blocked_list.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/hpack_encoder_test.cc
diff --git a/net/spdy/hpack_encoder_test.cc b/net/spdy/hpack_encoder_test.cc
index 50a6c86c9d966832a439326e0ff7cf01b89518bf..40e6c20c4a570978ba472d3fe283b78cbc7e7c74 100644
--- a/net/spdy/hpack_encoder_test.cc
+++ b/net/spdy/hpack_encoder_test.cc
@@ -63,7 +63,7 @@ class HpackEncoderPeer {
static void CookieToCrumbs(StringPiece cookie,
std::vector<StringPiece>* out) {
Representations tmp;
- HpackEncoder::CookieToCrumbs(make_pair("", cookie), &tmp);
+ HpackEncoder::CookieToCrumbs(std::make_pair("", cookie), &tmp);
out->clear();
for (size_t i = 0; i != tmp.size(); ++i) {
@@ -73,7 +73,8 @@ class HpackEncoderPeer {
static void DecomposeRepresentation(StringPiece value,
std::vector<StringPiece>* out) {
Representations tmp;
- HpackEncoder::DecomposeRepresentation(make_pair("foobar", value), &tmp);
+ HpackEncoder::DecomposeRepresentation(std::make_pair("foobar", value),
+ &tmp);
out->clear();
for (size_t i = 0; i != tmp.size(); ++i) {
« no previous file with comments | « net/spdy/hpack_encoder.cc ('k') | net/spdy/write_blocked_list.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698