| Index: chrome/browser/ui/panels/panel_mouse_watcher_timer.cc
|
| diff --git a/chrome/browser/ui/panels/panel_mouse_watcher_timer.cc b/chrome/browser/ui/panels/panel_mouse_watcher_timer.cc
|
| index 774fb60b370df6d8065102a012507e16284eb295..6d786fc9f53315f69b6701401cd005dd66a94798 100644
|
| --- a/chrome/browser/ui/panels/panel_mouse_watcher_timer.cc
|
| +++ b/chrome/browser/ui/panels/panel_mouse_watcher_timer.cc
|
| @@ -25,13 +25,13 @@ class PanelMouseWatcherTimer : public PanelMouseWatcher {
|
|
|
| // Timer callback function.
|
| void DoWork();
|
| - friend class base::RepeatingTimer<PanelMouseWatcherTimer>;
|
| + friend class base::RepeatingTimer;
|
|
|
| // Timer used to track mouse movements. Some OSes do not provide an easy way
|
| // of tracking mouse movements across applications. So we use a timer to
|
| // accomplish the same. This could also be more efficient as you end up
|
| // getting a lot of notifications when tracking mouse movements.
|
| - base::RepeatingTimer<PanelMouseWatcherTimer> timer_;
|
| + base::RepeatingTimer timer_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(PanelMouseWatcherTimer);
|
| };
|
|
|