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

Unified Diff: remoting/host/continue_window.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: . 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: remoting/host/continue_window.h
diff --git a/remoting/host/continue_window.h b/remoting/host/continue_window.h
index aed28635fd3c2fb0e25f8984a957c5f09c493b04..c02516088c44771c30a619ffdebe975840d72beb 100644
--- a/remoting/host/continue_window.h
+++ b/remoting/host/continue_window.h
@@ -42,10 +42,10 @@ class ContinueWindow : public HostWindow {
base::WeakPtr<ClientSessionControl> client_session_control_;
// Used to disconnect the client session when timeout expires.
- base::OneShotTimer<ContinueWindow> disconnect_timer_;
+ base::OneShotTimer disconnect_timer_;
// Used to ask the local user whether the session should be continued.
- base::OneShotTimer<ContinueWindow> session_expired_timer_;
+ base::OneShotTimer session_expired_timer_;
DISALLOW_COPY_AND_ASSIGN(ContinueWindow);
};

Powered by Google App Engine
This is Rietveld 408576698