| Index: base/debug/trace_event_impl.cc
|
| diff --git a/base/debug/trace_event_impl.cc b/base/debug/trace_event_impl.cc
|
| index d8f32cc2dd365f3826d247e4908eba7200dd705b..aa5e7afcc25984867ea65de0fa3ce3513863e8b1 100644
|
| --- a/base/debug/trace_event_impl.cc
|
| +++ b/base/debug/trace_event_impl.cc
|
| @@ -19,6 +19,7 @@
|
| #include "base/memory/singleton.h"
|
| #include "base/message_loop/message_loop.h"
|
| #include "base/process/process_metrics.h"
|
| +#include "base/sequenced_task_runner.h"
|
| #include "base/stl_util.h"
|
| #include "base/strings/string_number_conversions.h"
|
| #include "base/strings/string_split.h"
|
| @@ -30,6 +31,7 @@
|
| #include "base/synchronization/waitable_event.h"
|
| #include "base/sys_info.h"
|
| #include "base/third_party/dynamic_annotations/dynamic_annotations.h"
|
| +#include "base/thread_task_runner_handle.h"
|
| #include "base/threading/platform_thread.h"
|
| #include "base/threading/thread_id_name_manager.h"
|
| #include "base/time/time.h"
|
| @@ -1402,7 +1404,7 @@ void TraceLog::SetEnabled(const CategoryFilter& category_filter,
|
| AutoLock lock(lock_);
|
|
|
| // Can't enable tracing when Flush() is in progress.
|
| - DCHECK(!flush_message_loop_proxy_.get());
|
| + DCHECK(!flush_task_runner_.get());
|
|
|
| InternalTraceOptions new_options =
|
| GetInternalOptionsFromTraceOptions(options);
|
| @@ -1675,7 +1677,7 @@ void TraceLog::SetEventCallbackDisabled() {
|
|
|
| // Flush() works as the following:
|
| // 1. Flush() is called in threadA whose message loop is saved in
|
| -// flush_message_loop_proxy_;
|
| +// flush_task_runner_;
|
| // 2. If thread_message_loops_ is not empty, threadA posts task to each message
|
| // loop to flush the thread local buffers; otherwise finish the flush;
|
| // 3. FlushCurrentThread() deletes the thread local event buffer:
|
| @@ -1702,9 +1704,11 @@ void TraceLog::Flush(const TraceLog::OutputCallback& cb) {
|
| thread_message_loop_task_runners;
|
| {
|
| AutoLock lock(lock_);
|
| - DCHECK(!flush_message_loop_proxy_.get());
|
| - flush_message_loop_proxy_ = MessageLoopProxy::current();
|
| - DCHECK(!thread_message_loops_.size() || flush_message_loop_proxy_.get());
|
| + DCHECK(!flush_task_runner_.get());
|
| + // In unit tests, there may not be a task runner set
|
| + if (ThreadTaskRunnerHandle::IsSet())
|
| + flush_task_runner_ = ThreadTaskRunnerHandle::Get();
|
| + DCHECK(!thread_message_loops_.size() || flush_task_runner_.get());
|
| flush_output_callback_ = cb;
|
|
|
| if (thread_shared_chunk_) {
|
| @@ -1727,7 +1731,7 @@ void TraceLog::Flush(const TraceLog::OutputCallback& cb) {
|
| FROM_HERE,
|
| Bind(&TraceLog::FlushCurrentThread, Unretained(this), generation));
|
| }
|
| - flush_message_loop_proxy_->PostDelayedTask(
|
| + flush_task_runner_->PostDelayedTask(
|
| FROM_HERE,
|
| Bind(&TraceLog::OnFlushTimeout, Unretained(this), generation),
|
| TimeDelta::FromMilliseconds(kThreadFlushTimeoutMs));
|
| @@ -1782,7 +1786,7 @@ void TraceLog::FinishFlush(int generation) {
|
| UseNextTraceBuffer();
|
| thread_message_loops_.clear();
|
|
|
| - flush_message_loop_proxy_ = NULL;
|
| + flush_task_runner_ = NULL;
|
| flush_output_callback = flush_output_callback_;
|
| flush_output_callback_.Reset();
|
| }
|
| @@ -1795,7 +1799,7 @@ void TraceLog::FinishFlush(int generation) {
|
| void TraceLog::FlushCurrentThread(int generation) {
|
| {
|
| AutoLock lock(lock_);
|
| - if (!CheckGeneration(generation) || !flush_message_loop_proxy_.get()) {
|
| + if (!CheckGeneration(generation) || !flush_task_runner_.get()) {
|
| // This is late. The corresponding flush has finished.
|
| return;
|
| }
|
| @@ -1805,19 +1809,18 @@ void TraceLog::FlushCurrentThread(int generation) {
|
| delete thread_local_event_buffer_.Get();
|
|
|
| AutoLock lock(lock_);
|
| - if (!CheckGeneration(generation) || !flush_message_loop_proxy_.get() ||
|
| + if (!CheckGeneration(generation) || !flush_task_runner_.get() ||
|
| thread_message_loops_.size())
|
| return;
|
|
|
| - flush_message_loop_proxy_->PostTask(
|
| - FROM_HERE,
|
| - Bind(&TraceLog::FinishFlush, Unretained(this), generation));
|
| + flush_task_runner_->PostTask(
|
| + FROM_HERE, Bind(&TraceLog::FinishFlush, Unretained(this), generation));
|
| }
|
|
|
| void TraceLog::OnFlushTimeout(int generation) {
|
| {
|
| AutoLock lock(lock_);
|
| - if (!CheckGeneration(generation) || !flush_message_loop_proxy_.get()) {
|
| + if (!CheckGeneration(generation) || !flush_task_runner_.get()) {
|
| // Flush has finished before timeout.
|
| return;
|
| }
|
|
|