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

Unified Diff: content/shell/renderer/layout_test/blink_test_runner.cc

Issue 2218933003: Revert of Make WebTraceLocation be an alias of tracked_objects::Location (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « content/child/web_url_loader_impl.cc ('k') | third_party/WebKit/Source/core/dom/ExecutionContext.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/renderer/layout_test/blink_test_runner.cc
diff --git a/content/shell/renderer/layout_test/blink_test_runner.cc b/content/shell/renderer/layout_test/blink_test_runner.cc
index e696cfeead5cd29e2f7a07eb78a65bc706fe39fb..30414620e05327877c0eb92ff6c8b37495f5542d 100644
--- a/content/shell/renderer/layout_test/blink_test_runner.cc
+++ b/content/shell/renderer/layout_test/blink_test_runner.cc
@@ -293,13 +293,13 @@
void BlinkTestRunner::PostTask(blink::WebTaskRunner::Task* task) {
Platform::current()->currentThread()->getWebTaskRunner()->postTask(
- BLINK_FROM_HERE, task);
+ WebTraceLocation(__FUNCTION__, __FILE__), task);
}
void BlinkTestRunner::PostDelayedTask(blink::WebTaskRunner::Task* task,
long long ms) {
Platform::current()->currentThread()->getWebTaskRunner()->postDelayedTask(
- BLINK_FROM_HERE, task, ms);
+ WebTraceLocation(__FUNCTION__, __FILE__), task, ms);
}
WebString BlinkTestRunner::RegisterIsolatedFileSystem(
« no previous file with comments | « content/child/web_url_loader_impl.cc ('k') | third_party/WebKit/Source/core/dom/ExecutionContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698