| 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)"));
|
|
|