diff options
Diffstat (limited to 'content/common/child_process.cc')
-rw-r--r-- | content/common/child_process.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/content/common/child_process.cc b/content/common/child_process.cc index 6bfff5c..95bc331 100644 --- a/content/common/child_process.cc +++ b/content/common/child_process.cc @@ -51,7 +51,7 @@ ChildProcess::ChildProcess() // We can't recover from failing to start the IO thread. CHECK(io_thread_.StartWithOptions( - base::Thread::Options(MessageLoop::TYPE_IO, 0))); + base::Thread::Options(base::MessageLoop::TYPE_IO, 0))); #if defined(OS_ANDROID) // TODO(epenner): Move thread priorities to base. (crbug.com/170549) @@ -89,13 +89,13 @@ void ChildProcess::set_main_thread(ChildThread* thread) { void ChildProcess::AddRefProcess() { DCHECK(!main_thread_.get() || // null in unittests. - MessageLoop::current() == main_thread_->message_loop()); + base::MessageLoop::current() == main_thread_->message_loop()); ref_count_++; } void ChildProcess::ReleaseProcess() { DCHECK(!main_thread_.get() || // null in unittests. - MessageLoop::current() == main_thread_->message_loop()); + base::MessageLoop::current() == main_thread_->message_loop()); DCHECK(ref_count_); DCHECK(child_process_); if (--ref_count_) |