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

Unified Diff: chrome/browser/net/network_stats_unittest.cc

Issue 763833003: Remove using namespace in net/quic/quic_stream_sequencer.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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: chrome/browser/net/network_stats_unittest.cc
diff --git a/chrome/browser/net/network_stats_unittest.cc b/chrome/browser/net/network_stats_unittest.cc
index cd16a328d1c268da32321d7a4c0a5f88c26c0697..0ccc04bcebf8265fedca4116a8f91d36b1766014 100644
--- a/chrome/browser/net/network_stats_unittest.cc
+++ b/chrome/browser/net/network_stats_unittest.cc
@@ -2,6 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include <string>
+
#include "base/basictypes.h"
#include "base/message_loop/message_loop.h"
#include "chrome/browser/net/network_stats.h"
@@ -36,7 +38,7 @@ class NetworkStatsTest : public PlatformTest {
}
void CreateToken(uint64 timestamp_micros,
- const string& hash,
+ const std::string& hash,
ProbePacket_Token* token) {
token->set_timestamp_micros(timestamp_micros);
token->mutable_hash()->assign(hash);

Powered by Google App Engine
This is Rietveld 408576698