/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_. 117 return target_loop_.get(); 143 bool has_null_target_loop() const { return target_loop_.get() == NULL; } 179 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()) { 175 if (target_loop_) { 176 target_loop_->PostClosure(FROM_HERE, callback_closure, 0); 179 // classes protect against having a null target_loop_ otherwise).
|
thread_aware_callback.h | 32 scoped_refptr<MessageLoopShared> target_loop_; member in class:ppapi::internal::ThreadAwareCallbackBase
|
/external/chromium_org/content/renderer/input/ |
input_event_filter.cc | 29 target_loop_(target_loop), 31 DCHECK(target_loop_.get()); 55 DCHECK(target_loop_->BelongsToCurrentThread()); 102 target_loop_->PostTask( 117 DCHECK(target_loop_->BelongsToCurrentThread()); 157 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 | 168 void set_target_loop(const pp::MessageLoop& loop) { target_loop_ = loop; } 187 pp::MessageLoop target_loop_; member in class:TestCompletionCallback
|
test_utils.cc | 366 target_loop_ = pp::MessageLoop::GetCurrent(); 396 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:__anon2559::CurriedTask
|