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

Unified Diff: chrome_frame/infobars/internal/infobar_window.cc

Issue 6231006: Fix and re-enable slide-in/slide-out of infobars.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 11 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 | « no previous file | chrome_frame/test/infobar_unittests.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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() {
« no previous file with comments | « no previous file | chrome_frame/test/infobar_unittests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698