Chromium Code Reviews| Index: chrome/browser/ui/views/status_icons/status_tray_win.cc |
| diff --git a/chrome/browser/ui/views/status_icons/status_tray_win.cc b/chrome/browser/ui/views/status_icons/status_tray_win.cc |
| index 099fb6c20f284ac3dd85d2afc58c69c50f20b759..5237b2aa89bbf24feaefe172a70ee986b368dc40 100644 |
| --- a/chrome/browser/ui/views/status_icons/status_tray_win.cc |
| +++ b/chrome/browser/ui/views/status_icons/status_tray_win.cc |
| @@ -76,12 +76,11 @@ class StatusTrayStateChangerProxyImpl : public StatusTrayStateChangerProxy, |
| worker_thread_.Start(); |
| ++pending_requests_; |
| - worker_thread_.message_loop_proxy()->PostTaskAndReply( |
| + worker_thread_.task_runner()->PostTaskAndReply( |
|
msw
2015/06/10 00:12:57
Should this file include location.h and single_thr
Sami
2015/06/10 12:35:34
Yes, well spotted, thanks. The automated rewriting
|
| FROM_HERE, |
| base::Bind( |
| &StatusTrayStateChangerProxyImpl::EnqueueChangeOnWorkerThread, |
| - icon_id, |
| - window), |
| + icon_id, window), |
| base::Bind(&StatusTrayStateChangerProxyImpl::ChangeDone, |
| weak_factory_.GetWeakPtr())); |
| } |