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

Unified Diff: remoting/host/oauth_token_getter_impl.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/oauth_token_getter_impl.h
diff --git a/remoting/host/oauth_token_getter_impl.h b/remoting/host/oauth_token_getter_impl.h
index f875ab742b230e0834de27b9ea7689ab6da68df1..e90074540fe038957eee8d81b44ccfb0605ba7d0 100644
--- a/remoting/host/oauth_token_getter_impl.h
+++ b/remoting/host/oauth_token_getter_impl.h
@@ -61,7 +61,7 @@ class OAuthTokenGetterImpl : public OAuthTokenGetter,
std::string oauth_access_token_;
base::Time auth_token_expiry_time_;
std::queue<OAuthTokenGetter::TokenCallback> pending_callbacks_;
- scoped_ptr<base::OneShotTimer<OAuthTokenGetterImpl>> refresh_timer_;
+ scoped_ptr<base::OneShotTimer> refresh_timer_;
};
} // namespace remoting

Powered by Google App Engine
This is Rietveld 408576698