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

Unified Diff: chrome/browser/ui/webui/flash_ui.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/ui/webui/flash_ui.cc
diff --git a/chrome/browser/ui/webui/flash_ui.cc b/chrome/browser/ui/webui/flash_ui.cc
index a973bfacdddbf6dd241abb685d84a00f9660fad5..315cfa10a2a111364035688aebf26e5907e087c1 100644
--- a/chrome/browser/ui/webui/flash_ui.cc
+++ b/chrome/browser/ui/webui/flash_ui.cc
@@ -134,7 +134,7 @@ FlashDOMHandler::FlashDOMHandler()
// And lastly, we fire off a timer to make sure we never get stuck at the
// "Loading..." message.
timeout_.Start(base::TimeDelta::FromMilliseconds(kTimeout),
- this, &FlashDOMHandler::OnTimeout);
+ this, &FlashDOMHandler::OnTimeout, FROM_HERE);
}
void FlashDOMHandler::RegisterMessages() {

Powered by Google App Engine
This is Rietveld 408576698