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

Unified Diff: chrome/browser/printing/print_view_manager.cc

Issue 7812036: Update base/timer.h code to pass through Location from call sites. (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/printing/print_view_manager.cc
diff --git a/chrome/browser/printing/print_view_manager.cc b/chrome/browser/printing/print_view_manager.cc
index 2fbd08056556860d080f29da002ce947b5c558c0..f659f4312a1f4c8e19f8e03fc04c77b50cb4ebf4 100644
--- a/chrome/browser/printing/print_view_manager.cc
+++ b/chrome/browser/printing/print_view_manager.cc
@@ -482,7 +482,7 @@ bool PrintViewManager::RunInnerMessageLoop() {
static const int kPrinterSettingsTimeout = 60000;
base::OneShotTimer<MessageLoop> quit_timer;
quit_timer.Start(TimeDelta::FromMilliseconds(kPrinterSettingsTimeout),
- MessageLoop::current(), &MessageLoop::Quit);
+ MessageLoop::current(), &MessageLoop::Quit, FROM_HERE);
inside_inner_message_loop_ = true;

Powered by Google App Engine
This is Rietveld 408576698