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

Unified Diff: net/quic/quic_alarm.h

Issue 1779883005: Remove unused return value from QuicAlarm::Delegate::OnAlarm. No behavior change, not protected. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@116388439
Patch Set: Created 4 years, 9 months 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 | « no previous file | net/quic/quic_alarm.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_alarm.h
diff --git a/net/quic/quic_alarm.h b/net/quic/quic_alarm.h
index 9bd7279e7b760bcaa83ed0dc562d2544ad3eefed..53a823fd4250fd43d28f2a775310ca43dfabd5be 100644
--- a/net/quic/quic_alarm.h
+++ b/net/quic/quic_alarm.h
@@ -24,10 +24,8 @@ class NET_EXPORT_PRIVATE QuicAlarm {
public:
virtual ~Delegate() {}
- // Invoked when the alarm fires. If the return value is not
- // infinite, then the alarm will be rescheduled at the
- // specified time.
- virtual QuicTime OnAlarm() = 0;
+ // Invoked when the alarm fires.
+ virtual void OnAlarm() = 0;
};
explicit QuicAlarm(QuicArenaScopedPtr<Delegate> delegate);
« no previous file with comments | « no previous file | net/quic/quic_alarm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698