HomeSort by relevance Sort by last modified time
    Searched refs:target_loop_ (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/ppapi/shared_impl/
thread_aware_callback.cc 36 : target_loop_(PpapiGlobals::Get()->GetCurrentMessageLoop()),
38 DCHECK(target_loop_.get());
52 if (target_loop_.get() != PpapiGlobals::Get()->GetCurrentMessageLoop()) {
53 target_loop_->PostClosure(
tracked_callback.h 80 // (as determined by target_loop_). If invoked on a different thread, the
81 // callback will be scheduled to run later on target_loop_.
139 bool has_null_target_loop() const { return target_loop_.get() == NULL; }
175 scoped_refptr<MessageLoopShared> target_loop_; member in class:ppapi::TrackedCallback
tracked_callback.cc 51 target_loop_(PpapiGlobals::Get()->GetCurrentMessageLoop()),
53 // Note that target_loop_ may be NULL at this point, if the plugin has not
132 // If there's a target_loop_, and we're not on the right thread, we need to
133 // post to target_loop_.
134 if (target_loop_.get() &&
135 target_loop_.get() != PpapiGlobals::Get()->GetCurrentMessageLoop()) {
170 if (!target_loop_.get()) {
172 // classes protect against having a null target_loop_ otherwise).
177 target_loop_->PostClosure(FROM_HERE, callback_closure, 0);
thread_aware_callback.h 32 scoped_refptr<MessageLoopShared> target_loop_; member in class:ppapi::internal::ThreadAwareCallbackBase
  /external/chromium_org/content/renderer/gpu/
input_event_filter.cc 27 target_loop_(target_loop),
29 DCHECK(target_loop_.get());
53 DCHECK(target_loop_->BelongsToCurrentThread());
100 target_loop_->PostTask(
115 DCHECK(target_loop_->BelongsToCurrentThread());
155 DCHECK(target_loop_->BelongsToCurrentThread());
input_event_filter.h 78 // The handler_ only gets Run on the thread corresponding to target_loop_.
79 scoped_refptr<base::MessageLoopProxy> target_loop_; member in class:content::InputEventFilter
  /external/chromium_org/ppapi/tests/
test_utils.h 163 void set_target_loop(const pp::MessageLoop& loop) { target_loop_ = loop; }
182 pp::MessageLoop target_loop_; member in class:TestCompletionCallback
test_utils.cc 318 target_loop_ = pp::MessageLoop::GetCurrent();
348 if (callback->target_loop_ != pp::MessageLoop::GetCurrent()) {
  /external/chromium/chrome/common/net/
url_fetcher_unittest.cc 34 target_loop_(target_loop) {}
37 target_loop_->PostTask(FROM_HERE, task_);
42 MessageLoop* const target_loop_; member in class:__anon5272::CurriedTask

Completed in 145 milliseconds