Chromium Code Reviews| Index: chrome_frame/infobars/internal/infobar_window.cc |
| =================================================================== |
| --- chrome_frame/infobars/internal/infobar_window.cc (revision 71215) |
| +++ chrome_frame/infobars/internal/infobar_window.cc (working copy) |
| @@ -22,7 +22,9 @@ |
| } // namespace |
| -void OnSliderTimer(InfobarWindow::Host* host) { |
| +void __stdcall OnSliderTimer(InfobarWindow::Host* host, |
|
amit
2011/01/12 21:32:34
nit: this should be 'VOID CALLBACK' to follow the
erikwright (departed)
2011/01/14 14:43:49
Done.
|
| + HWND /*hwnd*/, UINT /*uMsg*/, |
| + UINT_PTR /*idEvent*/, DWORD /*dwTime*/) { |
| if (host) |
| host->UpdateLayout(); |
| } |
| @@ -139,8 +141,6 @@ |
| } |
| bool InfobarWindow::StartTimer() { |
| - return false; // TODO(erikwright): Diagnose and fix crashes on IE. |
| -#if 0 |
| if (timer_id_ != 0) |
| return true; |
| @@ -156,7 +156,6 @@ |
| DPLOG_IF(ERROR, timer_id_ == 0) << "Failure in SetTimer."; |
| return timer_id_ != 0; |
| -#endif |
| } |
| bool InfobarWindow::StopTimer() { |