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

Unified Diff: base/threading/thread.cc

Issue 1124763003: Update from https://crrev.com/327068 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: update nacl, buildtools, fix display_change_notifier_unittest Created 5 years, 7 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: 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)"));

Powered by Google App Engine
This is Rietveld 408576698