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

Unified Diff: net/quic/core/interval_test.cc

Issue 2524523002: Remove various 'using std::' statements from QUIC code and use (Closed)
Patch Set: Rebase Created 4 years 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/quic/core/interval_set_test.cc ('k') | net/quic/core/quic_config.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/interval_test.cc
diff --git a/net/quic/core/interval_test.cc b/net/quic/core/interval_test.cc
index 2e52c5b8c218e5073ea7e0f2902acc429c9ffb9f..da8643aae1f50932317f579667cd8d42abc4ef84 100644
--- a/net/quic/core/interval_test.cc
+++ b/net/quic/core/interval_test.cc
@@ -15,9 +15,7 @@
#include "net/test/gtest_util.h"
#include "testing/gtest/include/gtest/gtest.h"
-using std::pair;
using std::string;
-using std::vector;
namespace net {
namespace test {
@@ -271,7 +269,7 @@ TEST_F(IntervalTest, IntervalOfTypeWithNoOperatorMinus) {
// Interval<T> should work even if T does not support operator-(). We just
// can't call Interval<T>::Length() for such types.
const Interval<string> d1("a", "b");
- const Interval<pair<int, int>> d2({1, 2}, {4, 3});
+ const Interval<std::pair<int, int>> d2({1, 2}, {4, 3});
EXPECT_EQ("a", d1.min());
EXPECT_EQ("b", d1.max());
EXPECT_EQ(std::make_pair(1, 2), d2.min());
« no previous file with comments | « net/quic/core/interval_set_test.cc ('k') | net/quic/core/quic_config.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698