Home | History | Annotate | Download | only in common

Lines Matching refs:thread_

90   ProfilingThreadControl() : thread_(NULL) {}
95 if (thread_ && thread_->IsRunning())
97 thread_ = new base::Thread("Profiling_Flush");
98 thread_->Start();
99 thread_->message_loop()->PostTask(
100 FROM_HERE, base::Bind(&FlushProfilingData, thread_));
106 if (!thread_ || !thread_->IsRunning())
108 thread_->Stop();
109 delete thread_;
110 thread_ = NULL;
114 base::Thread* thread_;