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

Unified Diff: content/browser/renderer_host/input/timeout_monitor.h

Issue 1355063004: Template methods on Timer classes instead of the classes themselves. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: timer: fixcaller Created 5 years, 3 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: content/browser/renderer_host/input/timeout_monitor.h
diff --git a/content/browser/renderer_host/input/timeout_monitor.h b/content/browser/renderer_host/input/timeout_monitor.h
index 9c0729f2c76093f507a898432a02dd88d88b46b9..4cccbec25216eaf6151b81ddf3cc2fe8bbaf8f38 100644
--- a/content/browser/renderer_host/input/timeout_monitor.h
+++ b/content/browser/renderer_host/input/timeout_monitor.h
@@ -41,7 +41,7 @@ class CONTENT_EXPORT TimeoutMonitor {
base::TimeTicks time_when_considered_timed_out_;
// This timer runs to check if |time_when_considered_timed_out_| has past.
- base::OneShotTimer<TimeoutMonitor> timeout_timer_;
+ base::OneShotTimer timeout_timer_;
DISALLOW_COPY_AND_ASSIGN(TimeoutMonitor);
};

Powered by Google App Engine
This is Rietveld 408576698