Index: net/quic/crypto/strike_register_test.cc |
diff --git a/net/quic/crypto/strike_register_test.cc b/net/quic/crypto/strike_register_test.cc |
index b2a73c889cf8ee6d962378469b559cbb0f37b51d..cbb189ab2fa7f6d6fe4256d1f592f026a20c5ba5 100644 |
--- a/net/quic/crypto/strike_register_test.cc |
+++ b/net/quic/crypto/strike_register_test.cc |
@@ -234,7 +234,7 @@ class SlowStrikeRegister { |
pair<uint32, string> nonce = std::make_pair( |
nonce_time, string(reinterpret_cast<const char*>(nonce_bytes), 32)); |
- set<pair<uint32, string> >::const_iterator it = nonces_.find(nonce); |
+ set<pair<uint32, string>>::const_iterator it = nonces_.find(nonce); |
if (it != nonces_.end()) { |
return NONCE_NOT_UNIQUE_FAILURE; |
} |
@@ -271,7 +271,7 @@ class SlowStrikeRegister { |
} |
void DropOldestEntry() { |
- set<pair<uint32, string> >::iterator oldest = nonces_.begin(); |
+ set<pair<uint32, string>>::iterator oldest = nonces_.begin(); |
horizon_ = oldest->first + 1; |
nonces_.erase(oldest); |
} |
@@ -282,7 +282,7 @@ class SlowStrikeRegister { |
uint8 orbit_[8]; |
uint32 horizon_; |
- set<pair<uint32, string> > nonces_; |
+ set<pair<uint32, string>> nonces_; |
}; |
class StrikeRegisterStressTest : public ::testing::Test { |