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

Unified Diff: base/threading/thread.cc

Issue 1073033002: Modify instrumentation for various jank bugs, mostly removing outdated sites. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 | « no previous file | chrome/browser/devtools/devtools_network_transaction.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/threading/thread.cc
diff --git a/base/threading/thread.cc b/base/threading/thread.cc
index ea5b1747e3836a8092517b19e8197d1cf3debb62..d42ba4d1577ae4abcd9ad8a8bb5576036a01b5b0 100644
--- a/base/threading/thread.cc
+++ b/base/threading/thread.cc
@@ -95,11 +95,6 @@ bool Thread::Start() {
}
bool Thread::StartWithOptions(const Options& options) {
- // TODO(eroman): Remove once crbug.com/465458 is solved.
- tracked_objects::ScopedTracker tracking_profile(
- FROM_HERE_WITH_EXPLICIT_FUNCTION(
- "465458 base::Thread::StartWithOptions"));
-
DCHECK(!message_loop_);
#if defined(OS_WIN)
DCHECK((com_status_ != STA) ||
@@ -117,7 +112,7 @@ bool Thread::StartWithOptions(const Options& options) {
return false;
}
- // TODO(eroman): Remove once crbug.com/465458 is solved.
+ // TODO(kinuko): Remove once crbug.com/465458 is solved.
tracked_objects::ScopedTracker tracking_profile_wait(
FROM_HERE_WITH_EXPLICIT_FUNCTION(
"465458 base::Thread::StartWithOptions (Wait)"));
« no previous file with comments | « no previous file | chrome/browser/devtools/devtools_network_transaction.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698