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

Unified Diff: components/password_manager/core/browser/affiliated_match_helper.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: components/password_manager/core/browser/affiliated_match_helper.h
diff --git a/components/password_manager/core/browser/affiliated_match_helper.h b/components/password_manager/core/browser/affiliated_match_helper.h
index 6f7b90973379b42b37ba83274c04070a72035736..18cb0d5cd4f0cb621d0ff41732a4749d6738019a 100644
--- a/components/password_manager/core/browser/affiliated_match_helper.h
+++ b/components/password_manager/core/browser/affiliated_match_helper.h
@@ -171,8 +171,8 @@ class AffiliatedMatchHelper : public PasswordStore::Observer,
scoped_ptr<AffiliationService> affiliation_service_;
// Timers used to schedule VerifyAffiliationsPrefetchedForDummyFacets().
- base::OneShotTimer<AffiliatedMatchHelper> on_startup_verification_timer_;
- base::RepeatingTimer<AffiliatedMatchHelper> repeated_verification_timer_;
+ base::OneShotTimer on_startup_verification_timer_;
+ base::RepeatingTimer repeated_verification_timer_;
base::WeakPtrFactory<AffiliatedMatchHelper> weak_ptr_factory_;

Powered by Google App Engine
This is Rietveld 408576698