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

Unified Diff: chrome/browser/ui/panels/auto_hiding_desktop_bar_win.cc

Issue 7825026: Revert "Currently, base/timer.cc calls PostTask with FROM_HERE as the Location, (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 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
Index: chrome/browser/ui/panels/auto_hiding_desktop_bar_win.cc
diff --git a/chrome/browser/ui/panels/auto_hiding_desktop_bar_win.cc b/chrome/browser/ui/panels/auto_hiding_desktop_bar_win.cc
index b10aadd8d2790c68160086d4a9c8c7a5e7139b81..944c6b1a40316120409b59ad06fba519bca08a49 100644
--- a/chrome/browser/ui/panels/auto_hiding_desktop_bar_win.cc
+++ b/chrome/browser/ui/panels/auto_hiding_desktop_bar_win.cc
@@ -43,7 +43,7 @@ void AutoHidingDesktopBarWin::UpdateWorkArea(const gfx::Rect& work_area) {
// called due to the work area change.
if (taskbar_exists) {
if (!polling_timer_.IsRunning()) {
- polling_timer_.Start(FROM_HERE,
+ polling_timer_.Start(
base::TimeDelta::FromMilliseconds(kCheckTaskbarPollingIntervalMs),
this,
&AutoHidingDesktopBarWin::OnPollingTimer);

Powered by Google App Engine
This is Rietveld 408576698