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

Unified Diff: webkit/tools/test_shell/layout_test_controller.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: webkit/tools/test_shell/layout_test_controller.cc
diff --git a/webkit/tools/test_shell/layout_test_controller.cc b/webkit/tools/test_shell/layout_test_controller.cc
index 5a320643a22bc9b8f5c0fe2edad5f46a282354a0..7d37c3049c222401355ea634005553e8361590de 100644
--- a/webkit/tools/test_shell/layout_test_controller.cc
+++ b/webkit/tools/test_shell/layout_test_controller.cc
@@ -103,7 +103,7 @@ void LayoutTestController::WorkQueue::ProcessWorkSoon() {
if (!queue_.empty()) {
// We delay processing queued work to avoid recursion problems.
- timer_.Start(base::TimeDelta(), this, &WorkQueue::ProcessWork);
+ timer_.Start(base::TimeDelta(), this, &WorkQueue::ProcessWork, FROM_HERE);
} else if (!wait_until_done_) {
shell_->TestFinished();
}

Powered by Google App Engine
This is Rietveld 408576698