diff options
Diffstat (limited to 'net/quic/quic_chromium_connection_helper_test.cc')
| -rw-r--r-- | net/quic/quic_chromium_connection_helper_test.cc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/net/quic/quic_chromium_connection_helper_test.cc b/net/quic/quic_chromium_connection_helper_test.cc index aefa22a..9fab8fb 100644 --- a/net/quic/quic_chromium_connection_helper_test.cc +++ b/net/quic/quic_chromium_connection_helper_test.cc @@ -17,10 +17,7 @@ class TestDelegate : public QuicAlarm::Delegate { public: TestDelegate() : fired_(false) {} - QuicTime OnAlarm() override { - fired_ = true; - return QuicTime::Zero(); - } + void OnAlarm() override { fired_ = true; } bool fired() const { return fired_; } void Clear() { fired_ = false; } |
