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

Unified Diff: components/feedback/feedback_uploader.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/feedback/feedback_uploader.h
diff --git a/components/feedback/feedback_uploader.h b/components/feedback/feedback_uploader.h
index 9eebbd50d20ce6c4539eaa1df6c23655b8dea17c..814376e798fb17dbdc48028c590cbbfa143db710 100644
--- a/components/feedback/feedback_uploader.h
+++ b/components/feedback/feedback_uploader.h
@@ -67,7 +67,7 @@ class FeedbackUploader : public base::SupportsWeakPtr<FeedbackUploader> {
base::FilePath report_path_;
// Timer to upload the next report at.
- base::OneShotTimer<FeedbackUploader> upload_timer_;
+ base::OneShotTimer upload_timer_;
// Priority queue of reports prioritized by the time the report is supposed
// to be uploaded at.
std::priority_queue<scoped_refptr<FeedbackReport>,

Powered by Google App Engine
This is Rietveld 408576698