Index: net/http/http_network_transaction_unittest.cc |
diff --git a/net/http/http_network_transaction_unittest.cc b/net/http/http_network_transaction_unittest.cc |
index ccd153601a1935c9570eee1a0abcd9c76e69d7af..bc6b2aaa4c7a68f8a5797a87d74df1854e68962a 100644 |
--- a/net/http/http_network_transaction_unittest.cc |
+++ b/net/http/http_network_transaction_unittest.cc |
@@ -136,7 +136,7 @@ class TestNetworkStreamThrottler : public NetworkThrottleManager { |
void UnthrottleAllRequests() { |
std::set<TestThrottle*> outstanding_throttles_copy(outstanding_throttles_); |
- for (auto& throttle : outstanding_throttles_copy) { |
+ for (auto* throttle : outstanding_throttles_copy) { |
if (throttle->IsBlocked()) |
throttle->Unthrottle(); |
} |