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

Unified Diff: ui/views/corewm/tooltip_controller.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
« no previous file with comments | « ui/views/controls/throbber.cc ('k') | ui/views/repeat_controller.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/corewm/tooltip_controller.h
diff --git a/ui/views/corewm/tooltip_controller.h b/ui/views/corewm/tooltip_controller.h
index 2f8c7ef6b23bc6d1775b2111718aa5eb17f4a67d..2c93f7a4b78ab8407496f68ce7365ff533ff6de8 100644
--- a/ui/views/corewm/tooltip_controller.h
+++ b/ui/views/corewm/tooltip_controller.h
@@ -90,11 +90,11 @@ class VIEWS_EXPORT TooltipController : public aura::client::TooltipClient,
scoped_ptr<Tooltip> tooltip_;
- base::RepeatingTimer<TooltipController> tooltip_timer_;
+ base::RepeatingTimer tooltip_timer_;
// Timer to timeout the life of an on-screen tooltip. We hide the tooltip when
// this timer fires.
- base::OneShotTimer<TooltipController> tooltip_shown_timer_;
+ base::OneShotTimer tooltip_shown_timer_;
// Location of the last event in |tooltip_window_|'s coordinates.
gfx::Point curr_mouse_loc_;
« no previous file with comments | « ui/views/controls/throbber.cc ('k') | ui/views/repeat_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698