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

Unified Diff: chrome/browser/chromeos/login/existing_user_controller.cc

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: chrome/browser/chromeos/login/existing_user_controller.cc
diff --git a/chrome/browser/chromeos/login/existing_user_controller.cc b/chrome/browser/chromeos/login/existing_user_controller.cc
index 3db402453b65fc41976ea47b01a6a95310cb34ac..97baaa022f13248e757d5c910ac1888abb12f623 100644
--- a/chrome/browser/chromeos/login/existing_user_controller.cc
+++ b/chrome/browser/chromeos/login/existing_user_controller.cc
@@ -901,7 +901,7 @@ void ExistingUserController::StartPublicSessionAutoLoginTimer() {
// Start the auto-login timer.
if (!auto_login_timer_)
- auto_login_timer_.reset(new base::OneShotTimer<ExistingUserController>);
+ auto_login_timer_.reset(new base::OneShotTimer);
auto_login_timer_->Start(
FROM_HERE,

Powered by Google App Engine
This is Rietveld 408576698