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

Unified Diff: chrome/browser/chromeos/login/web_page_view.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/chromeos/login/web_page_view.cc
diff --git a/chrome/browser/chromeos/login/web_page_view.cc b/chrome/browser/chromeos/login/web_page_view.cc
index 4ce06c5451c8fa965316e9f9b115898a8cb1bc5f..7c4826de3e936b8c56cfc856a2e5eff18967c432 100644
--- a/chrome/browser/chromeos/login/web_page_view.cc
+++ b/chrome/browser/chromeos/login/web_page_view.cc
@@ -123,8 +123,7 @@ void WebPageView::Init() {
connecting_label_->SetVisible(false);
AddChildView(connecting_label_ );
- start_timer_.Start(FROM_HERE,
- TimeDelta::FromMilliseconds(kStartDelayMs),
+ start_timer_.Start(TimeDelta::FromMilliseconds(kStartDelayMs),
this,
&WebPageView::ShowWaitingControls);
}
@@ -151,8 +150,7 @@ void WebPageView::ShowPageContent() {
// TODO(nkostylev): Show throbber as an overlay until page has been rendered.
start_timer_.Stop();
if (!stop_timer_.IsRunning()) {
- stop_timer_.Start(FROM_HERE,
- TimeDelta::FromMilliseconds(kStopDelayMs),
+ stop_timer_.Start(TimeDelta::FromMilliseconds(kStopDelayMs),
this,
&WebPageView::ShowRenderedPage);
}
« no previous file with comments | « chrome/browser/chromeos/login/web_page_screen.cc ('k') | chrome/browser/chromeos/login/wizard_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698