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

Unified Diff: net/tools/quic/quic_time_wait_list_manager.cc

Issue 14696007: Warn on missing OVERRIDE/virtual everywhere, not just in header files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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
Index: net/tools/quic/quic_time_wait_list_manager.cc
diff --git a/net/tools/quic/quic_time_wait_list_manager.cc b/net/tools/quic/quic_time_wait_list_manager.cc
index 0bf44a81b15bc594db0349009993730b846d542e..81e199ba2ab9f74944d2f0e799251808955f007e 100644
--- a/net/tools/quic/quic_time_wait_list_manager.cc
+++ b/net/tools/quic/quic_time_wait_list_manager.cc
@@ -37,7 +37,7 @@ class GuidCleanUpAlarm : public EpollAlarm {
: time_wait_list_manager_(time_wait_list_manager) {
}
- virtual int64 OnAlarm() {
+ virtual int64 OnAlarm() OVERRIDE {
EpollAlarm::OnAlarm();
time_wait_list_manager_->CleanUpOldGuids();
// Let the time wait manager register the alarm at appropriate time.

Powered by Google App Engine
This is Rietveld 408576698