| Index: net/quic/core/crypto/strike_register_test.cc
|
| diff --git a/net/quic/core/crypto/strike_register_test.cc b/net/quic/core/crypto/strike_register_test.cc
|
| index 07d1f2085eff6d712ae7e58012f0e74d5ffcaba4..b056a9e0de7849db961a7dbc1142f22c8c3ee992 100644
|
| --- a/net/quic/core/crypto/strike_register_test.cc
|
| +++ b/net/quic/core/crypto/strike_register_test.cc
|
| @@ -16,9 +16,6 @@ namespace net {
|
|
|
| namespace {
|
|
|
| -using std::min;
|
| -using std::pair;
|
| -using std::set;
|
| using std::string;
|
|
|
| const uint8_t kOrbit[8] = {1, 2, 3, 4, 5, 6, 7, 8};
|
| @@ -250,7 +247,7 @@ class SlowStrikeRegister {
|
| if (horizon_ > current_time) {
|
| return 0;
|
| }
|
| - return 1 + min(current_time - horizon_, window_secs_);
|
| + return 1 + std::min(current_time - horizon_, window_secs_);
|
| }
|
|
|
| private:
|
|
|