task              237 android_webview/browser/hardware_renderer.cc void DeferredGpuCommandService::ScheduleTask(const base::Closure& task) {
task              240 android_webview/browser/hardware_renderer.cc     tasks_.push(task);
task              271 android_webview/browser/hardware_renderer.cc     base::Closure task;
task              274 android_webview/browser/hardware_renderer.cc       task = tasks_.front();
task              277 android_webview/browser/hardware_renderer.cc     task.Run();
task               76 android_webview/browser/hardware_renderer.h   virtual void ScheduleTask(const base::Closure& task) OVERRIDE;
task               77 android_webview/browser/hardware_renderer.h   virtual void ScheduleIdleWork(const base::Closure& task) OVERRIDE;
task               76 android_webview/javatests/src/org/chromium/android_webview/test/AwTestBase.java         FutureTask<R> task = new FutureTask<R>(callable);
task               78 android_webview/javatests/src/org/chromium/android_webview/test/AwTestBase.java         getInstrumentation().runOnMainSync(task);
task               79 android_webview/javatests/src/org/chromium/android_webview/test/AwTestBase.java         return task.get();
task              145 android_webview/native/aw_quota_manager_bridge_impl.cc void RunOnUIThread(const base::Closure& task) {
task              147 android_webview/native/aw_quota_manager_bridge_impl.cc     task.Run();
task              149 android_webview/native/aw_quota_manager_bridge_impl.cc     BrowserThread::PostTask(BrowserThread::UI, FROM_HERE, task);
task              116 android_webview/native/cookie_manager.cc   void ExecCookieTask(const CookieTask& task);
task              223 android_webview/native/cookie_manager.cc void CookieManager::ExecCookieTask(const CookieTask& task) {
task              229 android_webview/native/cookie_manager.cc   cookie_monster_proxy_->PostTask(FROM_HERE, base::Bind(task, &completion));
task               34 ash/system/chromeos/session/logout_confirmation_controller_unittest.cc                                const base::Closure& task,
task               38 ash/system/chromeos/session/logout_confirmation_controller_unittest.cc       const base::Closure& task,
task               91 ash/system/chromeos/session/logout_confirmation_controller_unittest.cc     const base::Closure& task,
task               93 ash/system/chromeos/session/logout_confirmation_controller_unittest.cc   tasks_.push(std::make_pair(now_ + delay, task));
task               99 ash/system/chromeos/session/logout_confirmation_controller_unittest.cc     const base::Closure& task,
task              113 ash/system/chromeos/session/logout_confirmation_controller_unittest.cc     base::Closure task = tasks_.top().second;
task              115 ash/system/chromeos/session/logout_confirmation_controller_unittest.cc     task.Run();
task              123 ash/system/chromeos/session/logout_confirmation_controller_unittest.cc     base::Closure task = tasks_.top().second;
task              125 ash/system/chromeos/session/logout_confirmation_controller_unittest.cc     task.Run();
task               66 base/android/java/src/org/chromium/base/ThreadUtils.java             FutureTask<Void> task = new FutureTask<Void>(r, null);
task               67 base/android/java/src/org/chromium/base/ThreadUtils.java             postOnUiThread(task);
task               69 base/android/java/src/org/chromium/base/ThreadUtils.java                 task.get();
task              100 base/android/java/src/org/chromium/base/ThreadUtils.java         FutureTask<T> task = new FutureTask<T>(c);
task              101 base/android/java/src/org/chromium/base/ThreadUtils.java         runOnUiThread(task);
task              103 base/android/java/src/org/chromium/base/ThreadUtils.java             return task.get();
task              116 base/android/java/src/org/chromium/base/ThreadUtils.java     public static <T> FutureTask<T> runOnUiThread(FutureTask<T> task) {
task              118 base/android/java/src/org/chromium/base/ThreadUtils.java             task.run();
task              120 base/android/java/src/org/chromium/base/ThreadUtils.java             postOnUiThread(task);
task              122 base/android/java/src/org/chromium/base/ThreadUtils.java         return task;
task              157 base/android/java/src/org/chromium/base/ThreadUtils.java     public static <T> FutureTask<T> postOnUiThread(FutureTask<T> task) {
task              158 base/android/java/src/org/chromium/base/ThreadUtils.java         getUiThreadHandler().post(task);
task              159 base/android/java/src/org/chromium/base/ThreadUtils.java         return task;
task              168 base/android/java/src/org/chromium/base/ThreadUtils.java     public static void postOnUiThread(Runnable task) {
task              169 base/android/java/src/org/chromium/base/ThreadUtils.java         getUiThreadHandler().post(task);
task              179 base/android/java/src/org/chromium/base/ThreadUtils.java     public static void postOnUiThreadDelayed(Runnable task, long delayMillis) {
task              180 base/android/java/src/org/chromium/base/ThreadUtils.java         getUiThreadHandler().postDelayed(task, delayMillis);
task               51 base/at_exit.cc void AtExitManager::RegisterTask(base::Closure task) {
task               58 base/at_exit.cc   g_top_manager->stack_.push(task);
task               71 base/at_exit.cc     base::Closure task = g_top_manager->stack_.top();
task               72 base/at_exit.cc     task.Run();
task               46 base/at_exit.h   static void RegisterTask(base::Closure task);
task               30 base/deferred_sequenced_task_runner.cc     const Closure& task,
task               35 base/deferred_sequenced_task_runner.cc     return target_task_runner_->PostDelayedTask(from_here, task, delay);
task               38 base/deferred_sequenced_task_runner.cc   QueueDeferredTask(from_here, task, delay, false /* is_non_nestable */);
task               48 base/deferred_sequenced_task_runner.cc     const Closure& task,
task               54 base/deferred_sequenced_task_runner.cc                                                            task,
task               57 base/deferred_sequenced_task_runner.cc   QueueDeferredTask(from_here, task, delay, true /* is_non_nestable */);
task               63 base/deferred_sequenced_task_runner.cc     const Closure& task,
task               68 base/deferred_sequenced_task_runner.cc   deferred_task.task = task;
task               82 base/deferred_sequenced_task_runner.cc     const DeferredTask& task = *i;
task               83 base/deferred_sequenced_task_runner.cc     if (task.is_non_nestable) {
task               84 base/deferred_sequenced_task_runner.cc       target_task_runner_->PostNonNestableDelayedTask(task.posted_from,
task               85 base/deferred_sequenced_task_runner.cc                                                       task.task,
task               86 base/deferred_sequenced_task_runner.cc                                                       task.delay);
task               88 base/deferred_sequenced_task_runner.cc       target_task_runner_->PostDelayedTask(task.posted_from,
task               89 base/deferred_sequenced_task_runner.cc                                            task.task,
task               90 base/deferred_sequenced_task_runner.cc                                            task.delay);
task               31 base/deferred_sequenced_task_runner.h                                const Closure& task,
task               38 base/deferred_sequenced_task_runner.h       const Closure& task,
task               53 base/deferred_sequenced_task_runner.h     Closure task;
task               63 base/deferred_sequenced_task_runner.h                          const Closure& task,
task               45 base/files/file_util_proxy.cc   void RunWork(const FileUtilProxy::CreateOrOpenTask& task) {
task               46 base/files/file_util_proxy.cc     error_ = task.Run(&file_handle_, &created_);
task              263 base/linux_util.cc   DIR* task = opendir(buf);
task              264 base/linux_util.cc   if (!task) {
task              271 base/linux_util.cc   while ((dent = readdir(task))) {
task              278 base/linux_util.cc   closedir(task);
task               21 base/mac/libdispatch_task_runner.cc     const Closure& task,
task               29 base/mac/libdispatch_task_runner.cc   __block const Closure task_copy = task;
task               51 base/mac/libdispatch_task_runner.cc     const Closure& task,
task               53 base/mac/libdispatch_task_runner.cc   return PostDelayedTask(from_here, task, delay);
task               42 base/mac/libdispatch_task_runner.h                                const Closure& task,
task               49 base/mac/libdispatch_task_runner.h       const Closure& task,
task               22 base/message_loop/incoming_task_queue.cc     const Closure& task,
task               27 base/message_loop/incoming_task_queue.cc       from_here, task, CalculateDelayedRuntime(delay), nestable);
task              124 base/message_loop/incoming_task_queue.cc     pending_task->task.Reset();
task              139 base/message_loop/incoming_task_queue.cc   pending_task->task.Reset();
task               37 base/message_loop/incoming_task_queue.h                           const Closure& task,
task              262 base/message_loop/message_loop.cc     const Closure& task) {
task              263 base/message_loop/message_loop.cc   DCHECK(!task.is_null()) << from_here.ToString();
task              264 base/message_loop/message_loop.cc   incoming_task_queue_->AddToIncomingQueue(from_here, task, TimeDelta(), true);
task              269 base/message_loop/message_loop.cc     const Closure& task,
task              271 base/message_loop/message_loop.cc   DCHECK(!task.is_null()) << from_here.ToString();
task              272 base/message_loop/message_loop.cc   incoming_task_queue_->AddToIncomingQueue(from_here, task, delay, true);
task              277 base/message_loop/message_loop.cc     const Closure& task) {
task              278 base/message_loop/message_loop.cc   DCHECK(!task.is_null()) << from_here.ToString();
task              279 base/message_loop/message_loop.cc   incoming_task_queue_->AddToIncomingQueue(from_here, task, TimeDelta(), false);
task              284 base/message_loop/message_loop.cc     const Closure& task,
task              286 base/message_loop/message_loop.cc   DCHECK(!task.is_null()) << from_here.ToString();
task              287 base/message_loop/message_loop.cc   incoming_task_queue_->AddToIncomingQueue(from_here, task, delay, false);
task              449 base/message_loop/message_loop.cc   pending_task.task.Run();
task              507 base/message_loop/message_loop.cc uint64 MessageLoop::GetTaskTraceID(const PendingTask& task) {
task              508 base/message_loop/message_loop.cc   return (static_cast<uint64>(task.sequence_num) << 32) |
task              572 base/message_loop/message_loop.cc         if (delayed_work_queue_.top().task.Equals(pending_task.task))
task              212 base/message_loop/message_loop.h                 const Closure& task);
task              215 base/message_loop/message_loop.h                        const Closure& task,
task              219 base/message_loop/message_loop.h                            const Closure& task);
task              222 base/message_loop/message_loop.h                                   const Closure& task,
task              461 base/message_loop/message_loop.h   uint64 GetTaskTraceID(const PendingTask& task);
task               23 base/message_loop/message_loop_proxy_impl.cc     const base::Closure& task,
task               25 base/message_loop/message_loop_proxy_impl.cc   DCHECK(!task.is_null()) << from_here.ToString();
task               26 base/message_loop/message_loop_proxy_impl.cc   return incoming_queue_->AddToIncomingQueue(from_here, task, delay, true);
task               31 base/message_loop/message_loop_proxy_impl.cc     const base::Closure& task,
task               33 base/message_loop/message_loop_proxy_impl.cc   DCHECK(!task.is_null()) << from_here.ToString();
task               34 base/message_loop/message_loop_proxy_impl.cc   return incoming_queue_->AddToIncomingQueue(from_here, task, delay, false);
task               29 base/message_loop/message_loop_proxy_impl.h                                const base::Closure& task,
task               33 base/message_loop/message_loop_proxy_impl.h       const base::Closure& task,
task               68 base/message_loop/message_pump_glib_unittest.cc     else if (!event.task.is_null())
task               69 base/message_loop/message_pump_glib_unittest.cc       event.task.Run();
task               82 base/message_loop/message_pump_glib_unittest.cc   void AddEventAsTask(int delay_ms, const Closure& task) {
task               83 base/message_loop/message_pump_glib_unittest.cc     AddEventHelper(delay_ms, Closure(), task);
task               97 base/message_loop/message_pump_glib_unittest.cc     Closure task;
task              105 base/message_loop/message_pump_glib_unittest.cc       int delay_ms, const Closure& callback, const Closure& task) {
task              113 base/message_loop/message_pump_glib_unittest.cc     EventInjector::Event event = {future, callback, task};
task              158 base/message_loop/message_pump_glib_unittest.cc                          const Closure& task) {
task              159 base/message_loop/message_pump_glib_unittest.cc   MessageLoop::current()->PostTask(from_here, task);
task               18 base/pending_task.cc                          const base::Closure& task)
task               20 base/pending_task.cc       task(task),
task               27 base/pending_task.cc                          const base::Closure& task,
task               31 base/pending_task.cc       task(task),
task               25 base/pending_task.h               const Closure& task);
task               27 base/pending_task.h               const Closure& task,
task               36 base/pending_task.h   Closure task;
task               38 base/process/process_metrics_mac.cc bool GetTaskInfo(mach_port_t task, task_basic_info_64* task_info_data) {
task               39 base/process/process_metrics_mac.cc   if (task == MACH_PORT_NULL)
task               42 base/process/process_metrics_mac.cc   kern_return_t kr = task_info(task,
task              126 base/process/process_metrics_mac.cc   mach_port_t task = TaskForPid(process_);
task              127 base/process/process_metrics_mac.cc   if (task == MACH_PORT_NULL) {
task              156 base/process/process_metrics_mac.cc     kr = mach_vm_region(task,
task              200 base/process/process_metrics_mac.cc   kr = host_page_size(task, &page_size);
task              234 base/process/process_metrics_mac.cc   mach_port_t task = TaskForPid(process_);
task              235 base/process/process_metrics_mac.cc   if (task == MACH_PORT_NULL)
task              244 base/process/process_metrics_mac.cc   kr = task_info(task,
task              254 base/process/process_metrics_mac.cc   if (!GetTaskInfo(task, &task_info_data))
task              298 base/process/process_metrics_mac.cc   mach_port_t task = TaskForPid(process_);
task              299 base/process/process_metrics_mac.cc   if (task == MACH_PORT_NULL)
task              306 base/process/process_metrics_mac.cc   kr = task_info(task,
task              361 base/process/process_metrics_mac.cc   mach_port_t task = MACH_PORT_NULL;
task              363 base/process/process_metrics_mac.cc     task = port_provider_->TaskForPid(process_);
task              364 base/process/process_metrics_mac.cc   if (task == MACH_PORT_NULL && process_ == getpid())
task              365 base/process/process_metrics_mac.cc     task = mach_task_self();
task              366 base/process/process_metrics_mac.cc   return task;
task               13 base/sequenced_task_runner.cc     const Closure& task) {
task               14 base/sequenced_task_runner.cc   return PostNonNestableDelayedTask(from_here, task, base::TimeDelta());
task              112 base/sequenced_task_runner.h                            const Closure& task);
task              116 base/sequenced_task_runner.h       const Closure& task,
task               26 base/task/cancelable_task_tracker.cc void RunIfNotCanceled(const CancellationFlag* flag, const Closure& task) {
task               28 base/task/cancelable_task_tracker.cc     task.Run();
task               32 base/task/cancelable_task_tracker.cc                                  const Closure& task,
task               34 base/task/cancelable_task_tracker.cc   RunIfNotCanceled(flag, task);
task               74 base/task/cancelable_task_tracker.cc     const Closure& task) {
task               77 base/task/cancelable_task_tracker.cc   return PostTaskAndReply(task_runner, from_here, task, Bind(&base::DoNothing));
task               83 base/task/cancelable_task_tracker.cc     const Closure& task,
task              100 base/task/cancelable_task_tracker.cc                                     Bind(&RunIfNotCanceled, flag, task),
task               70 base/task/cancelable_task_tracker.h                   const base::Closure& task);
task               74 base/task/cancelable_task_tracker.h                           const base::Closure& task,
task               24 base/task_runner.cc                         const Closure& task) OVERRIDE;
task               37 base/task_runner.cc     const Closure& task) {
task               38 base/task_runner.cc   return destination_->PostTask(from_here, task);
task               44 base/task_runner.cc                           const Closure& task) {
task               45 base/task_runner.cc   return PostDelayedTask(from_here, task, base::TimeDelta());
task               50 base/task_runner.cc     const Closure& task,
task               53 base/task_runner.cc       from_here, task, reply);
task               67 base/task_runner.h                 const Closure& task);
task               75 base/task_runner.h                                const Closure& task,
task              128 base/task_runner.h                         const Closure& task,
task               58 base/task_runner_util.h     const Callback<TaskReturnType(void)>& task,
task               63 base/task_runner_util.h       base::Bind(&internal::ReturnAsParamAdapter<TaskReturnType>, task,
task               23 base/test/android/javatests/src/org/chromium/base/test/util/InstrumentationUtils.java         FutureTask<R> task = new FutureTask<R>(callable);
task               24 base/test/android/javatests/src/org/chromium/base/test/util/InstrumentationUtils.java         instrumentation.runOnMainSync(task);
task               26 base/test/android/javatests/src/org/chromium/base/test/util/InstrumentationUtils.java             return task.get();
task               15 base/test/null_task_runner.cc     const base::Closure& task,
task               22 base/test/null_task_runner.cc     const base::Closure& task,
task               19 base/test/null_task_runner.h                                const base::Closure& task,
task               23 base/test/null_task_runner.h       const base::Closure& task,
task               27 base/test/sequenced_task_runner_test_template.cc     const Closure& task) {
task               31 base/test/sequenced_task_runner_test_template.cc                               task, post_i);
task               38 base/test/sequenced_task_runner_test_template.cc     const Closure& task) {
task               42 base/test/sequenced_task_runner_test_template.cc                               task, post_i);
task               49 base/test/sequenced_task_runner_test_template.cc     const Closure& task,
task               54 base/test/sequenced_task_runner_test_template.cc                               task, post_i);
task               67 base/test/sequenced_task_runner_test_template.cc void SequencedTaskTracker::RunTask(const Closure& task, int task_i) {
task               69 base/test/sequenced_task_runner_test_template.cc   if (!task.is_null())
task               70 base/test/sequenced_task_runner_test_template.cc     task.Run();
task               45 base/test/sequenced_task_runner_test_template.h       const Closure& task);
task               50 base/test/sequenced_task_runner_test_template.h       const Closure& task);
task               55 base/test/sequenced_task_runner_test_template.h       const Closure& task,
task               74 base/test/sequenced_task_runner_test_template.h   void RunTask(const Closure& task, int task_i);
task              214 base/test/sequenced_task_runner_test_template.h     Closure task = Bind(
task              219 base/test/sequenced_task_runner_test_template.h     this->task_tracker_->PostWrappedNonNestableTask(task_runner, task);
task               15 base/test/task_runner_test_template.cc Closure TaskTracker::WrapTask(const Closure& task, int i) {
task               16 base/test/task_runner_test_template.cc   return Bind(&TaskTracker::RunTask, this, task, i);
task               19 base/test/task_runner_test_template.cc void TaskTracker::RunTask(const Closure& task, int i) {
task               21 base/test/task_runner_test_template.cc   if (!task.is_null()) {
task               22 base/test/task_runner_test_template.cc     task.Run();
task               77 base/test/task_runner_test_template.h   Closure WrapTask(const Closure& task, int i);
task               89 base/test/task_runner_test_template.h   void RunTask(const Closure& task, int i);
task               13 base/test/test_pending_task.cc     const Closure& task,
task               18 base/test/test_pending_task.cc       task(task),
task               22 base/test/test_pending_task.h                   const Closure& task,
task               50 base/test/test_pending_task.h   Closure task;
task               19 base/test/test_simple_task_runner.cc     const Closure& task,
task               23 base/test/test_simple_task_runner.cc       TestPendingTask(from_here, task, TimeTicks(), delay,
task               30 base/test/test_simple_task_runner.cc     const Closure& task,
task               34 base/test/test_simple_task_runner.cc       TestPendingTask(from_here, task, TimeTicks(), delay,
task               72 base/test/test_simple_task_runner.cc     it->task.Run();
task               51 base/test/test_simple_task_runner.h                                const Closure& task,
task               55 base/test/test_simple_task_runner.h       const Closure& task,
task               28 base/threading/post_task_and_reply_impl.cc                         const Closure& task, const Closure& reply)
task               31 base/threading/post_task_and_reply_impl.cc     task_ = task;
task               76 base/threading/post_task_and_reply_impl.cc     const Closure& task,
task               79 base/threading/post_task_and_reply_impl.cc       new PostTaskAndReplyRelay(from_here, task, reply);
task               31 base/threading/post_task_and_reply_impl.h                         const Closure& task,
task               36 base/threading/post_task_and_reply_impl.h                         const Closure& task) = 0;
task               66 base/threading/sequenced_worker_pool.cc   Closure task;
task              100 base/threading/sequenced_worker_pool.cc                                const Closure& task,
task              126 base/threading/sequenced_worker_pool.cc     const Closure& task,
task              130 base/threading/sequenced_worker_pool.cc         from_here, task, shutdown_behavior_);
task              132 base/threading/sequenced_worker_pool.cc   return pool_->PostDelayedWorkerTask(from_here, task, delay);
task              153 base/threading/sequenced_worker_pool.cc                                const Closure& task,
task              160 base/threading/sequenced_worker_pool.cc       const Closure& task,
task              190 base/threading/sequenced_worker_pool.cc     const Closure& task,
task              194 base/threading/sequenced_worker_pool.cc         token_, from_here, task, shutdown_behavior_);
task              196 base/threading/sequenced_worker_pool.cc   return pool_->PostDelayedSequencedWorkerTask(token_, from_here, task, delay);
task              205 base/threading/sequenced_worker_pool.cc     const Closure& task,
task              209 base/threading/sequenced_worker_pool.cc   return PostDelayedTask(from_here, task, delay);
task              215 base/threading/sequenced_worker_pool.cc uint64 GetTaskTraceID(const SequencedTask& task,
task              217 base/threading/sequenced_worker_pool.cc   return (static_cast<uint64>(task.trace_id) << 32) |
task              286 base/threading/sequenced_worker_pool.cc                 const Closure& task,
task              348 base/threading/sequenced_worker_pool.cc   GetWorkStatus GetWork(SequencedTask* task,
task              358 base/threading/sequenced_worker_pool.cc   int WillRunWorkerTask(const SequencedTask& task);
task              359 base/threading/sequenced_worker_pool.cc   void DidRunWorkerTask(const SequencedTask& task);
task              566 base/threading/sequenced_worker_pool.cc     const Closure& task,
task              573 base/threading/sequenced_worker_pool.cc   sequenced.task =
task              575 base/threading/sequenced_worker_pool.cc       base::MakeCriticalClosure(task) : task;
task              724 base/threading/sequenced_worker_pool.cc       SequencedTask task;
task              728 base/threading/sequenced_worker_pool.cc           GetWork(&task, &wait_time, &delete_these_outside_lock);
task              732 base/threading/sequenced_worker_pool.cc             TRACE_ID_MANGLE(GetTaskTraceID(task, static_cast<void*>(this))));
task              734 base/threading/sequenced_worker_pool.cc                      "src_file", task.posted_from.file_name(),
task              735 base/threading/sequenced_worker_pool.cc                      "src_func", task.posted_from.function_name());
task              736 base/threading/sequenced_worker_pool.cc         int new_thread_id = WillRunWorkerTask(task);
task              751 base/threading/sequenced_worker_pool.cc               SequenceToken(task.sequence_token_id), task.shutdown_behavior);
task              754 base/threading/sequenced_worker_pool.cc               tracked_objects::ThreadData::NowForStartOfRun(task.birth_tally);
task              756 base/threading/sequenced_worker_pool.cc           task.task.Run();
task              758 base/threading/sequenced_worker_pool.cc           tracked_objects::ThreadData::TallyRunOnNamedThreadIfTracking(task,
task              766 base/threading/sequenced_worker_pool.cc           task.task = Closure();
task              771 base/threading/sequenced_worker_pool.cc         DidRunWorkerTask(task);  // Must be done inside the lock.
task              896 base/threading/sequenced_worker_pool.cc     SequencedTask* task,
task              958 base/threading/sequenced_worker_pool.cc       delete_these_outside_lock->push_back(i->task);
task              969 base/threading/sequenced_worker_pool.cc         delete_these_outside_lock->push_back(i->task);
task              976 base/threading/sequenced_worker_pool.cc     *task = *i;
task              978 base/threading/sequenced_worker_pool.cc     if (task->shutdown_behavior == BLOCK_SHUTDOWN) {
task              996 base/threading/sequenced_worker_pool.cc int SequencedWorkerPool::Inner::WillRunWorkerTask(const SequencedTask& task) {
task             1000 base/threading/sequenced_worker_pool.cc   if (task.sequence_token_id)
task             1001 base/threading/sequenced_worker_pool.cc     current_sequences_.insert(task.sequence_token_id);
task             1006 base/threading/sequenced_worker_pool.cc   if (task.shutdown_behavior != CONTINUE_ON_SHUTDOWN)
task             1027 base/threading/sequenced_worker_pool.cc void SequencedWorkerPool::Inner::DidRunWorkerTask(const SequencedTask& task) {
task             1030 base/threading/sequenced_worker_pool.cc   if (task.shutdown_behavior != CONTINUE_ON_SHUTDOWN) {
task             1035 base/threading/sequenced_worker_pool.cc   if (task.sequence_token_id)
task             1036 base/threading/sequenced_worker_pool.cc     current_sequences_.erase(task.sequence_token_id);
task             1196 base/threading/sequenced_worker_pool.cc     const Closure& task) {
task             1198 base/threading/sequenced_worker_pool.cc                           from_here, task, TimeDelta());
task             1203 base/threading/sequenced_worker_pool.cc     const Closure& task,
task             1208 base/threading/sequenced_worker_pool.cc                           from_here, task, delay);
task             1213 base/threading/sequenced_worker_pool.cc     const Closure& task,
task             1216 base/threading/sequenced_worker_pool.cc                           from_here, task, TimeDelta());
task             1222 base/threading/sequenced_worker_pool.cc     const Closure& task) {
task             1224 base/threading/sequenced_worker_pool.cc                           from_here, task, TimeDelta());
task             1230 base/threading/sequenced_worker_pool.cc     const Closure& task,
task             1235 base/threading/sequenced_worker_pool.cc                           from_here, task, delay);
task             1241 base/threading/sequenced_worker_pool.cc     const Closure& task) {
task             1244 base/threading/sequenced_worker_pool.cc                           from_here, task, TimeDelta());
task             1250 base/threading/sequenced_worker_pool.cc     const Closure& task,
task             1253 base/threading/sequenced_worker_pool.cc                           from_here, task, TimeDelta());
task             1258 base/threading/sequenced_worker_pool.cc     const Closure& task,
task             1260 base/threading/sequenced_worker_pool.cc   return PostDelayedWorkerTask(from_here, task, delay);
task              227 base/threading/sequenced_worker_pool.h                       const Closure& task);
task              239 base/threading/sequenced_worker_pool.h                              const Closure& task,
task              245 base/threading/sequenced_worker_pool.h       const Closure& task,
task              261 base/threading/sequenced_worker_pool.h                                const Closure& task);
task              267 base/threading/sequenced_worker_pool.h                                     const Closure& task);
task              281 base/threading/sequenced_worker_pool.h       const Closure& task,
task              289 base/threading/sequenced_worker_pool.h       const Closure& task,
task              294 base/threading/sequenced_worker_pool.h                                const Closure& task,
task               27 base/threading/worker_pool.cc                         const Closure& task) OVERRIDE {
task               28 base/threading/worker_pool.cc     return WorkerPool::PostTask(from_here, task, task_is_slow_);
task               45 base/threading/worker_pool.cc                                const Closure& task,
task               56 base/threading/worker_pool.cc       const Closure& task,
task               73 base/threading/worker_pool.cc     const Closure& task,
task               75 base/threading/worker_pool.cc   return PostDelayedTaskAssertZeroDelay(from_here, task, delay);
task               84 base/threading/worker_pool.cc     const Closure& task,
task               88 base/threading/worker_pool.cc   return WorkerPool::PostTask(from_here, task, tasks_are_slow_);
task              105 base/threading/worker_pool.cc                                   const Closure& task,
task              115 base/threading/worker_pool.cc       from_here, task, reply);
task               37 base/threading/worker_pool.h                        const base::Closure& task, bool task_is_slow);
task               43 base/threading/worker_pool.h                                const Closure& task,
task               44 base/threading/worker_pool_posix.cc                 const base::Closure& task, bool task_is_slow);
task               60 base/threading/worker_pool_posix.cc                               const base::Closure& task, bool task_is_slow) {
task               61 base/threading/worker_pool_posix.cc   pool_->PostTask(from_here, task);
task               92 base/threading/worker_pool_posix.cc     if (pending_task.task.is_null())
task              101 base/threading/worker_pool_posix.cc     pending_task.task.Run();
task              116 base/threading/worker_pool_posix.cc                           const base::Closure& task, bool task_is_slow) {
task              117 base/threading/worker_pool_posix.cc   g_lazy_worker_pool.Pointer()->PostTask(from_here, task, task_is_slow);
task              150 base/threading/worker_pool_posix.cc     const base::Closure& task) {
task              151 base/threading/worker_pool_posix.cc   PendingTask pending_task(from_here, task);
task              161 base/threading/worker_pool_posix.cc   pending_task->task.Reset();
task               61 base/threading/worker_pool_posix.h                 const Closure& task);
task               32 base/threading/worker_pool_win.cc   pending_task->task.Run();
task               63 base/threading/worker_pool_win.cc                           const base::Closure& task, bool task_is_slow) {
task               64 base/threading/worker_pool_win.cc   PendingTask* pending_task = new PendingTask(from_here, task);
task              194 base/timer/timer.cc   base::Closure task = user_task_;
task              201 base/timer/timer.cc   task.Run();
task               68 cc/resources/direct_raster_worker_pool.cc       internal::RasterWorkerPoolTask* task = it->task;
task               72 cc/resources/direct_raster_worker_pool.cc                        RasterTaskQueue::Item::TaskComparator(task)) ==
task               74 cc/resources/direct_raster_worker_pool.cc         completed_tasks_.push_back(task);
task              102 cc/resources/direct_raster_worker_pool.cc     internal::WorkerPoolTask* task = it->get();
task              104 cc/resources/direct_raster_worker_pool.cc     task->RunReplyOnOriginThread();
task              110 cc/resources/direct_raster_worker_pool.cc     internal::WorkerPoolTask* task,
task              116 cc/resources/direct_raster_worker_pool.cc     internal::WorkerPoolTask* task,
task              168 cc/resources/direct_raster_worker_pool.cc       internal::RasterWorkerPoolTask* task = it->task;
task              169 cc/resources/direct_raster_worker_pool.cc       DCHECK(!task->HasCompleted());
task              173 cc/resources/direct_raster_worker_pool.cc                task->dependencies().begin();
task              174 cc/resources/direct_raster_worker_pool.cc            it != task->dependencies().end();
task              184 cc/resources/direct_raster_worker_pool.cc       RunTaskOnOriginThread(task);
task              185 cc/resources/direct_raster_worker_pool.cc       completed_tasks_.push_back(task);
task               30 cc/resources/direct_raster_worker_pool.h   virtual SkCanvas* AcquireCanvasForRaster(internal::WorkerPoolTask* task,
task               32 cc/resources/direct_raster_worker_pool.h   virtual void ReleaseCanvasForRaster(internal::WorkerPoolTask* task,
task               64 cc/resources/image_raster_worker_pool.cc     internal::RasterWorkerPoolTask* task = item.task;
task               65 cc/resources/image_raster_worker_pool.cc     DCHECK(!task->HasCompleted());
task               69 cc/resources/image_raster_worker_pool.cc           task, new_raster_required_for_activation_finished_task.get()));
task               72 cc/resources/image_raster_worker_pool.cc     InsertNodeForRasterTask(&graph_, task, task->dependencies(), priority++);
task               75 cc/resources/image_raster_worker_pool.cc         internal::TaskGraph::Edge(task, new_raster_finished_task.get()));
task              117 cc/resources/image_raster_worker_pool.cc     internal::WorkerPoolTask* task =
task              120 cc/resources/image_raster_worker_pool.cc     task->WillComplete();
task              121 cc/resources/image_raster_worker_pool.cc     task->CompleteOnOriginThread(this);
task              122 cc/resources/image_raster_worker_pool.cc     task->DidComplete();
task              124 cc/resources/image_raster_worker_pool.cc     task->RunReplyOnOriginThread();
task              130 cc/resources/image_raster_worker_pool.cc     internal::WorkerPoolTask* task,
task              136 cc/resources/image_raster_worker_pool.cc     internal::WorkerPoolTask* task,
task               30 cc/resources/image_raster_worker_pool.h   virtual SkCanvas* AcquireCanvasForRaster(internal::WorkerPoolTask* task,
task               32 cc/resources/image_raster_worker_pool.h   virtual void ReleaseCanvasForRaster(internal::WorkerPoolTask* task,
task               85 cc/resources/pixel_buffer_raster_worker_pool.cc       completed_raster_tasks_.push_back(state.task);
task              114 cc/resources/pixel_buffer_raster_worker_pool.cc     internal::WorkerPoolTask* task = item.task;
task              122 cc/resources/pixel_buffer_raster_worker_pool.cc                      RasterTaskQueue::Item::TaskComparator(task));
task              131 cc/resources/pixel_buffer_raster_worker_pool.cc                      RasterTaskState::TaskComparator(task));
task              146 cc/resources/pixel_buffer_raster_worker_pool.cc     DCHECK(!task->HasBeenScheduled());
task              148 cc/resources/pixel_buffer_raster_worker_pool.cc         RasterTaskState(task, item.required_for_activation));
task              158 cc/resources/pixel_buffer_raster_worker_pool.cc     internal::WorkerPoolTask* task = item.task;
task              163 cc/resources/pixel_buffer_raster_worker_pool.cc                      RasterTaskState::TaskComparator(task));
task              173 cc/resources/pixel_buffer_raster_worker_pool.cc       DCHECK(!task->HasBeenScheduled());
task              176 cc/resources/pixel_buffer_raster_worker_pool.cc                        task) == completed_raster_tasks_.end());
task              177 cc/resources/pixel_buffer_raster_worker_pool.cc       completed_raster_tasks_.push_back(task);
task              229 cc/resources/pixel_buffer_raster_worker_pool.cc     internal::WorkerPoolTask* task = it->get();
task              230 cc/resources/pixel_buffer_raster_worker_pool.cc     task->RunReplyOnOriginThread();
task              237 cc/resources/pixel_buffer_raster_worker_pool.cc     internal::WorkerPoolTask* task = it->get();
task              241 cc/resources/pixel_buffer_raster_worker_pool.cc                      RasterTaskState::TaskComparator(task));
task              248 cc/resources/pixel_buffer_raster_worker_pool.cc     task->RunReplyOnOriginThread();
task              254 cc/resources/pixel_buffer_raster_worker_pool.cc     internal::WorkerPoolTask* task,
task              259 cc/resources/pixel_buffer_raster_worker_pool.cc                    RasterTaskState::TaskComparator(task));
task              268 cc/resources/pixel_buffer_raster_worker_pool.cc     internal::WorkerPoolTask* task,
task              273 cc/resources/pixel_buffer_raster_worker_pool.cc                    RasterTaskState::TaskComparator(task));
task              320 cc/resources/pixel_buffer_raster_worker_pool.cc     internal::WorkerPoolTask* task =
task              325 cc/resources/pixel_buffer_raster_worker_pool.cc                      RasterTaskState::TaskComparator(task));
task              333 cc/resources/pixel_buffer_raster_worker_pool.cc     tasks_with_completed_uploads.push_back(task);
task              345 cc/resources/pixel_buffer_raster_worker_pool.cc       internal::WorkerPoolTask* task = it->get();
task              349 cc/resources/pixel_buffer_raster_worker_pool.cc                        RasterTaskState::TaskComparator(task));
task              355 cc/resources/pixel_buffer_raster_worker_pool.cc         tasks_with_uploads_to_force.push_back(task);
task              356 cc/resources/pixel_buffer_raster_worker_pool.cc         tasks_with_completed_uploads.push_back(task);
task              369 cc/resources/pixel_buffer_raster_worker_pool.cc       internal::WorkerPoolTask* task = it->get();
task              373 cc/resources/pixel_buffer_raster_worker_pool.cc                        RasterTaskState::TaskComparator(task));
task              387 cc/resources/pixel_buffer_raster_worker_pool.cc     internal::WorkerPoolTask* task = it->get();
task              391 cc/resources/pixel_buffer_raster_worker_pool.cc                      RasterTaskState::TaskComparator(task));
task              397 cc/resources/pixel_buffer_raster_worker_pool.cc     task->WillComplete();
task              398 cc/resources/pixel_buffer_raster_worker_pool.cc     task->CompleteOnOriginThread(this);
task              399 cc/resources/pixel_buffer_raster_worker_pool.cc     task->DidComplete();
task              403 cc/resources/pixel_buffer_raster_worker_pool.cc                      task) == completed_raster_tasks_.end());
task              404 cc/resources/pixel_buffer_raster_worker_pool.cc     completed_raster_tasks_.push_back(task);
task              529 cc/resources/pixel_buffer_raster_worker_pool.cc     internal::RasterWorkerPoolTask* task = item.task;
task              536 cc/resources/pixel_buffer_raster_worker_pool.cc                      RasterTaskState::TaskComparator(task));
task              546 cc/resources/pixel_buffer_raster_worker_pool.cc                        task) != completed_raster_tasks_.end());
task              552 cc/resources/pixel_buffer_raster_worker_pool.cc     new_bytes_pending_upload += task->resource()->bytes();
task              562 cc/resources/pixel_buffer_raster_worker_pool.cc       DCHECK(!task->HasCompleted());
task              583 cc/resources/pixel_buffer_raster_worker_pool.cc     InsertNodeForRasterTask(&graph_, task, task->dependencies(), priority++);
task              585 cc/resources/pixel_buffer_raster_worker_pool.cc     tasks.container().push_back(task);
task              587 cc/resources/pixel_buffer_raster_worker_pool.cc       tasks_required_for_activation.container().push_back(task);
task              682 cc/resources/pixel_buffer_raster_worker_pool.cc     internal::WorkerPoolTask* task =
task              688 cc/resources/pixel_buffer_raster_worker_pool.cc                      RasterTaskState::TaskComparator(task));
task              690 cc/resources/pixel_buffer_raster_worker_pool.cc       task->WillComplete();
task              691 cc/resources/pixel_buffer_raster_worker_pool.cc       task->CompleteOnOriginThread(this);
task              692 cc/resources/pixel_buffer_raster_worker_pool.cc       task->DidComplete();
task              694 cc/resources/pixel_buffer_raster_worker_pool.cc       completed_image_decode_tasks_.push_back(task);
task              710 cc/resources/pixel_buffer_raster_worker_pool.cc       task->WillComplete();
task              711 cc/resources/pixel_buffer_raster_worker_pool.cc       task->CompleteOnOriginThread(this);
task              712 cc/resources/pixel_buffer_raster_worker_pool.cc       task->DidComplete();
task              714 cc/resources/pixel_buffer_raster_worker_pool.cc       if (!task->HasFinishedRunning()) {
task              721 cc/resources/pixel_buffer_raster_worker_pool.cc                          RasterTaskQueue::Item::TaskComparator(task));
task              731 cc/resources/pixel_buffer_raster_worker_pool.cc                        task) == completed_raster_tasks_.end());
task              732 cc/resources/pixel_buffer_raster_worker_pool.cc       completed_raster_tasks_.push_back(task);
task              741 cc/resources/pixel_buffer_raster_worker_pool.cc     DCHECK(task->HasFinishedRunning());
task              747 cc/resources/pixel_buffer_raster_worker_pool.cc     raster_tasks_with_pending_upload_.push_back(task);
task               32 cc/resources/pixel_buffer_raster_worker_pool.h   virtual SkCanvas* AcquireCanvasForRaster(internal::WorkerPoolTask* task,
task               34 cc/resources/pixel_buffer_raster_worker_pool.h   virtual void ReleaseCanvasForRaster(internal::WorkerPoolTask* task,
task               47 cc/resources/pixel_buffer_raster_worker_pool.h       explicit TaskComparator(const internal::WorkerPoolTask* task)
task               48 cc/resources/pixel_buffer_raster_worker_pool.h           : task_(task) {}
task               51 cc/resources/pixel_buffer_raster_worker_pool.h         return state.task == task_;
task               60 cc/resources/pixel_buffer_raster_worker_pool.h     RasterTaskState(internal::WorkerPoolTask* task,
task               63 cc/resources/pixel_buffer_raster_worker_pool.h           task(task),
task               68 cc/resources/pixel_buffer_raster_worker_pool.h     internal::WorkerPoolTask* task;
task              230 cc/resources/raster_worker_pool.cc RasterTaskQueue::Item::Item(internal::RasterWorkerPoolTask* task,
task              232 cc/resources/raster_worker_pool.cc     : task(task), required_for_activation(required_for_activation) {}
task              328 cc/resources/raster_worker_pool.cc     internal::WorkerPoolTask* task =
task              329 cc/resources/raster_worker_pool.cc         static_cast<internal::WorkerPoolTask*>(node.task);
task              331 cc/resources/raster_worker_pool.cc     if (!task->HasBeenScheduled()) {
task              332 cc/resources/raster_worker_pool.cc       task->WillSchedule();
task              333 cc/resources/raster_worker_pool.cc       task->ScheduleOnOriginThread(this);
task              334 cc/resources/raster_worker_pool.cc       task->DidSchedule();
task              366 cc/resources/raster_worker_pool.cc void RasterWorkerPool::RunTaskOnOriginThread(internal::WorkerPoolTask* task) {
task              367 cc/resources/raster_worker_pool.cc   task->WillSchedule();
task              368 cc/resources/raster_worker_pool.cc   task->ScheduleOnOriginThread(this);
task              369 cc/resources/raster_worker_pool.cc   task->DidSchedule();
task              371 cc/resources/raster_worker_pool.cc   task->WillRun();
task              372 cc/resources/raster_worker_pool.cc   task->RunOnOriginThread();
task              373 cc/resources/raster_worker_pool.cc   task->DidRun();
task              375 cc/resources/raster_worker_pool.cc   task->WillComplete();
task              376 cc/resources/raster_worker_pool.cc   task->CompleteOnOriginThread(this);
task              377 cc/resources/raster_worker_pool.cc   task->DidComplete();
task              405 cc/resources/raster_worker_pool.cc                                          internal::WorkerPoolTask* task,
task              410 cc/resources/raster_worker_pool.cc                       internal::TaskGraph::Node::TaskComparator(task)) ==
task              413 cc/resources/raster_worker_pool.cc       internal::TaskGraph::Node(task, priority, dependencies));
task               30 cc/resources/raster_worker_pool.h   virtual SkCanvas* AcquireCanvasForRaster(WorkerPoolTask* task,
task               32 cc/resources/raster_worker_pool.h   virtual void ReleaseCanvasForRaster(WorkerPoolTask* task,
task               97 cc/resources/raster_worker_pool.h       explicit TaskComparator(const internal::WorkerPoolTask* task)
task               98 cc/resources/raster_worker_pool.h           : task_(task) {}
task              100 cc/resources/raster_worker_pool.h       bool operator()(const Item& item) const { return item.task == task_; }
task              108 cc/resources/raster_worker_pool.h     Item(internal::RasterWorkerPoolTask* task, bool required_for_activation);
task              115 cc/resources/raster_worker_pool.h     internal::RasterWorkerPoolTask* task;
task              211 cc/resources/raster_worker_pool.h   void RunTaskOnOriginThread(internal::WorkerPoolTask* task);
task              214 cc/resources/raster_worker_pool.h                                 internal::WorkerPoolTask* task,
task              220 cc/resources/raster_worker_pool.h       internal::WorkerPoolTask* task,
task               20 cc/resources/task_graph_runner.cc   DependentIterator(TaskGraph* graph, const Task* task)
task               21 cc/resources/task_graph_runner.cc       : graph_(graph), task_(task), current_index_(-1), current_node_(NULL) {
task               27 cc/resources/task_graph_runner.cc     DCHECK_EQ(graph_->edges[current_index_].task, task_);
task               34 cc/resources/task_graph_runner.cc     DCHECK_EQ(graph_->edges[current_index_].task, task_);
task               46 cc/resources/task_graph_runner.cc     } while (graph_->edges[current_index_].task != task_);
task               77 cc/resources/task_graph_runner.cc                                              DependentComparator(node.task))) !=
task              199 cc/resources/task_graph_runner.cc                        TaskGraph::Node::TaskComparator(node.task));
task              210 cc/resources/task_graph_runner.cc       if (node.task->HasFinishedRunning())
task              216 cc/resources/task_graph_runner.cc                     node.task) != task_namespace.running_tasks.end())
task              220 cc/resources/task_graph_runner.cc           PrioritizedTask(node.task, node.priority));
task              239 cc/resources/task_graph_runner.cc       if (node.task->HasFinishedRunning())
task              245 cc/resources/task_graph_runner.cc                     node.task) != task_namespace.running_tasks.end())
task              250 cc/resources/task_graph_runner.cc                        node.task) == task_namespace.completed_tasks.end());
task              251 cc/resources/task_graph_runner.cc       task_namespace.completed_tasks.push_back(node.task);
task              387 cc/resources/task_graph_runner.cc   scoped_refptr<Task> task(task_namespace->ready_to_run_tasks.back().task);
task              400 cc/resources/task_graph_runner.cc   task_namespace->running_tasks.push_back(task.get());
task              406 cc/resources/task_graph_runner.cc   task->WillRun();
task              411 cc/resources/task_graph_runner.cc     task->RunOnWorkerThread();
task              415 cc/resources/task_graph_runner.cc   task->DidRun();
task              420 cc/resources/task_graph_runner.cc                                       task.get());
task              428 cc/resources/task_graph_runner.cc   for (DependentIterator it(&task_namespace->graph, task.get()); it; ++it) {
task              437 cc/resources/task_graph_runner.cc           PrioritizedTask(dependent_node.task, dependent_node.priority));
task              462 cc/resources/task_graph_runner.cc   task_namespace->completed_tasks.push_back(task);
task               45 cc/resources/task_graph_runner.h       explicit TaskComparator(const Task* task) : task_(task) {}
task               47 cc/resources/task_graph_runner.h       bool operator()(const Node& node) const { return node.task == task_; }
task               55 cc/resources/task_graph_runner.h     Node(Task* task, unsigned priority, size_t dependencies)
task               56 cc/resources/task_graph_runner.h         : task(task), priority(priority), dependencies(dependencies) {}
task               58 cc/resources/task_graph_runner.h     Task* task;
task               66 cc/resources/task_graph_runner.h     Edge(const Task* task, Task* dependent)
task               67 cc/resources/task_graph_runner.h         : task(task), dependent(dependent) {}
task               69 cc/resources/task_graph_runner.h     const Task* task;
task              143 cc/resources/task_graph_runner.h     PrioritizedTask(Task* task, unsigned priority)
task              144 cc/resources/task_graph_runner.h         : task(task), priority(priority) {}
task              146 cc/resources/task_graph_runner.h     Task* task;
task              225 cc/resources/task_graph_runner_perftest.cc       PerfTaskImpl* task = it->get();
task              226 cc/resources/task_graph_runner_perftest.cc       task->Reset();
task               59 cc/resources/task_graph_runner_unittest.cc       FakeTaskImpl* task = static_cast<FakeTaskImpl*>(it->get());
task               60 cc/resources/task_graph_runner_unittest.cc       task->CompleteOnOriginThread();
task               26 cc/test/fake_tile_manager.cc       internal::RasterWorkerPoolTask* task = it->task;
task               28 cc/test/fake_tile_manager.cc       task->WillSchedule();
task               29 cc/test/fake_tile_manager.cc       task->ScheduleOnOriginThread(this);
task               30 cc/test/fake_tile_manager.cc       task->DidSchedule();
task               32 cc/test/fake_tile_manager.cc       completed_tasks_.push_back(task);
task               37 cc/test/fake_tile_manager.cc       internal::WorkerPoolTask* task = completed_tasks_.front().get();
task               39 cc/test/fake_tile_manager.cc       task->WillComplete();
task               40 cc/test/fake_tile_manager.cc       task->CompleteOnOriginThread(this);
task               41 cc/test/fake_tile_manager.cc       task->DidComplete();
task               43 cc/test/fake_tile_manager.cc       task->RunReplyOnOriginThread();
task               56 cc/test/fake_tile_manager.cc   virtual SkCanvas* AcquireCanvasForRaster(internal::WorkerPoolTask* task,
task               60 cc/test/fake_tile_manager.cc   virtual void ReleaseCanvasForRaster(internal::WorkerPoolTask* task,
task               68 cc/trees/blocking_task_runner.cc                                   const base::Closure& task) {
task               71 cc/trees/blocking_task_runner.cc     return task_runner_->PostTask(from_here, task);
task               72 cc/trees/blocking_task_runner.cc   captured_tasks_.push_back(task);
task               74 cc/trees/blocking_task_runner.h                 const base::Closure& task);
task              145 chrome/android/javatests/src/org/chromium/chrome/browser/printing/PrintingControllerTest.java             final FutureTask<PrintingControllerImpl> task =
task              155 chrome/android/javatests/src/org/chromium/chrome/browser/printing/PrintingControllerTest.java             runTestOnUiThread(task);
task              156 chrome/android/javatests/src/org/chromium/chrome/browser/printing/PrintingControllerTest.java             PrintingControllerImpl result = task.get(TEST_TIMEOUT, TimeUnit.MILLISECONDS);
task             1126 chrome/browser/android/provider/chrome_browser_provider.cc   IsInMobileBookmarksBranchTask task(model);
task             1127 chrome/browser/android/provider/chrome_browser_provider.cc   if (task.Run(parent_id))
task             1205 chrome/browser/android/provider/chrome_browser_provider.cc   AddBookmarkTask task(bookmark_model_);
task             1206 chrome/browser/android/provider/chrome_browser_provider.cc   return task.Run(title, url, is_folder, parent_id);
task             1210 chrome/browser/android/provider/chrome_browser_provider.cc   RemoveBookmarkTask task(bookmark_model_);
task             1211 chrome/browser/android/provider/chrome_browser_provider.cc   return task.Run(id);
task             1225 chrome/browser/android/provider/chrome_browser_provider.cc   UpdateBookmarkTask task(bookmark_model_);
task             1226 chrome/browser/android/provider/chrome_browser_provider.cc   return task.Run(id, title, url, parent_id);
task             1252 chrome/browser/android/provider/chrome_browser_provider.cc   AddBookmarkFromAPITask task(service_.get(), &android_history_consumer_);
task             1253 chrome/browser/android/provider/chrome_browser_provider.cc   return task.Run(row);
task             1298 chrome/browser/android/provider/chrome_browser_provider.cc   QueryBookmarksFromAPITask task(service_.get(), &android_history_consumer_);
task             1299 chrome/browser/android/provider/chrome_browser_provider.cc   history::AndroidStatement* statement = task.Run(
task             1335 chrome/browser/android/provider/chrome_browser_provider.cc   UpdateBookmarksFromAPITask task(service_.get(), &android_history_consumer_);
task             1336 chrome/browser/android/provider/chrome_browser_provider.cc   return task.Run(row, where_clause, where_args);
task             1350 chrome/browser/android/provider/chrome_browser_provider.cc   RemoveBookmarksFromAPITask task(service_.get(), &android_history_consumer_);
task             1351 chrome/browser/android/provider/chrome_browser_provider.cc   return task.Run(where_clause, where_args);
task             1365 chrome/browser/android/provider/chrome_browser_provider.cc   RemoveHistoryFromAPITask task(service_.get(), &android_history_consumer_);
task             1366 chrome/browser/android/provider/chrome_browser_provider.cc   return task.Run(where_clause, where_args);
task             1386 chrome/browser/android/provider/chrome_browser_provider.cc   AddSearchTermFromAPITask task(service_.get(), &android_history_consumer_,
task             1388 chrome/browser/android/provider/chrome_browser_provider.cc   return task.Run(row);
task             1432 chrome/browser/android/provider/chrome_browser_provider.cc   QuerySearchTermsFromAPITask task(service_.get(), &android_history_consumer_,
task             1434 chrome/browser/android/provider/chrome_browser_provider.cc   history::AndroidStatement* statement = task.Run(
task             1459 chrome/browser/android/provider/chrome_browser_provider.cc   UpdateSearchTermsFromAPITask task(service_.get(), &android_history_consumer_,
task             1461 chrome/browser/android/provider/chrome_browser_provider.cc   return task.Run(row, where_clause, where_args);
task             1473 chrome/browser/android/provider/chrome_browser_provider.cc   RemoveSearchTermsFromAPITask task(service_.get(), &android_history_consumer_,
task             1475 chrome/browser/android/provider/chrome_browser_provider.cc   return task.Run(where_clause, where_args);
task             1484 chrome/browser/android/provider/chrome_browser_provider.cc   BookmarkNodeExistsTask task(bookmark_model_);
task             1485 chrome/browser/android/provider/chrome_browser_provider.cc   return task.Run(id);
task             1497 chrome/browser/android/provider/chrome_browser_provider.cc   CreateBookmarksFolderOnceTask task(bookmark_model_);
task             1498 chrome/browser/android/provider/chrome_browser_provider.cc   return task.Run(title, parent_id);
task             1505 chrome/browser/android/provider/chrome_browser_provider.cc   GetAllBookmarkFoldersTask task(bookmark_model_);
task             1506 chrome/browser/android/provider/chrome_browser_provider.cc   task.Run(&jroot);
task             1511 chrome/browser/android/provider/chrome_browser_provider.cc   RemoveAllBookmarksTask task(bookmark_model_);
task             1512 chrome/browser/android/provider/chrome_browser_provider.cc   task.Run();
task             1519 chrome/browser/android/provider/chrome_browser_provider.cc   GetBookmarkNodeTask task(bookmark_model_);
task             1520 chrome/browser/android/provider/chrome_browser_provider.cc   task.Run(id, get_parent, get_children, &jnode);
task             1528 chrome/browser/android/provider/chrome_browser_provider.cc   GetMobileBookmarksNodeTask task(bookmark_model_);
task             1529 chrome/browser/android/provider/chrome_browser_provider.cc   ConvertBookmarkNode(task.Run(), ScopedJavaLocalRef<jobject>(), &jnode);
task             1537 chrome/browser/android/provider/chrome_browser_provider.cc   IsInMobileBookmarksBranchTask task(bookmark_model_);
task             1538 chrome/browser/android/provider/chrome_browser_provider.cc   return task.Run(id);
task              226 chrome/browser/chrome_browser_main_posix.cc   base::Closure task = base::Bind(&ExitHandler::ExitWhenPossibleOnUIThread);
task              228 chrome/browser/chrome_browser_main_posix.cc   if (!BrowserThread::PostTask(BrowserThread::UI, FROM_HERE, task)) {
task               59 chrome/browser/chromeos/attestation/attestation_policy_observer.cc   const base::Closure& task = value ? on_true : on_false;
task               60 chrome/browser/chromeos/attestation/attestation_policy_observer.cc   if (!task.is_null())
task               61 chrome/browser/chromeos/attestation/attestation_policy_observer.cc     task.Run();
task              190 chrome/browser/chromeos/drive/change_list_loader.cc void LoaderController::ScheduleRun(const base::Closure& task) {
task              192 chrome/browser/chromeos/drive/change_list_loader.cc   DCHECK(!task.is_null());
task              195 chrome/browser/chromeos/drive/change_list_loader.cc     pending_tasks_.push_back(task);
task              197 chrome/browser/chromeos/drive/change_list_loader.cc     task.Run();
task               63 chrome/browser/chromeos/drive/change_list_loader.h   void ScheduleRun(const base::Closure& task);
task              243 chrome/browser/chromeos/drive/job_scheduler.cc   new_job->task = base::Bind(
task              259 chrome/browser/chromeos/drive/job_scheduler.cc   new_job->task = base::Bind(
task              276 chrome/browser/chromeos/drive/job_scheduler.cc   new_job->task = base::Bind(
task              295 chrome/browser/chromeos/drive/job_scheduler.cc   new_job->task = base::Bind(
task              314 chrome/browser/chromeos/drive/job_scheduler.cc   new_job->task = base::Bind(
task              333 chrome/browser/chromeos/drive/job_scheduler.cc   new_job->task = base::Bind(
task              352 chrome/browser/chromeos/drive/job_scheduler.cc   new_job->task = base::Bind(
task              371 chrome/browser/chromeos/drive/job_scheduler.cc   new_job->task = base::Bind(
task              392 chrome/browser/chromeos/drive/job_scheduler.cc   new_job->task = base::Bind(
task              414 chrome/browser/chromeos/drive/job_scheduler.cc   new_job->task = base::Bind(
task              436 chrome/browser/chromeos/drive/job_scheduler.cc   new_job->task = base::Bind(
task              458 chrome/browser/chromeos/drive/job_scheduler.cc   new_job->task = base::Bind(
task              486 chrome/browser/chromeos/drive/job_scheduler.cc   new_job->task = base::Bind(
task              510 chrome/browser/chromeos/drive/job_scheduler.cc   new_job->task = base::Bind(
task              531 chrome/browser/chromeos/drive/job_scheduler.cc   new_job->task = base::Bind(
task              553 chrome/browser/chromeos/drive/job_scheduler.cc   new_job->task = base::Bind(
task              576 chrome/browser/chromeos/drive/job_scheduler.cc   new_job->task = base::Bind(
task              604 chrome/browser/chromeos/drive/job_scheduler.cc   new_job->task = base::Bind(
task              656 chrome/browser/chromeos/drive/job_scheduler.cc   new_job->task = base::Bind(&RunUploadNewFile, uploader_.get(), params);
task              693 chrome/browser/chromeos/drive/job_scheduler.cc   new_job->task = base::Bind(&RunUploadExistingFile, uploader_.get(), params);
task              707 chrome/browser/chromeos/drive/job_scheduler.cc   new_job->task = base::Bind(&DriveServiceInterface::AddPermission,
task              727 chrome/browser/chromeos/drive/job_scheduler.cc   DCHECK(!job->task.is_null());
task              794 chrome/browser/chromeos/drive/job_scheduler.cc   entry->cancel_callback = entry->task.Run();
task             1009 chrome/browser/chromeos/drive/job_scheduler.cc                                  job_entry->task,
task             1014 chrome/browser/chromeos/drive/job_scheduler.cc     job_entry->task = base::Bind(&RunResumeUploadFile, uploader_.get(), params);
task             1037 chrome/browser/chromeos/drive/job_scheduler.cc     job_entry->task = original_task;
task              242 chrome/browser/chromeos/drive/job_scheduler.h     base::Callback<google_apis::CancelCallback()> task;
task              131 chrome/browser/chromeos/drive/sync_client.cc base::Closure RunTaskAndReturnDummyCancelClosure(const base::Closure& task) {
task              132 chrome/browser/chromeos/drive/sync_client.cc   task.Run();
task              216 chrome/browser/chromeos/drive/sync_client.cc   SyncTask* task = &it->second;
task              217 chrome/browser/chromeos/drive/sync_client.cc   switch (task->state) {
task              222 chrome/browser/chromeos/drive/sync_client.cc       if (!task->cancel_closure.is_null())
task              223 chrome/browser/chromeos/drive/sync_client.cc         task->cancel_closure.Run();
task              238 chrome/browser/chromeos/drive/sync_client.cc   SyncTask task;
task              239 chrome/browser/chromeos/drive/sync_client.cc   task.task = base::Bind(
task              249 chrome/browser/chromeos/drive/sync_client.cc   AddTask(SyncTasks::key_type(FETCH, local_id), task, delay);
task              255 chrome/browser/chromeos/drive/sync_client.cc   SyncTask task;
task              256 chrome/browser/chromeos/drive/sync_client.cc   task.task = base::Bind(
task              265 chrome/browser/chromeos/drive/sync_client.cc   AddTask(SyncTasks::key_type(UPDATE, local_id), task, delay);
task              269 chrome/browser/chromeos/drive/sync_client.cc                          const SyncTask& task,
task              287 chrome/browser/chromeos/drive/sync_client.cc   DCHECK_EQ(PENDING, task.state);
task              288 chrome/browser/chromeos/drive/sync_client.cc   tasks_[key] = task;
task              301 chrome/browser/chromeos/drive/sync_client.cc   SyncTask* task = &it->second;
task              302 chrome/browser/chromeos/drive/sync_client.cc   switch (task->state) {
task              304 chrome/browser/chromeos/drive/sync_client.cc       task->state = RUNNING;
task              305 chrome/browser/chromeos/drive/sync_client.cc       task->cancel_closure = task->task.Run();
task              349 chrome/browser/chromeos/drive/sync_client.cc     it->second.task.Run();
task              104 chrome/browser/chromeos/drive/sync_client.h     base::Callback<base::Closure()> task;
task              122 chrome/browser/chromeos/drive/sync_client.h                const SyncTask& task,
task               65 chrome/browser/chromeos/extensions/file_manager/private_api_tasks.cc   file_manager::file_tasks::TaskDescriptor task;
task               66 chrome/browser/chromeos/extensions/file_manager/private_api_tasks.cc   if (!file_manager::file_tasks::ParseTaskID(params->task_id, &task)) {
task               99 chrome/browser/chromeos/extensions/file_manager/private_api_tasks.cc       task,
task              172 chrome/browser/chromeos/extensions/file_manager/private_api_tasks.cc     const file_manager::file_tasks::FullTaskDescriptor& task = tasks[i];
task              175 chrome/browser/chromeos/extensions/file_manager/private_api_tasks.cc         task.task_descriptor());
task              176 chrome/browser/chromeos/extensions/file_manager/private_api_tasks.cc     if (!task.icon_url().is_empty())
task              177 chrome/browser/chromeos/extensions/file_manager/private_api_tasks.cc       converted->icon_url = task.icon_url().spec();
task              178 chrome/browser/chromeos/extensions/file_manager/private_api_tasks.cc     converted->title = task.task_title();
task              179 chrome/browser/chromeos/extensions/file_manager/private_api_tasks.cc     converted->is_default = task.is_default();
task              485 chrome/browser/chromeos/file_manager/file_browser_handlers.cc bool IsFallbackFileBrowserHandler(const file_tasks::TaskDescriptor& task) {
task              486 chrome/browser/chromeos/file_manager/file_browser_handlers.cc   return (task.task_type == file_tasks::TASK_TYPE_FILE_BROWSER_HANDLER &&
task              487 chrome/browser/chromeos/file_manager/file_browser_handlers.cc           (task.app_id == kFileManagerAppId ||
task              488 chrome/browser/chromeos/file_manager/file_browser_handlers.cc            task.app_id == extension_misc::kQuickOfficeComponentExtensionId ||
task              489 chrome/browser/chromeos/file_manager/file_browser_handlers.cc            task.app_id == extension_misc::kQuickOfficeInternalExtensionId ||
task              490 chrome/browser/chromeos/file_manager/file_browser_handlers.cc            task.app_id == extension_misc::kQuickOfficeExtensionId));
task               43 chrome/browser/chromeos/file_manager/file_browser_handlers.h bool IsFallbackFileBrowserHandler(const file_tasks::TaskDescriptor& task);
task              243 chrome/browser/chromeos/file_manager/file_tasks.cc bool ParseTaskID(const std::string& task_id, TaskDescriptor* task) {
task              244 chrome/browser/chromeos/file_manager/file_tasks.cc   DCHECK(task);
task              255 chrome/browser/chromeos/file_manager/file_tasks.cc       task->task_type = TASK_TYPE_DRIVE_APP;
task              256 chrome/browser/chromeos/file_manager/file_tasks.cc       task->app_id = result[0].substr(kDriveTaskExtensionPrefixLength);
task              258 chrome/browser/chromeos/file_manager/file_tasks.cc       task->task_type = TASK_TYPE_FILE_BROWSER_HANDLER;
task              259 chrome/browser/chromeos/file_manager/file_tasks.cc       task->app_id = result[0];
task              262 chrome/browser/chromeos/file_manager/file_tasks.cc     task->action_id = result[1];
task              274 chrome/browser/chromeos/file_manager/file_tasks.cc   task->app_id = result[0];
task              275 chrome/browser/chromeos/file_manager/file_tasks.cc   task->task_type = task_type;
task              276 chrome/browser/chromeos/file_manager/file_tasks.cc   task->action_id = result[2];
task              283 chrome/browser/chromeos/file_manager/file_tasks.cc                      const TaskDescriptor& task,
task              287 chrome/browser/chromeos/file_manager/file_tasks.cc   if (task.task_type == TASK_TYPE_DRIVE_APP) {
task              288 chrome/browser/chromeos/file_manager/file_tasks.cc     DCHECK_EQ(kDriveAppActionID, task.action_id);
task              290 chrome/browser/chromeos/file_manager/file_tasks.cc         new drive::FileTaskExecutor(profile, task.app_id);
task              299 chrome/browser/chromeos/file_manager/file_tasks.cc       service->GetExtensionById(task.app_id, false) : NULL;
task              304 chrome/browser/chromeos/file_manager/file_tasks.cc   if (task.task_type == TASK_TYPE_FILE_BROWSER_HANDLER) {
task              308 chrome/browser/chromeos/file_manager/file_tasks.cc         task.action_id,
task              311 chrome/browser/chromeos/file_manager/file_tasks.cc   } else if (task.task_type == TASK_TYPE_FILE_HANDLER) {
task              314 chrome/browser/chromeos/file_manager/file_tasks.cc           profile, extension, task.action_id, file_urls[i].path());
task              534 chrome/browser/chromeos/file_manager/file_tasks.cc     FullTaskDescriptor* task = &tasks->at(i);
task              535 chrome/browser/chromeos/file_manager/file_tasks.cc     DCHECK(!task->is_default());
task              536 chrome/browser/chromeos/file_manager/file_tasks.cc     const std::string task_id = TaskDescriptorToId(task->task_descriptor());
task              538 chrome/browser/chromeos/file_manager/file_tasks.cc       task->set_is_default(true);
task              546 chrome/browser/chromeos/file_manager/file_tasks.cc     FullTaskDescriptor* task = &tasks->at(i);
task              547 chrome/browser/chromeos/file_manager/file_tasks.cc     DCHECK(!task->is_default());
task              549 chrome/browser/chromeos/file_manager/file_tasks.cc             task->task_descriptor())) {
task              550 chrome/browser/chromeos/file_manager/file_tasks.cc       task->set_is_default(true);
task              226 chrome/browser/chromeos/file_manager/file_tasks.h bool ParseTaskID(const std::string& task_id, TaskDescriptor* task);
task              248 chrome/browser/chromeos/file_manager/file_tasks.h                      const TaskDescriptor& task,
task              116 chrome/browser/chromeos/file_manager/file_tasks_unittest.cc   TaskDescriptor task;
task              117 chrome/browser/chromeos/file_manager/file_tasks_unittest.cc   EXPECT_TRUE(ParseTaskID("app-id|file|action-id", &task));
task              118 chrome/browser/chromeos/file_manager/file_tasks_unittest.cc   EXPECT_EQ("app-id", task.app_id);
task              119 chrome/browser/chromeos/file_manager/file_tasks_unittest.cc   EXPECT_EQ(TASK_TYPE_FILE_BROWSER_HANDLER, task.task_type);
task              120 chrome/browser/chromeos/file_manager/file_tasks_unittest.cc   EXPECT_EQ("action-id", task.action_id);
task              124 chrome/browser/chromeos/file_manager/file_tasks_unittest.cc   TaskDescriptor task;
task              125 chrome/browser/chromeos/file_manager/file_tasks_unittest.cc   EXPECT_TRUE(ParseTaskID("app-id|app|action-id", &task));
task              126 chrome/browser/chromeos/file_manager/file_tasks_unittest.cc   EXPECT_EQ("app-id", task.app_id);
task              127 chrome/browser/chromeos/file_manager/file_tasks_unittest.cc   EXPECT_EQ(TASK_TYPE_FILE_HANDLER, task.task_type);
task              128 chrome/browser/chromeos/file_manager/file_tasks_unittest.cc   EXPECT_EQ("action-id", task.action_id);
task              132 chrome/browser/chromeos/file_manager/file_tasks_unittest.cc   TaskDescriptor task;
task              133 chrome/browser/chromeos/file_manager/file_tasks_unittest.cc   EXPECT_TRUE(ParseTaskID("app-id|drive|action-id", &task));
task              134 chrome/browser/chromeos/file_manager/file_tasks_unittest.cc   EXPECT_EQ("app-id", task.app_id);
task              135 chrome/browser/chromeos/file_manager/file_tasks_unittest.cc   EXPECT_EQ(TASK_TYPE_DRIVE_APP, task.task_type);
task              136 chrome/browser/chromeos/file_manager/file_tasks_unittest.cc   EXPECT_EQ("action-id", task.action_id);
task              140 chrome/browser/chromeos/file_manager/file_tasks_unittest.cc   TaskDescriptor task;
task              143 chrome/browser/chromeos/file_manager/file_tasks_unittest.cc   EXPECT_TRUE(ParseTaskID("app-id|action-id", &task));
task              144 chrome/browser/chromeos/file_manager/file_tasks_unittest.cc   EXPECT_EQ("app-id", task.app_id);
task              145 chrome/browser/chromeos/file_manager/file_tasks_unittest.cc   EXPECT_EQ(TASK_TYPE_FILE_BROWSER_HANDLER, task.task_type);
task              146 chrome/browser/chromeos/file_manager/file_tasks_unittest.cc   EXPECT_EQ("action-id", task.action_id);
task              150 chrome/browser/chromeos/file_manager/file_tasks_unittest.cc   TaskDescriptor task;
task              153 chrome/browser/chromeos/file_manager/file_tasks_unittest.cc   EXPECT_TRUE(ParseTaskID("drive-app:app-id|action-id", &task));
task              154 chrome/browser/chromeos/file_manager/file_tasks_unittest.cc   EXPECT_EQ("app-id", task.app_id);
task              155 chrome/browser/chromeos/file_manager/file_tasks_unittest.cc   EXPECT_EQ(TASK_TYPE_DRIVE_APP, task.task_type);
task              156 chrome/browser/chromeos/file_manager/file_tasks_unittest.cc   EXPECT_EQ("action-id", task.action_id);
task              160 chrome/browser/chromeos/file_manager/file_tasks_unittest.cc   TaskDescriptor task;
task              161 chrome/browser/chromeos/file_manager/file_tasks_unittest.cc   EXPECT_FALSE(ParseTaskID("invalid", &task));
task              165 chrome/browser/chromeos/file_manager/file_tasks_unittest.cc   TaskDescriptor task;
task              166 chrome/browser/chromeos/file_manager/file_tasks_unittest.cc   EXPECT_FALSE(ParseTaskID("app-id|unknown|action-id", &task));
task               56 chrome/browser/chromeos/file_manager/open_util.cc                            const file_tasks::TaskDescriptor& task,
task               64 chrome/browser/chromeos/file_manager/open_util.cc       task,
task               85 chrome/browser/chromeos/file_manager/open_util.cc   file_tasks::TaskDescriptor task(kFileManagerAppId,
task               88 chrome/browser/chromeos/file_manager/open_util.cc   ExecuteFileTaskForUrl(profile, task, url);
task              330 chrome/browser/chromeos/login/login_utils_browsertest.cc   void InvokeOnIO(const base::Closure& task) {
task              331 chrome/browser/chromeos/login/login_utils_browsertest.cc     fake_io_thread_work_ = task;
task              110 chrome/browser/chromeos/login/oauth2_token_fetcher.cc                                       const base::Closure& task,
task              119 chrome/browser/chromeos/login/oauth2_token_fetcher.cc         BrowserThread::UI, FROM_HERE, task,
task               50 chrome/browser/chromeos/login/oauth2_token_fetcher.h                     const base::Closure& task,
task              106 chrome/browser/chromeos/policy/policy_oauth2_token_fetcher.cc                                             const base::Closure& task) {
task              114 chrome/browser/chromeos/policy/policy_oauth2_token_fetcher.cc         BrowserThread::UI, FROM_HERE, task,
task               99 chrome/browser/chromeos/policy/policy_oauth2_token_fetcher.h                     const base::Closure& task);
task               50 chrome/browser/chromeos/session_length_limiter_unittest.cc                                const base::Closure& task,
task               54 chrome/browser/chromeos/session_length_limiter_unittest.cc       const base::Closure& task,
task              140 chrome/browser/chromeos/session_length_limiter_unittest.cc     const base::Closure& task,
task              142 chrome/browser/chromeos/session_length_limiter_unittest.cc   tasks_.push(std::pair<base::TimeTicks, base::Closure>(now_ + delay, task));
task              148 chrome/browser/chromeos/session_length_limiter_unittest.cc     const base::Closure& task,
task              163 chrome/browser/chromeos/session_length_limiter_unittest.cc     base::Closure task = tasks_.top().second;
task              165 chrome/browser/chromeos/session_length_limiter_unittest.cc     task.Run();
task              173 chrome/browser/chromeos/session_length_limiter_unittest.cc     base::Closure task = tasks_.top().second;
task              175 chrome/browser/chromeos/session_length_limiter_unittest.cc     task.Run();
task               66 chrome/browser/chromeos/system/automatic_reboot_manager_unittest.cc                                const base::Closure& task,
task               70 chrome/browser/chromeos/system/automatic_reboot_manager_unittest.cc       const base::Closure& task,
task              228 chrome/browser/chromeos/system/automatic_reboot_manager_unittest.cc     const base::Closure& task,
task              230 chrome/browser/chromeos/system/automatic_reboot_manager_unittest.cc   tasks_.push(std::pair<base::TimeTicks, base::Closure>(now_ + delay, task));
task              236 chrome/browser/chromeos/system/automatic_reboot_manager_unittest.cc     const base::Closure& task,
task              271 chrome/browser/chromeos/system/automatic_reboot_manager_unittest.cc     base::Closure task = tasks_.top().second;
task              273 chrome/browser/chromeos/system/automatic_reboot_manager_unittest.cc     task.Run();
task              289 chrome/browser/chromeos/system/automatic_reboot_manager_unittest.cc     base::Closure task = tasks_.top().second;
task              291 chrome/browser/chromeos/system/automatic_reboot_manager_unittest.cc     task.Run();
task              301 chrome/browser/chromeos/system/automatic_reboot_manager_unittest.cc     base::Closure task = tasks_.top().second;
task              303 chrome/browser/chromeos/system/automatic_reboot_manager_unittest.cc     task.Run();
task              143 chrome/browser/extensions/api/web_request/web_request_api_unittest.cc   void PushTask(const base::Closure& task) {
task              144 chrome/browser/extensions/api/web_request/web_request_api_unittest.cc     task_queue_.push(task);
task               37 chrome/browser/extensions/state_store.cc   void InvokeWhenReady(base::Closure task);
task               50 chrome/browser/extensions/state_store.cc void StateStore::DelayedTaskQueue::InvokeWhenReady(base::Closure task) {
task               52 chrome/browser/extensions/state_store.cc     task.Run();
task               54 chrome/browser/extensions/state_store.cc     pending_tasks_.push_back(task);
task              125 chrome/browser/first_run/first_run.cc   explicit FirstRunDelayedTasks(Tasks task) {
task              126 chrome/browser/first_run/first_run.cc     if (task == INSTALL_EXTENSIONS) {
task              214 chrome/browser/history/history_backend.cc                                              const base::Closure& task) {
task              218 chrome/browser/history/history_backend.cc   backend_destroy_task_ = task;
task              451 chrome/browser/history/history_backend.h                                const base::Closure& task);
task               90 chrome/browser/history/history_browsertest.cc     scoped_refptr<history::HistoryDBTask> task(new WaitForHistoryTask());
task               94 chrome/browser/history/history_browsertest.cc     history->HistoryService::ScheduleDBTask(task.get(), &request_consumer);
task              397 chrome/browser/history/history_service.cc void HistoryService::ScheduleDBTask(history::HistoryDBTask* task,
task              401 chrome/browser/history/history_service.cc       base::Bind(&history::HistoryDBTask::DoneRunOnMainThread, task));
task              402 chrome/browser/history/history_service.cc   request->value = task;  // The value is the task to execute.
task              422 chrome/browser/history/history_service.cc void HistoryService::SetOnBackendDestroyTask(const base::Closure& task) {
task              425 chrome/browser/history/history_service.cc                     base::MessageLoop::current(), task);
task              966 chrome/browser/history/history_service.cc                                   const base::Closure& task) {
task              971 chrome/browser/history/history_service.cc   thread_->message_loop()->PostTask(FROM_HERE, task);
task              513 chrome/browser/history/history_service.h   virtual void ScheduleDBTask(history::HistoryDBTask* task,
task              536 chrome/browser/history/history_service.h   void SetOnBackendDestroyTask(const base::Closure& task);
task              809 chrome/browser/history/history_service.h   void ScheduleTask(SchedulePriority priority, const base::Closure& task);
task             1515 chrome/browser/history/history_unittest.cc   scoped_refptr<HistoryDBTaskImpl> task(new HistoryDBTaskImpl());
task             1516 chrome/browser/history/history_unittest.cc   history_service_->ScheduleDBTask(task.get(), &request_consumer);
task             1524 chrome/browser/history/history_unittest.cc   ASSERT_EQ(HistoryDBTaskImpl::kWantInvokeCount, task->invoke_count);
task             1525 chrome/browser/history/history_unittest.cc   ASSERT_TRUE(task->done_invoked);
task             1531 chrome/browser/history/history_unittest.cc   scoped_refptr<HistoryDBTaskImpl> task(new HistoryDBTaskImpl());
task             1532 chrome/browser/history/history_unittest.cc   history_service_->ScheduleDBTask(task.get(), &request_consumer);
task             1537 chrome/browser/history/history_unittest.cc   ASSERT_FALSE(task->done_invoked);
task               31 chrome/browser/media_galleries/fileapi/iapps_finder_impl.cc                            const IAppsFinderTask& task,
task               34 chrome/browser/media_galleries/fileapi/iapps_finder_impl.cc   DCHECK(!task.is_null());
task               40 chrome/browser/media_galleries/fileapi/iapps_finder_impl.cc       base::Bind(task, base::Bind(PostResultToUIThread, type, callback)));
task               52 chrome/browser/media_galleries/fileapi/iapps_finder_impl.h                            const IAppsFinderTask& task,
task              187 chrome/browser/media_galleries/linux/mtp_device_delegate_impl_linux.cc     const base::Closure& task)
task              189 chrome/browser/media_galleries/linux/mtp_device_delegate_impl_linux.cc       task(task) {
task              329 chrome/browser/media_galleries/linux/mtp_device_delegate_impl_linux.cc                                      task_info.task);
task              381 chrome/browser/media_galleries/linux/mtp_device_delegate_impl_linux.cc                                    task_info.task);
task               45 chrome/browser/media_galleries/linux/mtp_device_delegate_impl_linux.h                     const base::Closure& task);
task               49 chrome/browser/media_galleries/linux/mtp_device_delegate_impl_linux.h     const base::Closure task;
task              351 chrome/browser/media_galleries/win/mtp_device_delegate_impl_win.cc     const base::Callback<base::File::Error(void)>& task,
task              354 chrome/browser/media_galleries/win/mtp_device_delegate_impl_win.cc       task(task),
task              478 chrome/browser/media_galleries/win/mtp_device_delegate_impl_win.cc                                      task_info.task,
task              519 chrome/browser/media_galleries/win/mtp_device_delegate_impl_win.cc                                    task_info.task,
task               75 chrome/browser/media_galleries/win/mtp_device_delegate_impl_win.h                     const base::Callback<base::File::Error(void)>& task,
task               79 chrome/browser/media_galleries/win/mtp_device_delegate_impl_win.h     const base::Callback<base::File::Error(void)> task;
task              823 chrome/browser/metrics/thread_watcher.cc                               const base::Closure& task) {
task              824 chrome/browser/metrics/thread_watcher.cc   return PostTaskHelper(from_here, task, base::TimeDelta());
task              829 chrome/browser/metrics/thread_watcher.cc                                      const base::Closure& task,
task              831 chrome/browser/metrics/thread_watcher.cc   return PostTaskHelper(from_here, task, delay);
task              837 chrome/browser/metrics/thread_watcher.cc     const base::Closure& task,
task              845 chrome/browser/metrics/thread_watcher.cc       message_loop->PostDelayedTask(from_here, task, delay);
task              569 chrome/browser/metrics/thread_watcher.h                        const base::Closure& task);
task              571 chrome/browser/metrics/thread_watcher.h                               const base::Closure& task,
task              581 chrome/browser/metrics/thread_watcher.h       const base::Closure& task,
task               10 chrome/browser/metrics/variations/variations_request_scheduler.cc     const base::Closure& task) : task_(task) {
task               50 chrome/browser/metrics/variations/variations_request_scheduler.cc     const base::Closure& task,
task               52 chrome/browser/metrics/variations/variations_request_scheduler.cc   return new VariationsRequestScheduler(task);
task               37 chrome/browser/metrics/variations/variations_request_scheduler.h   static VariationsRequestScheduler* Create(const base::Closure& task,
task               42 chrome/browser/metrics/variations/variations_request_scheduler.h   explicit VariationsRequestScheduler(const base::Closure& task);
task               45 chrome/browser/metrics/variations/variations_request_scheduler.h   base::Closure task() const;
task               23 chrome/browser/metrics/variations/variations_request_scheduler_mobile.cc     const base::Closure& task,
task               25 chrome/browser/metrics/variations/variations_request_scheduler_mobile.cc   VariationsRequestScheduler(task), local_state_(local_state) {
task               41 chrome/browser/metrics/variations/variations_request_scheduler_mobile.cc     task().Run();
task               69 chrome/browser/metrics/variations/variations_request_scheduler_mobile.cc     const base::Closure& task,
task               71 chrome/browser/metrics/variations/variations_request_scheduler_mobile.cc   return new VariationsRequestSchedulerMobile(task, local_state);
task               21 chrome/browser/metrics/variations/variations_request_scheduler_mobile.h   explicit VariationsRequestSchedulerMobile(const base::Closure& task,
task               31 chrome/browser/metrics/variations/variations_request_scheduler_mobile_unittest.cc   const base::Closure task = base::Bind(&Increment, &executed);
task               32 chrome/browser/metrics/variations/variations_request_scheduler_mobile_unittest.cc   VariationsRequestSchedulerMobile scheduler(task, &prefs);
task               45 chrome/browser/metrics/variations/variations_request_scheduler_mobile_unittest.cc   const base::Closure task = base::Bind(&Increment, &executed);
task               46 chrome/browser/metrics/variations/variations_request_scheduler_mobile_unittest.cc   VariationsRequestSchedulerMobile scheduler(task, &prefs);
task               61 chrome/browser/metrics/variations/variations_request_scheduler_mobile_unittest.cc   const base::Closure task = base::Bind(&Increment, &executed);
task               62 chrome/browser/metrics/variations/variations_request_scheduler_mobile_unittest.cc   VariationsRequestSchedulerMobile scheduler(task, &prefs);
task               88 chrome/browser/metrics/variations/variations_request_scheduler_mobile_unittest.cc   const base::Closure task = base::Bind(&Increment, &executed);
task               89 chrome/browser/metrics/variations/variations_request_scheduler_mobile_unittest.cc   VariationsRequestSchedulerMobile scheduler(task, &prefs);
task              115 chrome/browser/metrics/variations/variations_request_scheduler_mobile_unittest.cc   const base::Closure task = base::Bind(&Increment, &executed);
task              116 chrome/browser/metrics/variations/variations_request_scheduler_mobile_unittest.cc   VariationsRequestSchedulerMobile scheduler(task, &prefs);
task               23 chrome/browser/metrics/variations/variations_request_scheduler_unittest.cc   const base::Closure task = base::Bind(&DoNothing);
task               24 chrome/browser/metrics/variations/variations_request_scheduler_unittest.cc   VariationsRequestScheduler scheduler(task);
task              268 chrome/browser/net/connection_tester.cc     base::Callback<int(void)> task = base::Bind(
task              275 chrome/browser/net/connection_tester.cc             content::BrowserThread::FILE, FROM_HERE, task, reply))
task              103 chrome/browser/notifications/extension_welcome_notification.cc       const base::Closure& task) OVERRIDE {
task              104 chrome/browser/notifications/extension_welcome_notification.cc     base::MessageLoop::current()->PostTask(from_here, task);
task               53 chrome/browser/notifications/extension_welcome_notification.h         const base::Closure& task) = 0;
task               97 chrome/browser/notifications/extension_welcome_notification_unittest.cc       const base::Closure& task) OVERRIDE {
task               99 chrome/browser/notifications/extension_welcome_notification_unittest.cc     pending_task_ = task;
task              273 chrome/browser/policy/cloud/test_request_interceptor.cc void TestRequestInterceptor::PostToIOAndWait(const base::Closure& task) {
task              274 chrome/browser/policy/cloud/test_request_interceptor.cc   io_task_runner_->PostTask(FROM_HERE, task);
task               74 chrome/browser/policy/cloud/test_request_interceptor.h   void PostToIOAndWait(const base::Closure& task);
task              225 chrome/browser/printing/cloud_print/cloud_print_proxy_service.cc bool CloudPrintProxyService::InvokeServiceTask(const base::Closure& task) {
task              226 chrome/browser/printing/cloud_print/cloud_print_proxy_service.cc   GetServiceProcessControl()->Launch(task, base::Closure());
task               87 chrome/browser/printing/cloud_print/cloud_print_proxy_service.h   bool InvokeServiceTask(const base::Closure& task);
task               84 chrome/browser/printing/cloud_print/cloud_print_proxy_service_unittest.cc void CallTask(const base::Closure& task) {
task               85 chrome/browser/printing/cloud_print/cloud_print_proxy_service_unittest.cc   if (!task.is_null())
task               86 chrome/browser/printing/cloud_print/cloud_print_proxy_service_unittest.cc     task.Run();
task               89 chrome/browser/printing/cloud_print/cloud_print_proxy_service_unittest.cc void PostTask(const base::Closure& task) {
task               90 chrome/browser/printing/cloud_print/cloud_print_proxy_service_unittest.cc   if (!task.is_null())
task               91 chrome/browser/printing/cloud_print/cloud_print_proxy_service_unittest.cc     base::MessageLoop::current()->PostTask(FROM_HERE, task);
task              295 chrome/browser/profile_resetter/automatic_profile_resetter.cc   void AddAsyncTask(const base::Closure& task) {
task              296 chrome/browser/profile_resetter/automatic_profile_resetter.cc     task_queue_.push(task);
task              300 chrome/browser/profile_resetter/automatic_profile_resetter.cc   void SynchronousTaskWrapper(const base::Closure& task) {
task              302 chrome/browser/profile_resetter/automatic_profile_resetter.cc     task.Run();
task              315 chrome/browser/profile_resetter/automatic_profile_resetter.cc   void AddTask(const base::Closure& task) {
task              317 chrome/browser/profile_resetter/automatic_profile_resetter.cc         base::Bind(&InputBuilder::SynchronousTaskWrapper, AsWeakPtr(), task));
task             1012 chrome/browser/safe_browsing/database_manager.cc     const base::Closure& task) {
task             1018 chrome/browser/safe_browsing/database_manager.cc   safe_browsing_thread_->message_loop()->PostTask(FROM_HERE, task);
task              327 chrome/browser/safe_browsing/database_manager.h                               const base::Closure& task);
task              369 chrome/browser/service_process/service_process_control.cc void ServiceProcessControl::Launcher::Run(const base::Closure& task) {
task              371 chrome/browser/service_process/service_process_control.cc   notify_task_ = task;
task              152 chrome/browser/service_process/service_process_control.h     void Run(const base::Closure& task);
task              212 chrome/browser/service_process/service_process_control_browsertest.cc     base::Closure task = base::Bind(&DecrementUntilZero, &launch_count);
task              213 chrome/browser/service_process/service_process_control_browsertest.cc     process->Launch(task, task);
task               91 chrome/browser/services/gcm/gcm_profile_service.cc   void AddTask(base::Closure task);
task              116 chrome/browser/services/gcm/gcm_profile_service.cc void GCMProfileService::DelayedTaskController::AddTask(base::Closure task) {
task              117 chrome/browser/services/gcm/gcm_profile_service.cc   delayed_tasks_.push_back(task);
task              299 chrome/browser/sessions/base_session_service.cc     const base::Closure& task) {
task              305 chrome/browser/sessions/base_session_service.cc                                          task);
task              310 chrome/browser/sessions/base_session_service.cc     task.Run();
task              161 chrome/browser/sessions/base_session_service.h                               const base::Closure& task);
task               58 chrome/browser/sync/glue/autofill_data_type_controller.cc     const base::Closure& task) {
task               60 chrome/browser/sync/glue/autofill_data_type_controller.cc   return BrowserThread::PostTask(BrowserThread::DB, from_here, task);
task               44 chrome/browser/sync/glue/autofill_data_type_controller.h       const base::Closure& task) OVERRIDE;
task               78 chrome/browser/sync/glue/autofill_profile_data_type_controller.cc     const base::Closure& task) {
task               80 chrome/browser/sync/glue/autofill_profile_data_type_controller.cc   return BrowserThread::PostTask(BrowserThread::DB, from_here, task);
task               42 chrome/browser/sync/glue/autofill_profile_data_type_controller.h       const base::Closure& task) OVERRIDE;
task               53 chrome/browser/sync/glue/extension_setting_data_type_controller.cc     const base::Closure& task) {
task               55 chrome/browser/sync/glue/extension_setting_data_type_controller.cc   return BrowserThread::PostTask(BrowserThread::FILE, from_here, task);
task               47 chrome/browser/sync/glue/extension_setting_data_type_controller.h       const base::Closure& task) OVERRIDE;
task               74 chrome/browser/sync/glue/history_model_worker.cc     scoped_refptr<WorkerTask> task(new WorkerTask(work, done, error));
task               75 chrome/browser/sync/glue/history_model_worker.cc     history_service->ScheduleDBTask(task.get(), cancelable_consumer);
task              115 chrome/browser/sync/glue/non_frontend_data_type_controller.h       const base::Closure& task) = 0;
task               82 chrome/browser/sync/glue/non_frontend_data_type_controller_unittest.cc       const base::Closure& task) OVERRIDE {
task               83 chrome/browser/sync/glue/non_frontend_data_type_controller_unittest.cc     return BrowserThread::PostTask(BrowserThread::DB, from_here, task);
task               77 chrome/browser/sync/glue/non_ui_data_type_controller.h       const base::Closure& task) = 0;
task               95 chrome/browser/sync/glue/non_ui_data_type_controller_unittest.cc       PostTaskOnBackendThread(it->from_here, it->task);
task              103 chrome/browser/sync/glue/non_ui_data_type_controller_unittest.cc       const base::Closure& task) OVERRIDE {
task              105 chrome/browser/sync/glue/non_ui_data_type_controller_unittest.cc       pending_tasks_.push_back(PendingTask(from_here, task));
task              108 chrome/browser/sync/glue/non_ui_data_type_controller_unittest.cc       return BrowserThread::PostTask(BrowserThread::DB, from_here, task);
task              140 chrome/browser/sync/glue/non_ui_data_type_controller_unittest.cc                 const base::Closure& task)
task              141 chrome/browser/sync/glue/non_ui_data_type_controller_unittest.cc         : from_here(from_here), task(task) {}
task              144 chrome/browser/sync/glue/non_ui_data_type_controller_unittest.cc     base::Closure task;
task               44 chrome/browser/sync/glue/password_data_type_controller.cc       const base::Closure& task) {
task               48 chrome/browser/sync/glue/password_data_type_controller.cc   return password_store_->ScheduleTask(task);
task               36 chrome/browser/sync/glue/password_data_type_controller.h       const base::Closure& task) OVERRIDE;
task               35 chrome/browser/sync/glue/typed_url_data_type_controller.cc   explicit RunTaskOnHistoryThread(const base::Closure& task,
task               37 chrome/browser/sync/glue/typed_url_data_type_controller.cc       : task_(new base::Closure(task)),
task              134 chrome/browser/sync/glue/typed_url_data_type_controller.cc     const base::Closure& task) {
task              139 chrome/browser/sync/glue/typed_url_data_type_controller.cc     history->ScheduleDBTask(new RunTaskOnHistoryThread(task, this),
task               48 chrome/browser/sync/glue/typed_url_data_type_controller.h       const base::Closure& task) OVERRIDE;
task              140 chrome/browser/sync/profile_sync_service_typed_url_unittest.cc                            history::HistoryDBTask* task) {
task              141 chrome/browser/sync/profile_sync_service_typed_url_unittest.cc   task->RunOnDBThread(backend, NULL);
task              147 chrome/browser/sync/profile_sync_service_typed_url_unittest.cc   scoped_refptr<history::HistoryDBTask> task(arg0);
task              150 chrome/browser/sync/profile_sync_service_typed_url_unittest.cc                             task));
task               61 chrome/browser/sync/test/integration/autofill_helper.cc void RunOnDBThreadAndSignal(base::Closure task,
task               63 chrome/browser/sync/test/integration/autofill_helper.cc   if (!task.is_null()) {
task               64 chrome/browser/sync/test/integration/autofill_helper.cc     task.Run();
task               69 chrome/browser/sync/test/integration/autofill_helper.cc void RunOnDBThreadAndBlock(base::Closure task) {
task               73 chrome/browser/sync/test/integration/autofill_helper.cc                           Bind(&RunOnDBThreadAndSignal, task, &done_event));
task              129 chrome/browser/sync_file_system/drive_backend/register_app_task_unittest.cc     RegisterAppTask task(context_.get(), app_id);
task              131 chrome/browser/sync_file_system/drive_backend/register_app_task_unittest.cc     task.RunExclusive(CreateResultReceiver(&status));
task              186 chrome/browser/sync_file_system/drive_backend/sync_engine.cc   scoped_ptr<RegisterAppTask> task(
task              188 chrome/browser/sync_file_system/drive_backend/sync_engine.cc   if (task->CanFinishImmediately()) {
task              195 chrome/browser/sync_file_system/drive_backend/sync_engine.cc       task.PassAs<SyncTask>(),
task               17 chrome/browser/sync_file_system/drive_backend/sync_task.cc void CallRunExclusive(const base::WeakPtr<ExclusiveTask>& task,
task               19 chrome/browser/sync_file_system/drive_backend/sync_task.cc   if (task)
task               20 chrome/browser/sync_file_system/drive_backend/sync_task.cc     task->RunExclusive(SyncTaskToken::WrapToCallback(token.Pass()));
task               22 chrome/browser/sync_file_system/drive_backend/sync_task_manager.cc   explicit SyncTaskAdapter(const SyncTaskManager::Task& task) : task_(task) {}
task               40 chrome/browser/sync_file_system/drive_backend/sync_task_manager.cc     const base::Closure& task, Priority pri, int seq)
task               41 chrome/browser/sync_file_system/drive_backend/sync_task_manager.cc     : task(task), priority(pri), seq(seq) {}
task               75 chrome/browser/sync_file_system/drive_backend/sync_task_manager.cc     const Task& task,
task               79 chrome/browser/sync_file_system/drive_backend/sync_task_manager.cc                    scoped_ptr<SyncTask>(new SyncTaskAdapter(task)),
task               86 chrome/browser/sync_file_system/drive_backend/sync_task_manager.cc     scoped_ptr<SyncTask> task,
task               93 chrome/browser/sync_file_system/drive_backend/sync_task_manager.cc                    base::Passed(&task), priority, callback),
task               97 chrome/browser/sync_file_system/drive_backend/sync_task_manager.cc   RunTask(token.Pass(), task.Pass());
task              102 chrome/browser/sync_file_system/drive_backend/sync_task_manager.cc         const Task& task,
task              106 chrome/browser/sync_file_system/drive_backend/sync_task_manager.cc       scoped_ptr<SyncTask>(new SyncTaskAdapter(task)),
task              112 chrome/browser/sync_file_system/drive_backend/sync_task_manager.cc     scoped_ptr<SyncTask> task,
task              117 chrome/browser/sync_file_system/drive_backend/sync_task_manager.cc   RunTask(token.Pass(), task.Pass());
task              169 chrome/browser/sync_file_system/drive_backend/sync_task_manager.cc   scoped_ptr<SyncTask> task;
task              174 chrome/browser/sync_file_system/drive_backend/sync_task_manager.cc     task = running_task_.Pass();
task              176 chrome/browser/sync_file_system/drive_backend/sync_task_manager.cc     task = running_background_task_.take_and_erase(token->token_id());
task              180 chrome/browser/sync_file_system/drive_backend/sync_task_manager.cc   if (task)
task              181 chrome/browser/sync_file_system/drive_backend/sync_task_manager.cc     task_used_network = task->used_network();
task              251 chrome/browser/sync_file_system/drive_backend/sync_task_manager.cc                               scoped_ptr<SyncTask> task) {
task              253 chrome/browser/sync_file_system/drive_backend/sync_task_manager.cc   running_task_ = task.Pass();
task              266 chrome/browser/sync_file_system/drive_backend/sync_task_manager.cc     base::Closure closure = pending_tasks_.top().task;
task               72 chrome/browser/sync_file_system/drive_backend/sync_task_manager.h                     const Task& task,
task               76 chrome/browser/sync_file_system/drive_backend/sync_task_manager.h                         scoped_ptr<SyncTask> task,
task               83 chrome/browser/sync_file_system/drive_backend/sync_task_manager.h                           const Task& task,
task               86 chrome/browser/sync_file_system/drive_backend/sync_task_manager.h                               scoped_ptr<SyncTask> task,
task               99 chrome/browser/sync_file_system/drive_backend/sync_task_manager.h     base::Closure task;
task              104 chrome/browser/sync_file_system/drive_backend/sync_task_manager.h     PendingTask(const base::Closure& task, Priority pri, int seq);
task              141 chrome/browser/sync_file_system/drive_backend/sync_task_manager.h                scoped_ptr<SyncTask> task);
task               63 chrome/browser/sync_file_system/local/canned_syncable_file_system.cc     const base::Callback<void(const base::Callback<void(R)>& callback)>& task) {
task               67 chrome/browser/sync_file_system/local/canned_syncable_file_system.cc       base::Bind(task, base::Bind(&AssignAndQuit<R>,
task               76 chrome/browser/sync_file_system/local/canned_syncable_file_system.cc                  const base::Closure& task) {
task               78 chrome/browser/sync_file_system/local/canned_syncable_file_system.cc       location, task,
task               21 chrome/browser/sync_file_system/local/syncable_file_operation_runner.cc     SyncableFileOperationRunner::Task* task) {
task               22 chrome/browser/sync_file_system/local/syncable_file_operation_runner.cc   task->Cancel();
task               23 chrome/browser/sync_file_system/local/syncable_file_operation_runner.cc   delete task;
task               69 chrome/browser/sync_file_system/local/syncable_file_operation_runner.cc void SyncableFileOperationRunner::PostOperationTask(scoped_ptr<Task> task) {
task               71 chrome/browser/sync_file_system/local/syncable_file_operation_runner.cc   pending_tasks_.push_back(task.release());
task               82 chrome/browser/sync_file_system/local/syncable_file_operation_runner.cc       scoped_ptr<Task> task(*iter);
task               84 chrome/browser/sync_file_system/local/syncable_file_operation_runner.cc       task->Start(sync_status());
task               50 chrome/browser/sync_file_system/local/syncable_file_operation_runner.h     static void CancelAndDelete(Task* task);
task               69 chrome/browser/sync_file_system/local/syncable_file_operation_runner.h   void PostOperationTask(scoped_ptr<Task> task);
task               38 chrome/browser/sync_file_system/local/syncable_file_system_operation.cc                 const base::Closure& task)
task               40 chrome/browser/sync_file_system/local/syncable_file_system_operation.cc         task_(task),
task               88 chrome/browser/sync_file_system/local/syncable_file_system_operation.cc   scoped_ptr<SyncableFileOperationRunner::Task> task(new QueueableTask(
task               94 chrome/browser/sync_file_system/local/syncable_file_system_operation.cc   operation_runner_->PostOperationTask(task.Pass());
task              114 chrome/browser/sync_file_system/local/syncable_file_system_operation.cc   scoped_ptr<SyncableFileOperationRunner::Task> task(new QueueableTask(
task              120 chrome/browser/sync_file_system/local/syncable_file_system_operation.cc   operation_runner_->PostOperationTask(task.Pass());
task              137 chrome/browser/sync_file_system/local/syncable_file_system_operation.cc   scoped_ptr<SyncableFileOperationRunner::Task> task(new QueueableTask(
task              143 chrome/browser/sync_file_system/local/syncable_file_system_operation.cc   operation_runner_->PostOperationTask(task.Pass());
task              160 chrome/browser/sync_file_system/local/syncable_file_system_operation.cc   scoped_ptr<SyncableFileOperationRunner::Task> task(new QueueableTask(
task              166 chrome/browser/sync_file_system/local/syncable_file_system_operation.cc   operation_runner_->PostOperationTask(task.Pass());
task              211 chrome/browser/sync_file_system/local/syncable_file_system_operation.cc   scoped_ptr<SyncableFileOperationRunner::Task> task(new QueueableTask(
task              217 chrome/browser/sync_file_system/local/syncable_file_system_operation.cc   operation_runner_->PostOperationTask(task.Pass());
task              233 chrome/browser/sync_file_system/local/syncable_file_system_operation.cc   scoped_ptr<SyncableFileOperationRunner::Task> task(new QueueableTask(
task              242 chrome/browser/sync_file_system/local/syncable_file_system_operation.cc   operation_runner_->PostOperationTask(task.Pass());
task              256 chrome/browser/sync_file_system/local/syncable_file_system_operation.cc   scoped_ptr<SyncableFileOperationRunner::Task> task(new QueueableTask(
task              262 chrome/browser/sync_file_system/local/syncable_file_system_operation.cc   operation_runner_->PostOperationTask(task.Pass());
task              306 chrome/browser/sync_file_system/local/syncable_file_system_operation.cc   scoped_ptr<SyncableFileOperationRunner::Task> task(new QueueableTask(
task              312 chrome/browser/sync_file_system/local/syncable_file_system_operation.cc   operation_runner_->PostOperationTask(task.Pass());
task              669 chrome/browser/ui/gtk/task_manager_gtk.cc   std::string task = GetModelText(row, IDS_TASK_MANAGER_TASK_COLUMN);
task              672 chrome/browser/ui/gtk/task_manager_gtk.cc   gchar* task_markup = g_markup_escape_text(task.c_str(), task.length());
task              450 chrome/browser/ui/views/bookmarks/bookmark_bar_view_test.cc   explicit BookmarkContextMenuNotificationObserver(const base::Closure& task)
task              451 chrome/browser/ui/views/bookmarks/bookmark_bar_view_test.cc       : task_(task) {
task              464 chrome/browser/ui/views/bookmarks/bookmark_bar_view_test.cc   void set_task(const base::Closure& task) { task_ = task; }
task              445 chrome/browser/ui/views/tabs/tab_drag_controller_interactive_uitest.cc                                  const base::Closure& task) {
task              447 chrome/browser/ui/views/tabs/tab_drag_controller_interactive_uitest.cc       return ui_controls::SendMouseMoveNotifyWhenDone(x, y, task);
task              449 chrome/browser/ui/views/tabs/tab_drag_controller_interactive_uitest.cc     base::MessageLoop::current()->PostTask(FROM_HERE, task);
task              459 chrome/browser/ui/views/tabs/tab_drag_controller_interactive_uitest.cc                                         const base::Closure& task,
task              462 chrome/browser/ui/views/tabs/tab_drag_controller_interactive_uitest.cc       return ui_controls::SendMouseMoveNotifyWhenDone(x, y, task);
task              464 chrome/browser/ui/views/tabs/tab_drag_controller_interactive_uitest.cc     base::MessageLoop::current()->PostDelayedTask(FROM_HERE, task, delay);
task              474 chrome/browser/ui/views/tabs/tab_drag_controller_interactive_uitest.cc                                  const base::Closure& task) {
task              476 chrome/browser/ui/views/tabs/tab_drag_controller_interactive_uitest.cc       return ui_controls::SendMouseMoveNotifyWhenDone(x, y, task);
task              478 chrome/browser/ui/views/tabs/tab_drag_controller_interactive_uitest.cc     base::MessageLoop::current()->PostTask(FROM_HERE, task);
task             1997 chrome/browser/ui/views/tabs/tab_drag_controller_interactive_uitest.cc                                      const base::Closure& task) {
task             1999 chrome/browser/ui/views/tabs/tab_drag_controller_interactive_uitest.cc         position.x(), position.y(), task);
task              629 chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc   scoped_refptr<TaskProxy> task = new TaskProxy(AsWeakPtr());
task              631 chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc       base::Bind(&TaskProxy::HandleCancel, task.get()));
task              650 chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc   scoped_refptr<TaskProxy> task = new TaskProxy(AsWeakPtr(), code, code_type);
task              652 chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc       base::Bind(&TaskProxy::HandleEnterCode, task.get()));
task              685 chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc   scoped_refptr<TaskProxy> task = new TaskProxy(AsWeakPtr());
task              687 chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc       base::Bind(&TaskProxy::HandleProceedToPukInput, task.get()));
task              700 chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc   scoped_refptr<TaskProxy> task = new TaskProxy(AsWeakPtr());
task              702 chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc       base::Bind(&TaskProxy::HandleInitialize, task.get()));
task              470 chrome/service/cloud_print/cloud_print_connector.cc   PendingTask task;
task              471 chrome/service/cloud_print/cloud_print_connector.cc   task.type = PENDING_PRINTERS_AVAILABLE;
task              472 chrome/service/cloud_print/cloud_print_connector.cc   AddPendingTask(task);
task              476 chrome/service/cloud_print/cloud_print_connector.cc   PendingTask task;
task              477 chrome/service/cloud_print/cloud_print_connector.cc   task.type = PENDING_PRINTER_DELETE;
task              478 chrome/service/cloud_print/cloud_print_connector.cc   task.printer_id = id;
task              479 chrome/service/cloud_print/cloud_print_connector.cc   AddPendingTask(task);
task              484 chrome/service/cloud_print/cloud_print_connector.cc   PendingTask task;
task              485 chrome/service/cloud_print/cloud_print_connector.cc   task.type = PENDING_PRINTER_REGISTER;
task              486 chrome/service/cloud_print/cloud_print_connector.cc   task.printer_info = info;
task              487 chrome/service/cloud_print/cloud_print_connector.cc   AddPendingTask(task);
task              490 chrome/service/cloud_print/cloud_print_connector.cc void CloudPrintConnector::AddPendingTask(const PendingTask& task) {
task              491 chrome/service/cloud_print/cloud_print_connector.cc   pending_tasks_.push_back(task);
task              505 chrome/service/cloud_print/cloud_print_connector.cc   PendingTask task = pending_tasks_.front();
task              507 chrome/service/cloud_print/cloud_print_connector.cc   switch (task.type) {
task              512 chrome/service/cloud_print/cloud_print_connector.cc       OnPrinterRegister(task.printer_info);
task              515 chrome/service/cloud_print/cloud_print_connector.cc       OnPrinterDelete(task.printer_id);
task              157 chrome/service/cloud_print/cloud_print_connector.h   void AddPendingTask(const PendingTask& task);
task                8 chrome/test/base/history_index_restore_observer.cc     const base::Closure& task)
task                9 chrome/test/base/history_index_restore_observer.cc     : task_(task),
task               19 chrome/test/base/history_index_restore_observer.h   explicit HistoryIndexRestoreObserver(const base::Closure& task);
task              136 chrome/test/base/interactive_test_utils.h     const base::Closure& task);
task               76 chrome/test/base/interactive_test_utils_gtk.cc                                const base::Closure& task) {
task               81 chrome/test/base/interactive_test_utils_gtk.cc       base::Bind(&internal::ClickTask, button, state, task));
task              256 chrome/test/base/view_event_test_base.cc void ViewEventTestBase::RunTestMethod(const base::Closure& task) {
task              259 chrome/test/base/view_event_test_base.cc   task.Run();
task              143 chrome/test/base/view_event_test_base.h   void RunTestMethod(const base::Closure& task);
task              122 chrome/utility/image_writer/image_writer.cc void ImageWriter::PostTask(const base::Closure& task) {
task              123 chrome/utility/image_writer/image_writer.cc   base::MessageLoop::current()->PostTask(FROM_HERE, task);
task               41 chrome/utility/image_writer/image_writer.h   void PostTask(const base::Closure& task);
task              243 chrome/utility/local_discovery/service_discovery_message_handler.cc     const base::Closure& task) {
task              246 chrome/utility/local_discovery/service_discovery_message_handler.cc   discovery_task_runner_->PostTask(from_here, task);
task               55 chrome/utility/local_discovery/service_discovery_message_handler.h                 const base::Closure& task);
task               36 chromeos/attestation/attestation_flow.cc   const base::Closure& task = value ? on_true : on_false;
task               37 chromeos/attestation/attestation_flow.cc   if (!task.is_null())
task               38 chromeos/attestation/attestation_flow.cc     task.Run();
task               29 chromeos/dbus/blocking_method_caller_unittest.cc                                const base::Closure& task,
task               31 chromeos/dbus/blocking_method_caller_unittest.cc     task.Run();
task               77 cloud_print/service/win/cloud_print_service_config.cc   void PostUITask(const base::Closure& task);
task               78 cloud_print/service/win/cloud_print_service_config.cc   void PostIOTask(const base::Closure& task);
task              139 cloud_print/service/win/cloud_print_service_config.cc void SetupDialog::PostUITask(const base::Closure& task) {
task              140 cloud_print/service/win/cloud_print_service_config.cc   ui_loop_->PostTask(FROM_HERE, task);
task              143 cloud_print/service/win/cloud_print_service_config.cc void SetupDialog::PostIOTask(const base::Closure& task) {
task              144 cloud_print/service/win/cloud_print_service_config.cc   io_loop_->PostTask(FROM_HERE, task);
task              123 components/autofill/content/browser/wallet/wallet_signin_helper.cc   base::Closure task = base::Bind(&GetGoogleCookies, request_context, callback);
task              124 components/autofill/content/browser/wallet/wallet_signin_helper.cc   content::BrowserThread::PostTask(content::BrowserThread::IO, FROM_HERE, task);
task              185 components/dom_distiller/core/dom_distiller_service.cc void DomDistillerService::CancelTask(TaskTracker* task) {
task              186 components/dom_distiller/core/dom_distiller_service.cc   TaskList::iterator it = std::find(tasks_.begin(), tasks_.end(), task);
task              189 components/dom_distiller/core/dom_distiller_service.cc     base::MessageLoop::current()->DeleteSoon(FROM_HERE, task);
task              102 components/dom_distiller/core/dom_distiller_service.h   void CancelTask(TaskTracker* task);
task               31 components/domain_reliability/dispatcher.cc   Task* task = new Task(closure, time_->CreateTimer(), min_delay, max_delay);
task               32 components/domain_reliability/dispatcher.cc   tasks_.insert(task);
task               34 components/domain_reliability/dispatcher.cc     RunAndDeleteTask(task);
task               36 components/domain_reliability/dispatcher.cc     MakeTaskEligible(task);
task               38 components/domain_reliability/dispatcher.cc     MakeTaskWaiting(task);
task               52 components/domain_reliability/dispatcher.cc     Task* task = *it;
task               53 components/domain_reliability/dispatcher.cc     DCHECK(task);
task               54 components/domain_reliability/dispatcher.cc     DCHECK(task->eligible);
task               55 components/domain_reliability/dispatcher.cc     RunAndDeleteTask(task);
task               71 components/domain_reliability/dispatcher.cc void DomainReliabilityDispatcher::MakeTaskWaiting(Task* task) {
task               72 components/domain_reliability/dispatcher.cc   DCHECK(task);
task               73 components/domain_reliability/dispatcher.cc   DCHECK(!task->eligible);
task               74 components/domain_reliability/dispatcher.cc   DCHECK(!task->timer->IsRunning());
task               75 components/domain_reliability/dispatcher.cc   task->timer->Start(
task               77 components/domain_reliability/dispatcher.cc       task->min_delay,
task               81 components/domain_reliability/dispatcher.cc           task));
task               85 components/domain_reliability/dispatcher.cc DomainReliabilityDispatcher::MakeTaskEligible(Task* task) {
task               86 components/domain_reliability/dispatcher.cc   DCHECK(task);
task               87 components/domain_reliability/dispatcher.cc   DCHECK(!task->eligible);
task               88 components/domain_reliability/dispatcher.cc   task->eligible = true;
task               89 components/domain_reliability/dispatcher.cc   eligible_tasks_.insert(task);
task               90 components/domain_reliability/dispatcher.cc   task->timer->Start(
task               92 components/domain_reliability/dispatcher.cc       task->max_delay - task->min_delay,
task               96 components/domain_reliability/dispatcher.cc           task));
task               99 components/domain_reliability/dispatcher.cc void DomainReliabilityDispatcher::RunAndDeleteTask(Task* task) {
task              100 components/domain_reliability/dispatcher.cc   DCHECK(task);
task              101 components/domain_reliability/dispatcher.cc   DCHECK(!task->closure.is_null());
task              102 components/domain_reliability/dispatcher.cc   task->closure.Run();
task              103 components/domain_reliability/dispatcher.cc   if (task->eligible)
task              104 components/domain_reliability/dispatcher.cc     eligible_tasks_.erase(task);
task              105 components/domain_reliability/dispatcher.cc   tasks_.erase(task);
task              106 components/domain_reliability/dispatcher.cc   delete task;
task               33 components/domain_reliability/dispatcher.h       const base::Closure& task,
task               54 components/domain_reliability/dispatcher.h   void MakeTaskWaiting(Task* task);
task               55 components/domain_reliability/dispatcher.h   void MakeTaskEligible(Task* task);
task               56 components/domain_reliability/dispatcher.h   void RunAndDeleteTask(Task* task);
task              117 components/domain_reliability/test_util.cc     base::Closure task = tasks_.begin()->second;
task              125 components/domain_reliability/test_util.cc     task.Run();
task              133 components/domain_reliability/test_util.cc void MockTime::AddTask(base::TimeDelta delay, const base::Closure& task) {
task              134 components/domain_reliability/test_util.cc   tasks_[TaskKey(now_ + delay, task_sequence_number_++)] = task;
task               76 components/domain_reliability/test_util.h   void AddTask(base::TimeDelta delay, const base::Closure& task);
task              182 components/password_manager/core/browser/password_store.cc bool PasswordStore::ScheduleTask(const base::Closure& task) {
task              186 components/password_manager/core/browser/password_store.cc     return task_runner->PostTask(FROM_HERE, task);
task              225 components/password_manager/core/browser/password_store.cc void PasswordStore::WrapModificationTask(ModificationTask task) {
task              226 components/password_manager/core/browser/password_store.cc   PasswordStoreChangeList changes = task.Run();
task              195 components/password_manager/core/browser/password_store.h   bool ScheduleTask(const base::Closure& task);
task              270 components/password_manager/core/browser/password_store.h   virtual void WrapModificationTask(ModificationTask task);
task               33 components/password_manager/core/browser/test_password_store.cc void TestPasswordStore::WrapModificationTask(ModificationTask task) {
task               34 components/password_manager/core/browser/test_password_store.cc   task.Run();
task               51 components/password_manager/core/browser/test_password_store.h   virtual void WrapModificationTask(ModificationTask task) OVERRIDE;
task              352 components/policy/core/common/cloud/external_policy_data_updater_unittest.cc     const base::TestPendingTask& task =
task              354 components/policy/core/common/cloud/external_policy_data_updater_unittest.cc     EXPECT_GT(task.delay,
task              357 components/policy/core/common/cloud/external_policy_data_updater_unittest.cc     EXPECT_LE(task.delay, expected_delay);
task              285 components/visitedlink/browser/visitedlink_master.cc                                    const base::Closure& task) {
task              288 components/visitedlink/browser/visitedlink_master.cc                                                             from_here, task);
task              136 components/visitedlink/browser/visitedlink_master.h   void set_rebuild_complete_task(const base::Closure& task) {
task              138 components/visitedlink/browser/visitedlink_master.h     rebuild_complete_task_ = task;
task              204 components/visitedlink/browser/visitedlink_master.h                   const base::Closure& task);
task               72 components/webdata/common/web_data_service_backend.cc     const WebDatabaseService::WriteTask& task,
task               77 components/webdata/common/web_data_service_backend.cc   ExecuteWriteTask(task);
task               82 components/webdata/common/web_data_service_backend.cc     const WebDatabaseService::WriteTask& task) {
task               85 components/webdata/common/web_data_service_backend.cc     WebDatabase::State state = task.Run(db_.get());
task               92 components/webdata/common/web_data_service_backend.cc     const WebDatabaseService::ReadTask& task,
task               97 components/webdata/common/web_data_service_backend.cc   request->SetResult(ExecuteReadTask(task).Pass());
task              102 components/webdata/common/web_data_service_backend.cc     const WebDatabaseService::ReadTask& task) {
task              105 components/webdata/common/web_data_service_backend.cc     return task.Run(db_.get());
task               70 components/webdata/common/web_data_service_backend.h       const WebDatabaseService::WriteTask& task,
task               73 components/webdata/common/web_data_service_backend.h       const WebDatabaseService::ReadTask& task,
task               77 components/webdata/common/web_data_service_backend.h   void ExecuteWriteTask(const WebDatabaseService::WriteTask& task);
task               79 components/webdata/common/web_data_service_backend.h       const WebDatabaseService::ReadTask& task);
task               96 components/webdata/common/web_database_service.cc     const WriteTask& task) {
task              102 components/webdata/common/web_database_service.cc                             wds_backend_, task, base::Passed(&request)));
task              107 components/webdata/common/web_database_service.cc     const ReadTask& task,
task              116 components/webdata/common/web_database_service.cc                             wds_backend_, task, base::Passed(&request)));
task               86 components/webdata/common/web_database_service.h       const WriteTask& task);
task               91 components/webdata/common/web_database_service.h       const ReadTask& task,
task              458 content/browser/appcache/appcache_storage_impl_unittest.cc   void PushNextTask(const base::Closure& task) {
task              459 content/browser/appcache/appcache_storage_impl_unittest.cc     task_stack_.push(task);
task              241 content/browser/browser_thread_impl.cc     const base::Closure& task,
task              265 content/browser/browser_thread_impl.cc       message_loop->PostDelayedTask(from_here, task, delay);
task              267 content/browser/browser_thread_impl.cc       message_loop->PostNonNestableDelayedTask(from_here, task, delay);
task              288 content/browser/browser_thread_impl.cc       const base::Closure& task, base::TimeDelta delay) OVERRIDE {
task              289 content/browser/browser_thread_impl.cc     return BrowserThread::PostDelayedTask(id_, from_here, task, delay);
task              294 content/browser/browser_thread_impl.cc       const base::Closure& task,
task              296 content/browser/browser_thread_impl.cc     return BrowserThread::PostNonNestableDelayedTask(id_, from_here, task,
task              315 content/browser/browser_thread_impl.cc     const base::Closure& task) {
task              316 content/browser/browser_thread_impl.cc   return g_globals.Get().blocking_pool->PostWorkerTask(from_here, task);
task              322 content/browser/browser_thread_impl.cc     const base::Closure& task,
task              325 content/browser/browser_thread_impl.cc       from_here, task, reply);
task              332 content/browser/browser_thread_impl.cc     const base::Closure& task) {
task              334 content/browser/browser_thread_impl.cc       sequence_token_name, from_here, task);
task              410 content/browser/browser_thread_impl.cc                              const base::Closure& task) {
task              412 content/browser/browser_thread_impl.cc       identifier, from_here, task, base::TimeDelta(), true);
task              418 content/browser/browser_thread_impl.cc                                     const base::Closure& task,
task              421 content/browser/browser_thread_impl.cc       identifier, from_here, task, delay, true);
task              428 content/browser/browser_thread_impl.cc     const base::Closure& task) {
task              430 content/browser/browser_thread_impl.cc       identifier, from_here, task, base::TimeDelta(), false);
task              437 content/browser/browser_thread_impl.cc     const base::Closure& task,
task              440 content/browser/browser_thread_impl.cc       identifier, from_here, task, delay, false);
task              447 content/browser/browser_thread_impl.cc     const base::Closure& task,
task              450 content/browser/browser_thread_impl.cc                                                                     task,
task               54 content/browser/browser_thread_impl.h       const base::Closure& task,
task               27 content/browser/dom_storage/dom_storage_session.cc     const base::Callback<SessionStorageNamespace::MergeResult(void)>& task,
task               30 content/browser/dom_storage/dom_storage_session.cc   SessionStorageNamespace::MergeResult result = task.Run();
task               38 content/browser/dom_storage/dom_storage_task_runner.cc     const base::Closure& task,
task               45 content/browser/dom_storage/dom_storage_task_runner.cc         primary_sequence_token_, from_here, task,
task               52 content/browser/dom_storage/dom_storage_task_runner.cc                  this, from_here, task),
task               59 content/browser/dom_storage/dom_storage_task_runner.cc     const base::Closure& task) {
task               61 content/browser/dom_storage/dom_storage_task_runner.cc       IDtoToken(sequence_id), from_here, task,
task               91 content/browser/dom_storage/dom_storage_task_runner.cc     const base::Closure& task,
task               93 content/browser/dom_storage/dom_storage_task_runner.cc   return message_loop_->PostTask(from_here, task);
task               99 content/browser/dom_storage/dom_storage_task_runner.cc     const base::Closure& task) {
task              100 content/browser/dom_storage/dom_storage_task_runner.cc   return message_loop_->PostTask(from_here, task);
task               41 content/browser/dom_storage/dom_storage_task_runner.h       const base::Closure& task,
task               48 content/browser/dom_storage/dom_storage_task_runner.h       const base::Closure& task) = 0;
task               81 content/browser/dom_storage/dom_storage_task_runner.h       const base::Closure& task,
task               87 content/browser/dom_storage/dom_storage_task_runner.h       const base::Closure& task) OVERRIDE;
task              116 content/browser/dom_storage/dom_storage_task_runner.h       const base::Closure& task,
task              122 content/browser/dom_storage/dom_storage_task_runner.h       const base::Closure& task) OVERRIDE;
task              144 content/browser/geolocation/geolocation_provider_impl.cc   base::Closure task;
task              150 content/browser/geolocation/geolocation_provider_impl.cc     task = base::Bind(&GeolocationProviderImpl::StopProviders,
task              169 content/browser/geolocation/geolocation_provider_impl.cc     task = base::Bind(&GeolocationProviderImpl::StartProviders,
task              174 content/browser/geolocation/geolocation_provider_impl.cc   message_loop()->PostTask(FROM_HERE, task);
task               33 content/browser/indexed_db/indexed_db_transaction.cc   Operation task(queue_.front());
task               35 content/browser/indexed_db/indexed_db_transaction.cc   return task;
task               48 content/browser/indexed_db/indexed_db_transaction.cc   Operation task(stack_.top());
task               50 content/browser/indexed_db/indexed_db_transaction.cc   return task;
task               88 content/browser/indexed_db/indexed_db_transaction.cc void IndexedDBTransaction::ScheduleTask(Operation task, Operation abort_task) {
task               94 content/browser/indexed_db/indexed_db_transaction.cc   task_queue_.push(task);
task              101 content/browser/indexed_db/indexed_db_transaction.cc                                         Operation task) {
task              108 content/browser/indexed_db/indexed_db_transaction.cc     task_queue_.push(task);
task              111 content/browser/indexed_db/indexed_db_transaction.cc     preemptive_task_queue_.push(task);
task              297 content/browser/indexed_db/indexed_db_transaction.cc     Operation task(task_queue->pop());
task              298 content/browser/indexed_db/indexed_db_transaction.cc     task.Run(this);
task               49 content/browser/indexed_db/indexed_db_transaction.h   void ScheduleTask(Operation task) {
task               50 content/browser/indexed_db/indexed_db_transaction.h     ScheduleTask(IndexedDBDatabase::NORMAL_TASK, task);
task               52 content/browser/indexed_db/indexed_db_transaction.h   void ScheduleTask(Operation task, Operation abort_task);
task               53 content/browser/indexed_db/indexed_db_transaction.h   void ScheduleTask(IndexedDBDatabase::TaskType, Operation task);
task              115 content/browser/indexed_db/indexed_db_transaction.h     void push(Operation task) { queue_.push(task); }
task              128 content/browser/indexed_db/indexed_db_transaction.h     void push(Operation task) { stack_.push(task); }
task              217 content/browser/media/android/media_resource_getter_impl.cc   scoped_refptr<CookieGetterTask> task = new CookieGetterTask(
task              227 content/browser/media/android/media_resource_getter_impl.cc                  task, url, first_party_for_cookies,
task              205 content/browser/media/webrtc_identity_store_backend.cc     base::Closure task(
task              211 content/browser/media/webrtc_identity_store_backend.cc             task,
task              212 content/browser/net/sqlite_persistent_cookie_store.cc                           const base::Closure& task);
task              214 content/browser/net/sqlite_persistent_cookie_store.cc                       const base::Closure& task);
task             1188 content/browser/net/sqlite_persistent_cookie_store.cc     const tracked_objects::Location& origin, const base::Closure& task) {
task             1189 content/browser/net/sqlite_persistent_cookie_store.cc   if (!background_task_runner_->PostTask(origin, task)) {
task             1196 content/browser/net/sqlite_persistent_cookie_store.cc     const tracked_objects::Location& origin, const base::Closure& task) {
task             1197 content/browser/net/sqlite_persistent_cookie_store.cc   if (!client_task_runner_->PostTask(origin, task)) {
task               76 content/browser/service_worker/service_worker_version.cc     const base::Closure& task,
task               91 content/browser/service_worker/service_worker_version.cc   task.Run();
task               29 content/browser/startup_task_runner_unittest.cc base::Closure task;
task               34 content/browser/startup_task_runner_unittest.cc   task = arg;
task              260 content/browser/startup_task_runner_unittest.cc     task.Run();
task              307 content/browser/startup_task_runner_unittest.cc     task.Run();
task               63 content/child/webthread_impl.cc void WebThreadImpl::postTask(Task* task) {
task               65 content/child/webthread_impl.cc       FROM_HERE, base::Bind(&blink::WebThread::Task::run, base::Owned(task)));
task               68 content/child/webthread_impl.cc void WebThreadImpl::postDelayedTask(Task* task, long long delay_ms) {
task               71 content/child/webthread_impl.cc       base::Bind(&blink::WebThread::Task::run, base::Owned(task)),
task               99 content/child/webthread_impl.cc void WebThreadImplForMessageLoop::postTask(Task* task) {
task              101 content/child/webthread_impl.cc       FROM_HERE, base::Bind(&blink::WebThread::Task::run, base::Owned(task)));
task              104 content/child/webthread_impl.cc void WebThreadImplForMessageLoop::postDelayedTask(Task* task,
task              108 content/child/webthread_impl.cc       base::Bind(&blink::WebThread::Task::run, base::Owned(task)),
task               41 content/child/webthread_impl.h   virtual void postTask(Task* task);
task               42 content/child/webthread_impl.h   virtual void postDelayedTask(Task* task, long long delay_ms);
task               60 content/child/webthread_impl.h   virtual void postTask(Task* task);
task               61 content/child/webthread_impl.h   virtual void postDelayedTask(Task* task, long long delay_ms);
task               21 content/child/worker_task_runner.cc   RunClosureTask(const base::Closure& task) : task_(task) {}
task               23 content/child/worker_task_runner.h   bool PostTask(int id, const base::Closure& task);
task               24 content/child/worker_task_runner.h   int PostTaskToAllThreads(const base::Closure& task);
task               25 content/child/worker_thread_task_runner.cc     const base::Closure& task,
task               29 content/child/worker_thread_task_runner.cc   return WorkerTaskRunner::Instance()->PostTask(worker_thread_id_, task);
task               26 content/child/worker_thread_task_runner.h                                const base::Closure& task,
task               56 content/common/gpu/devtools_gpu_agent.cc   GpuTaskInfo task;
task               57 content/common/gpu/devtools_gpu_agent.cc   task.timestamp = (timestamp - TimeTicks()).InSecondsF();
task               58 content/common/gpu/devtools_gpu_agent.cc   task.phase = phase;
task               59 content/common/gpu/devtools_gpu_agent.cc   task.foreign = channel != gpu_channel_;
task               60 content/common/gpu/devtools_gpu_agent.cc   task.used_gpu_memory_bytes = channel->GetMemoryUsage();
task               71 content/common/gpu/devtools_gpu_agent.cc   tasks_->push_back(task);
task              177 content/common/gpu/gpu_command_buffer_stub.cc   devtools_gpu_instrumentation::ScopedGpuTask task(channel());
task              147 content/common/gpu/image_transport_surface.cc void ImageTransportHelper::DeferToFence(base::Closure task) {
task              151 content/common/gpu/image_transport_surface.cc   scheduler->DeferToFence(task);
task              133 content/common/gpu/image_transport_surface.h   void DeferToFence(base::Closure task);
task               46 content/public/android/java/src/org/chromium/content/browser/LocationProviderAdapter.java         FutureTask<Void> task = new FutureTask<Void>(new Runnable() {
task               52 content/public/android/java/src/org/chromium/content/browser/LocationProviderAdapter.java         ThreadUtils.runOnUiThread(task);
task               61 content/public/android/java/src/org/chromium/content/browser/LocationProviderAdapter.java         FutureTask<Void> task = new FutureTask<Void>(new Runnable() {
task               67 content/public/android/java/src/org/chromium/content/browser/LocationProviderAdapter.java         ThreadUtils.runOnUiThread(task);
task              105 content/public/browser/browser_thread.h                        const base::Closure& task);
task              108 content/public/browser/browser_thread.h                               const base::Closure& task,
task              112 content/public/browser/browser_thread.h                                   const base::Closure& task);
task              116 content/public/browser/browser_thread.h       const base::Closure& task,
task              122 content/public/browser/browser_thread.h       const base::Closure& task,
task              129 content/public/browser/browser_thread.h       const base::Callback<ReturnType(void)>& task,
task              134 content/public/browser/browser_thread.h         message_loop_proxy.get(), from_here, task, reply);
task              175 content/public/browser/browser_thread.h                                    const base::Closure& task);
task              178 content/public/browser/browser_thread.h       const base::Closure& task,
task              183 content/public/browser/browser_thread.h       const base::Closure& task);
task               67 content/public/test/browser_test_base.cc void RunTaskOnRendererThread(const base::Closure& task,
task               69 content/public/test/browser_test_base.cc   task.Run();
task              277 content/public/test/browser_test_base.cc     const base::Closure& task) {
task              288 content/public/test/browser_test_base.cc       base::Bind(&RunTaskOnRendererThread, task, runner->QuitClosure()));
task              118 content/public/test/browser_test_base.h   void PostTaskToInProcessRendererAndWait(const base::Closure& task);
task              215 content/renderer/devtools/devtools_agent.cc     const GpuTaskInfo& task = tasks[i];
task              216 content/renderer/devtools/devtools_agent.cc     WebDevToolsAgent::GPUEvent event(task.timestamp, task.phase, task.foreign,
task              217 content/renderer/devtools/devtools_agent.cc         static_cast<size_t>(task.used_gpu_memory_bytes));
task              148 content/renderer/pepper/pepper_platform_context_3d.cc void PlatformContext3D::SetContextLostCallback(const base::Closure& task) {
task              149 content/renderer/pepper/pepper_platform_context_3d.cc   context_lost_callback_ = task;
task              153 content/renderer/pepper/pepper_platform_context_3d.cc     const ConsoleMessageCallback& task) {
task              154 content/renderer/pepper/pepper_platform_context_3d.cc   console_message_callback_ = task;
task              157 content/renderer/pepper/pepper_platform_context_3d.cc void PlatformContext3D::Echo(const base::Closure& task) {
task              158 content/renderer/pepper/pepper_platform_context_3d.cc   command_buffer_->Echo(task);
task               66 content/renderer/pepper/pepper_platform_context_3d.h   void Echo(const base::Closure& task);
task              214 content/shell/renderer/test_runner/MockWebSpeechRecognizer.cpp     Task* task = m_object->m_taskQueue.front();
task              216 content/shell/renderer/test_runner/MockWebSpeechRecognizer.cpp     task->run();
task              217 content/shell/renderer/test_runner/MockWebSpeechRecognizer.cpp     delete task;
task               35 content/shell/renderer/test_runner/WebTask.cpp void WebTaskList::registerTask(WebTask* task)
task               37 content/shell/renderer/test_runner/WebTask.cpp     m_tasks.push_back(task);
task               40 content/shell/renderer/test_runner/WebTask.cpp void WebTaskList::unregisterTask(WebTask* task)
task               42 content/shell/renderer/test_runner/WebTask.cpp     vector<WebTask*>::iterator iter = find(m_tasks.begin(), m_tasks.end(), task);
task             1509 content/shell/renderer/test_runner/test_runner.cc void TestRunner::InvokeCallback(scoped_ptr<InvokeCallbackTask> task) {
task             1510 content/shell/renderer/test_runner/test_runner.cc   delegate_->postTask(task.release());
task             2596 content/shell/renderer/test_runner/test_runner.cc   scoped_ptr<InvokeCallbackTask> task(
task             2600 content/shell/renderer/test_runner/test_runner.cc                                       base::Passed(&task)));
task              100 content/shell/renderer/webkit_test_runner.cc   WebTask* task = reinterpret_cast<WebTask*>(context);
task              101 content/shell/renderer/webkit_test_runner.cc   task->run();
task              102 content/shell/renderer/webkit_test_runner.cc   delete task;
task              270 content/shell/renderer/webkit_test_runner.cc void WebKitTestRunner::postTask(WebTask* task) {
task              271 content/shell/renderer/webkit_test_runner.cc   Platform::current()->callOnMainThread(InvokeTaskHelper, task);
task              274 content/shell/renderer/webkit_test_runner.cc void WebKitTestRunner::postDelayedTask(WebTask* task, long long ms) {
task              277 content/shell/renderer/webkit_test_runner.cc       base::Bind(&WebTask::run, base::Owned(task)),
task               71 content/shell/renderer/webkit_test_runner.h   virtual void postTask(::WebTestRunner::WebTask* task) OVERRIDE;
task               72 content/shell/renderer/webkit_test_runner.h   virtual void postDelayedTask(::WebTestRunner::WebTask* task,
task               81 dbus/exported_object.cc   base::Closure task = base::Bind(&ExportedObject::ExportMethodInternal,
task               87 dbus/exported_object.cc   bus_->GetDBusTaskRunner()->PostTask(FROM_HERE, task);
task              138 dbus/object_proxy.cc     base::Closure task = base::Bind(&ObjectProxy::RunResponseCallback,
task              144 dbus/object_proxy.cc     bus_->GetOriginTaskRunner()->PostTask(FROM_HERE, task);
task              154 dbus/object_proxy.cc   base::Closure task = base::Bind(&ObjectProxy::StartAsyncMethodCall,
task              166 dbus/object_proxy.cc   bus_->GetDBusTaskRunner()->PostTask(FROM_HERE, task);
task              255 dbus/object_proxy.cc     base::Closure task = base::Bind(&ObjectProxy::RunResponseCallback,
task              261 dbus/object_proxy.cc     bus_->GetOriginTaskRunner()->PostTask(FROM_HERE, task);
task              297 dbus/object_proxy.cc   base::Closure task = base::Bind(&ObjectProxy::RunResponseCallback,
task              303 dbus/object_proxy.cc   bus_->GetOriginTaskRunner()->PostTask(FROM_HERE, task);
task               64 extensions/browser/lazy_background_task_queue.cc     const PendingTask& task) {
task               66 extensions/browser/lazy_background_task_queue.cc     task.Run(NULL);
task               89 extensions/browser/lazy_background_task_queue.cc         task.Run(NULL);
task               97 extensions/browser/lazy_background_task_queue.cc   tasks_list->push_back(task);
task               57 extensions/browser/lazy_background_task_queue.h       const PendingTask& task);
task               22 extensions/common/one_shot_event.cc            const base::Closure& task,
task               24 extensions/common/one_shot_event.cc       : from_here(from_here), runner(runner), task(task), delay(delay) {
task               29 extensions/common/one_shot_event.cc   base::Closure task;
task               44 extensions/common/one_shot_event.cc                         const base::Closure& task) const {
task               46 extensions/common/one_shot_event.cc       from_here, task, base::MessageLoopProxy::current(), base::TimeDelta());
task               50 extensions/common/one_shot_event.cc                         const base::Closure& task,
task               52 extensions/common/one_shot_event.cc   PostImpl(from_here, task, runner, base::TimeDelta());
task               56 extensions/common/one_shot_event.cc                                const base::Closure& task,
task               58 extensions/common/one_shot_event.cc   PostImpl(from_here, task, base::MessageLoopProxy::current(), delay);
task               74 extensions/common/one_shot_event.cc     const TaskInfo& task = tasks_[i];
task               75 extensions/common/one_shot_event.cc     if (task.delay != base::TimeDelta())
task               76 extensions/common/one_shot_event.cc       task.runner->PostDelayedTask(task.from_here, task.task, task.delay);
task               78 extensions/common/one_shot_event.cc       task.runner->PostTask(task.from_here, task.task);
task               83 extensions/common/one_shot_event.cc                             const base::Closure& task,
task               90 extensions/common/one_shot_event.cc       runner->PostDelayedTask(from_here, task, delay);
task               92 extensions/common/one_shot_event.cc       runner->PostTask(from_here, task);
task               94 extensions/common/one_shot_event.cc     tasks_.push_back(TaskInfo(from_here, runner, task, delay));
task               80 extensions/common/one_shot_event.h             const base::Closure& task) const;
task               82 extensions/common/one_shot_event.h             const base::Closure& task,
task               85 extensions/common/one_shot_event.h                    const base::Closure& task,
task               92 extensions/common/one_shot_event.h                 const base::Closure& task,
task               23 gin/public/v8_platform.h       v8::Task* task,
task               26 gin/public/v8_platform.h                                       v8::Task* task) OVERRIDE;
task               29 gin/v8_platform.cc     v8::Task* task,
task               33 gin/v8_platform.cc       base::Bind(&v8::Task::Run, base::Owned(task)),
task               37 gin/v8_platform.cc void V8Platform::CallOnForegroundThread(v8::Isolate* isolate, v8::Task* task) {
task               39 gin/v8_platform.cc       FROM_HERE, base::Bind(&v8::Task::Run, base::Owned(task)));
task               12 google_apis/drive/task_util.cc                      const base::Closure& task) {
task               14 google_apis/drive/task_util.cc     task.Run();
task               16 google_apis/drive/task_util.cc     const bool posted = task_runner->PostTask(FROM_HERE, task);
task               15 google_apis/drive/task_util.h                      const base::Closure& task);
task              131 gpu/command_buffer/service/async_pixel_transfer_manager_idle.cc     (*iter).task.Run();
task              231 gpu/command_buffer/service/async_pixel_transfer_manager_idle.cc     const base::Closure& task)
task              234 gpu/command_buffer/service/async_pixel_transfer_manager_idle.cc       task(task) {
task              250 gpu/command_buffer/service/async_pixel_transfer_manager_idle.cc     tasks.front().task.Run();
task              296 gpu/command_buffer/service/async_pixel_transfer_manager_idle.cc   shared_state_.tasks.front().task.Run();
task              310 gpu/command_buffer/service/async_pixel_transfer_manager_idle.cc   const Task& task = shared_state_.tasks.back();
task              311 gpu/command_buffer/service/async_pixel_transfer_manager_idle.cc   if (task.delegate)
task              312 gpu/command_buffer/service/async_pixel_transfer_manager_idle.cc     task.delegate->WaitForTransferCompletion();
task               33 gpu/command_buffer/service/async_pixel_transfer_manager_idle.h          const base::Closure& task);
task               41 gpu/command_buffer/service/async_pixel_transfer_manager_idle.h     base::Closure task;
task              132 gpu/command_buffer/service/async_pixel_transfer_manager_share_group.cc   explicit PendingTask(const base::Closure& task)
task              133 gpu/command_buffer/service/async_pixel_transfer_manager_share_group.cc       : task_(task), task_pending_(true, false) {}
task              227 gpu/command_buffer/service/gpu_scheduler.cc void GpuScheduler::DeferToFence(base::Closure task) {
task              229 gpu/command_buffer/service/gpu_scheduler.cc        new UnscheduleFence(gfx::GLFence::Create(), task)));
task              246 gpu/command_buffer/service/gpu_scheduler.cc         unschedule_fences_.front()->task.Run();
task              257 gpu/command_buffer/service/gpu_scheduler.cc       unschedule_fences_.front()->task.Run();
task               94 gpu/command_buffer/service/gpu_scheduler.h   void DeferToFence(base::Closure task);
task              146 gpu/command_buffer/service/gpu_scheduler.h     UnscheduleFence(gfx::GLFence* fence, base::Closure task);
task              151 gpu/command_buffer/service/gpu_scheduler.h     base::Closure task;
task               52 gpu/command_buffer/service/in_process_command_buffer.cc static void RunTaskWithResult(base::Callback<T(void)> task,
task               55 gpu/command_buffer/service/in_process_command_buffer.cc   *result = task.Run();
task               73 gpu/command_buffer/service/in_process_command_buffer.cc   virtual void ScheduleTask(const base::Closure& task) OVERRIDE;
task               95 gpu/command_buffer/service/in_process_command_buffer.cc void GpuInProcessThread::ScheduleTask(const base::Closure& task) {
task               96 gpu/command_buffer/service/in_process_command_buffer.cc   message_loop()->PostTask(FROM_HERE, task);
task              545 gpu/command_buffer/service/in_process_command_buffer.cc   base::Closure task = base::Bind(&InProcessCommandBuffer::FlushOnGpuThread,
task              548 gpu/command_buffer/service/in_process_command_buffer.cc   QueueTask(task);
task              594 gpu/command_buffer/service/in_process_command_buffer.cc   base::Closure task = base::Bind(&CommandBuffer::DestroyTransferBuffer,
task              598 gpu/command_buffer/service/in_process_command_buffer.cc   QueueTask(task);
task              620 gpu/command_buffer/service/in_process_command_buffer.cc   base::Closure task = base::Bind(&GpuControl::DestroyGpuMemoryBuffer,
task              624 gpu/command_buffer/service/in_process_command_buffer.cc   QueueTask(task);
task              688 gpu/command_buffer/service/in_process_command_buffer.cc   base::Callback<uint32(void)> task =
task              693 gpu/command_buffer/service/in_process_command_buffer.cc       base::Bind(&RunTaskWithResult<uint32>, task, &stream_id, &completion));
task              126 gpu/command_buffer/service/in_process_command_buffer.h     virtual void ScheduleTask(const base::Closure& task) = 0;
task              130 gpu/command_buffer/service/in_process_command_buffer.h     virtual void ScheduleIdleWork(const base::Closure& task) = 0;
task              175 gpu/command_buffer/service/in_process_command_buffer.h   void QueueTask(const base::Closure& task) { service_->ScheduleTask(task); }
task               24 jingle/glue/task_pump_unittest.cc   MockTask* task = new MockTask(&task_pump);
task               28 jingle/glue/task_pump_unittest.cc   EXPECT_CALL(*task, ProcessStart()).WillOnce(Return(TASK_STATE_DONE));
task               29 jingle/glue/task_pump_unittest.cc   task->Start();
task               36 jingle/glue/task_pump_unittest.cc   MockTask* task = new MockTask(&task_pump);
task               40 jingle/glue/task_pump_unittest.cc   ON_CALL(*task, ProcessStart()).WillByDefault(Return(TASK_STATE_ERROR));
task               41 jingle/glue/task_pump_unittest.cc   EXPECT_CALL(*task, ProcessStart()).Times(0);
task               42 jingle/glue/task_pump_unittest.cc   task->Start();
task              238 jingle/notifier/base/xmpp_connection_unittest.cc     jingle_glue::MockTask* task =
task              243 jingle/notifier/base/xmpp_connection_unittest.cc     ON_CALL(*task, ProcessStart())
task              245 jingle/notifier/base/xmpp_connection_unittest.cc     EXPECT_CALL(*task, ProcessStart()).Times(0);
task              246 jingle/notifier/base/xmpp_connection_unittest.cc     task->Start();
task              150 jingle/notifier/listener/xmpp_push_client.cc   PushNotificationsSendUpdateTask* task =
task              152 jingle/notifier/listener/xmpp_push_client.cc   task->Start();
task              162 jingle/notifier/listener/xmpp_push_client.cc   SendPingTask* task = new SendPingTask(base_task_.get(), this);
task              163 jingle/notifier/listener/xmpp_push_client.cc   task->Start();
task               46 media/cast/cast_environment.cc                                const base::Closure& task) {
task               47 media/cast/cast_environment.cc   return GetTaskRunner(identifier)->PostTask(from_here, task);
task               53 media/cast/cast_environment.cc     const base::Closure& task,
task               55 media/cast/cast_environment.cc   return GetTaskRunner(identifier)->PostDelayedTask(from_here, task, delay);
task               47 media/cast/cast_environment.h                 const base::Closure& task);
task               51 media/cast/cast_environment.h                        const base::Closure& task,
task               23 media/cast/test/fake_single_thread_task_runner.cc     const base::Closure& task,
task               27 media/cast/test/fake_single_thread_task_runner.cc                         task,
task               47 media/cast/test/fake_single_thread_task_runner.cc     PostedTask task = it->second;
task               48 media/cast/test/fake_single_thread_task_runner.cc     if (clock_->NowTicks() < task.GetTimeToRun())
task               52 media/cast/test/fake_single_thread_task_runner.cc     task.task.Run();
task               58 media/cast/test/fake_single_thread_task_runner.cc     const base::Closure& task,
task               29 media/cast/test/fake_single_thread_task_runner.h                                const base::Closure& task,
task               37 media/cast/test/fake_single_thread_task_runner.h       const base::Closure& task,
task               18 mojo/system/test_utils.cc                            const base::Closure& task) {
task               19 mojo/system/test_utils.cc   task.Run();
task               27 mojo/system/test_utils.cc                      const base::Closure& task) {
task               30 mojo/system/test_utils.cc                         base::Bind(&PostTaskAndWaitHelper, &event, task));
task               67 mojo/system/test_utils.cc                             const base::Closure& task) {
task               68 mojo/system/test_utils.cc   task_runner()->PostTask(from_here, task);
task               72 mojo/system/test_utils.cc                                    const base::Closure& task) {
task               73 mojo/system/test_utils.cc   ::mojo::system::test::PostTaskAndWait(task_runner(), from_here, task);
task               50 mojo/system/test_utils.h                      const base::Closure& task);
task               68 mojo/system/test_utils.h                 const base::Closure& task);
task               70 mojo/system/test_utils.h                        const base::Closure& task);
task              902 net/cookies/cookie_monster.cc   scoped_refptr<SetCookieWithDetailsTask> task =
task              907 net/cookies/cookie_monster.cc   DoCookieTaskForURL(task, url);
task              911 net/cookies/cookie_monster.cc   scoped_refptr<GetAllCookiesTask> task =
task              914 net/cookies/cookie_monster.cc   DoCookieTask(task);
task              922 net/cookies/cookie_monster.cc   scoped_refptr<GetAllCookiesForURLWithOptionsTask> task =
task              925 net/cookies/cookie_monster.cc   DoCookieTaskForURL(task, url);
task              932 net/cookies/cookie_monster.cc   scoped_refptr<GetAllCookiesForURLWithOptionsTask> task =
task              935 net/cookies/cookie_monster.cc   DoCookieTaskForURL(task, url);
task              941 net/cookies/cookie_monster.cc   scoped_refptr<HasCookiesForETLDP1Task> task =
task              944 net/cookies/cookie_monster.cc   DoCookieTaskForURL(task, GURL("http://" + etldp1));
task              948 net/cookies/cookie_monster.cc   scoped_refptr<DeleteAllTask> task =
task              951 net/cookies/cookie_monster.cc   DoCookieTask(task);
task              957 net/cookies/cookie_monster.cc   scoped_refptr<DeleteAllCreatedBetweenTask> task =
task              961 net/cookies/cookie_monster.cc   DoCookieTask(task);
task              969 net/cookies/cookie_monster.cc   scoped_refptr<DeleteAllCreatedBetweenForHostTask> task =
task              973 net/cookies/cookie_monster.cc   DoCookieTaskForURL(task, url);
task              978 net/cookies/cookie_monster.cc   scoped_refptr<DeleteAllForHostTask> task =
task              981 net/cookies/cookie_monster.cc   DoCookieTaskForURL(task, url);
task              987 net/cookies/cookie_monster.cc   scoped_refptr<DeleteCanonicalCookieTask> task =
task              990 net/cookies/cookie_monster.cc   DoCookieTask(task);
task              998 net/cookies/cookie_monster.cc   scoped_refptr<SetCookieWithOptionsTask> task =
task             1001 net/cookies/cookie_monster.cc   DoCookieTaskForURL(task, url);
task             1008 net/cookies/cookie_monster.cc   scoped_refptr<GetCookiesWithOptionsTask> task =
task             1011 net/cookies/cookie_monster.cc   DoCookieTaskForURL(task, url);
task             1017 net/cookies/cookie_monster.cc   scoped_refptr<DeleteCookieTask> task =
task             1020 net/cookies/cookie_monster.cc   DoCookieTaskForURL(task, url);
task             1025 net/cookies/cookie_monster.cc   scoped_refptr<DeleteSessionCookiesTask> task =
task             1028 net/cookies/cookie_monster.cc   DoCookieTask(task);
task             1472 net/cookies/cookie_monster.cc       scoped_refptr<CookieMonsterTask> task = tasks_pending_for_key.front();
task             1473 net/cookies/cookie_monster.cc       task->Run();
task             2408 net/cookies/cookie_monster_unittest.cc   void RunOnOtherThread(const base::Closure& task) {
task             2410 net/cookies/cookie_monster_unittest.cc     other_thread_.message_loop()->PostTask(FROM_HERE, task);
task             2430 net/cookies/cookie_monster_unittest.cc   base::Closure task =
task             2434 net/cookies/cookie_monster_unittest.cc   RunOnOtherThread(task);
task             2453 net/cookies/cookie_monster_unittest.cc   base::Closure task =
task             2457 net/cookies/cookie_monster_unittest.cc   RunOnOtherThread(task);
task             2478 net/cookies/cookie_monster_unittest.cc   base::Closure task = base::Bind(
task             2482 net/cookies/cookie_monster_unittest.cc   RunOnOtherThread(task);
task             2504 net/cookies/cookie_monster_unittest.cc   base::Closure task = base::Bind(
task             2508 net/cookies/cookie_monster_unittest.cc   RunOnOtherThread(task);
task             2523 net/cookies/cookie_monster_unittest.cc   base::Closure task = base::Bind(
task             2528 net/cookies/cookie_monster_unittest.cc   RunOnOtherThread(task);
task             2540 net/cookies/cookie_monster_unittest.cc   base::Closure task = base::Bind(
task             2544 net/cookies/cookie_monster_unittest.cc   RunOnOtherThread(task);
task             2583 net/cookies/cookie_monster_unittest.cc   base::Closure task = base::Bind(
task             2588 net/cookies/cookie_monster_unittest.cc   RunOnOtherThread(task);
task             2605 net/cookies/cookie_monster_unittest.cc   base::Closure task = base::Bind(
task             2609 net/cookies/cookie_monster_unittest.cc   RunOnOtherThread(task);
task             1088 net/cookies/cookie_store_unittest.h   void RunOnOtherThread(const base::Closure& task) {
task             1090 net/cookies/cookie_store_unittest.h     other_thread_.message_loop()->PostTask(FROM_HERE, task);
task             1108 net/cookies/cookie_store_unittest.h   base::Closure task = base::Bind(
task             1112 net/cookies/cookie_store_unittest.h   this->RunOnOtherThread(task);
task             1126 net/cookies/cookie_store_unittest.h   base::Closure task = base::Bind(
task             1130 net/cookies/cookie_store_unittest.h   this->RunOnOtherThread(task);
task             1143 net/cookies/cookie_store_unittest.h   base::Closure task = base::Bind(
task             1147 net/cookies/cookie_store_unittest.h   this->RunOnOtherThread(task);
task             1163 net/cookies/cookie_store_unittest.h   base::Closure task = base::Bind(
task             1167 net/cookies/cookie_store_unittest.h   this->RunOnOtherThread(task);
task             1188 net/cookies/cookie_store_unittest.h   base::Closure task = base::Bind(
task             1192 net/cookies/cookie_store_unittest.h   this->RunOnOtherThread(task);
task             1082 net/disk_cache/blockfile/backend_impl.cc int BackendImpl::RunTaskForTest(const base::Closure& task,
task             1084 net/disk_cache/blockfile/backend_impl.cc   background_queue_.RunTask(task, callback);
task              238 net/disk_cache/blockfile/backend_impl.h   int RunTaskForTest(const base::Closure& task,
task              154 net/disk_cache/blockfile/in_flight_backend_io.cc void BackendIO::RunTask(const base::Closure& task) {
task              156 net/disk_cache/blockfile/in_flight_backend_io.cc   task_ = task;
task              441 net/disk_cache/blockfile/in_flight_backend_io.cc     const base::Closure& task, const net::CompletionCallback& callback) {
task              443 net/disk_cache/blockfile/in_flight_backend_io.cc   operation->RunTask(task);
task               64 net/disk_cache/blockfile/in_flight_backend_io.h   void RunTask(const base::Closure& task);
task              176 net/disk_cache/blockfile/in_flight_backend_io.h   void RunTask(const base::Closure& task,
task              687 net/disk_cache/simple/simple_entry_impl.cc   Closure task = base::Bind(&SimpleSynchronousEntry::OpenEntry,
task              700 net/disk_cache/simple/simple_entry_impl.cc   worker_pool_->PostTaskAndReply(FROM_HERE, task, reply);
task              736 net/disk_cache/simple/simple_entry_impl.cc   Closure task = base::Bind(&SimpleSynchronousEntry::CreateEntry,
task              750 net/disk_cache/simple/simple_entry_impl.cc   worker_pool_->PostTaskAndReply(FROM_HERE, task, reply);
task              779 net/disk_cache/simple/simple_entry_impl.cc     Closure task =
task              788 net/disk_cache/simple/simple_entry_impl.cc     worker_pool_->PostTaskAndReply(FROM_HERE, task, reply);
task              864 net/disk_cache/simple/simple_entry_impl.cc   Closure task = base::Bind(
task              880 net/disk_cache/simple/simple_entry_impl.cc   worker_pool_->PostTaskAndReply(FROM_HERE, task, reply);
task              966 net/disk_cache/simple/simple_entry_impl.cc   Closure task = base::Bind(&SimpleSynchronousEntry::WriteData,
task              980 net/disk_cache/simple/simple_entry_impl.cc   worker_pool_->PostTaskAndReply(FROM_HERE, task, reply);
task              996 net/disk_cache/simple/simple_entry_impl.cc   Closure task = base::Bind(&SimpleSynchronousEntry::ReadSparseData,
task             1008 net/disk_cache/simple/simple_entry_impl.cc   worker_pool_->PostTaskAndReply(FROM_HERE, task, reply);
task             1035 net/disk_cache/simple/simple_entry_impl.cc   Closure task = base::Bind(&SimpleSynchronousEntry::WriteSparseData,
task             1048 net/disk_cache/simple/simple_entry_impl.cc   worker_pool_->PostTaskAndReply(FROM_HERE, task, reply);
task             1063 net/disk_cache/simple/simple_entry_impl.cc   Closure task = base::Bind(&SimpleSynchronousEntry::GetAvailableRange,
task             1074 net/disk_cache/simple/simple_entry_impl.cc   worker_pool_->PostTaskAndReply(FROM_HERE, task, reply);
task             1200 net/disk_cache/simple/simple_entry_impl.cc       Closure task = base::Bind(&SimpleSynchronousEntry::CheckEOFRecord,
task             1210 net/disk_cache/simple/simple_entry_impl.cc       worker_pool_->PostTaskAndReply(FROM_HERE, task, reply);
task              218 net/disk_cache/simple/simple_index.cc int SimpleIndex::ExecuteWhenReady(const net::CompletionCallback& task) {
task              221 net/disk_cache/simple/simple_index.cc     io_thread_->PostTask(FROM_HERE, base::Bind(task, net::OK));
task              223 net/disk_cache/simple/simple_index.cc     to_run_when_initialized_.push_back(task);
task              256 net/disk_cache/simple/simple_index_file.cc   base::Closure task = base::Bind(&SimpleIndexFile::SyncLoadIndexEntries,
task              260 net/disk_cache/simple/simple_index_file.cc   worker_pool_->PostTaskAndReply(FROM_HERE, task, callback);
task               77 net/ocsp/nss_ocsp.cc                         const base::Closure& task);
task              536 net/ocsp/nss_ocsp.cc     const tracked_objects::Location& from_here, const base::Closure& task) {
task              539 net/ocsp/nss_ocsp.cc     io_loop_->PostTask(from_here, task);
task               23 net/quic/test_tools/test_task_runner.cc                                      const base::Closure& task,
task               27 net/quic/test_tools/test_task_runner.cc       PostedTask(from_here, task, clock_->NowInTicks(), delay,
task               47 net/quic/test_tools/test_task_runner.cc   PostedTask task = *next;
task               49 net/quic/test_tools/test_task_runner.cc   task.task.Run();
task               30 net/quic/test_tools/test_task_runner.h                                const base::Closure& task,
task             2767 net/socket/ssl_client_socket_nss.cc     const base::Closure& task) {
task             2771 net/socket/ssl_client_socket_nss.cc         base::Bind(&Core::PostOrRunCallback, this, location, task));
task             2775 net/socket/ssl_client_socket_nss.cc   if (detached_ || task.is_null())
task             2777 net/socket/ssl_client_socket_nss.cc   task.Run();
task              422 net/ssl/default_server_bound_cert_store.cc void DefaultServerBoundCertStore::EnqueueTask(scoped_ptr<Task> task) {
task              427 net/ssl/default_server_bound_cert_store.cc   waiting_tasks_.push_back(task.release());
task              430 net/ssl/default_server_bound_cert_store.cc void DefaultServerBoundCertStore::RunOrEnqueueTask(scoped_ptr<Task> task) {
task              435 net/ssl/default_server_bound_cert_store.cc     EnqueueTask(task.Pass());
task              439 net/ssl/default_server_bound_cert_store.cc   task->Run(this);
task              121 net/ssl/default_server_bound_cert_store.h   void EnqueueTask(scoped_ptr<Task> task);
task              124 net/ssl/default_server_bound_cert_store.h   void RunOrEnqueueTask(scoped_ptr<Task> task);
task               39 net/ssl/server_bound_cert_service_unittest.cc                                const base::Closure& task,
task               95 ppapi/proxy/ppapi_proxy_test.cc void RunTaskOnRemoteHarness(const base::Closure& task,
task               97 ppapi/proxy/ppapi_proxy_test.cc  task.Run();
task              588 ppapi/proxy/ppapi_proxy_test.cc void TwoWayTest::PostTaskOnRemoteHarness(const base::Closure& task) {
task              592 ppapi/proxy/ppapi_proxy_test.cc                  task,
task              336 ppapi/proxy/ppapi_proxy_test.h   void PostTaskOnRemoteHarness(const base::Closure& task);
task               21 remoting/base/auto_thread_task_runner.cc     const base::Closure& task,
task               23 remoting/base/auto_thread_task_runner.cc   CHECK(task_runner_->PostDelayedTask(from_here, task, delay));
task               29 remoting/base/auto_thread_task_runner.cc     const base::Closure& task,
task               31 remoting/base/auto_thread_task_runner.cc   CHECK(task_runner_->PostNonNestableDelayedTask(from_here, task, delay));
task               30 remoting/base/auto_thread_task_runner.h       const base::Closure& task,
task               34 remoting/base/auto_thread_task_runner.h       const base::Closure& task,
task               88 remoting/base/plugin_thread_task_runner.cc     const base::Closure& task,
task               99 remoting/base/plugin_thread_task_runner.cc   base::PendingTask pending_task(from_here, task, delayed_run_time, false);
task              114 remoting/base/plugin_thread_task_runner.cc   pending_task.task.Reset();
task              123 remoting/base/plugin_thread_task_runner.cc     const base::Closure& task,
task              126 remoting/base/plugin_thread_task_runner.cc   return PostDelayedTask(from_here, task, delay);
task              189 remoting/base/plugin_thread_task_runner.cc       pending_task.task.Run();
task              215 remoting/base/plugin_thread_task_runner.cc     delayed_queue_.top().task.Run();
task              242 remoting/base/plugin_thread_task_runner.cc   base::Closure* task = reinterpret_cast<base::Closure*>(data);
task              243 remoting/base/plugin_thread_task_runner.cc   task->Run();
task              244 remoting/base/plugin_thread_task_runner.cc   delete task;
task               51 remoting/base/plugin_thread_task_runner.h       const base::Closure& task,
task               55 remoting/base/plugin_thread_task_runner.h       const base::Closure& task,
task              185 remoting/host/plugin/host_plugin.cc       DelayedTask task = {function, data};
task              186 remoting/host/plugin/host_plugin.cc       timers_[timer_id] = task;
task              199 remoting/host/plugin/host_plugin.cc     DelayedTask task;
task              205 remoting/host/plugin/host_plugin.cc       task = it->second;
task              208 remoting/host/plugin/host_plugin.cc     task.function(task.data);
task               51 remoting/protocol/message_reader_unittest.cc   void AddSecondMessage(const base::Closure& task) {
task               54 remoting/protocol/message_reader_unittest.cc     task.Run();
task               58 remoting/protocol/message_reader_unittest.cc   void OnSecondMessage(const base::Closure& task) {
task               60 remoting/protocol/message_reader_unittest.cc     task.Run();
task               64 remoting/protocol/message_reader_unittest.cc   void DeleteReader(const base::Closure& task) {
task               66 remoting/protocol/message_reader_unittest.cc     task.Run();
task              173 remoting/protocol/pairing_registry.cc     const base::Closure& task) {
task              174 remoting/protocol/pairing_registry.cc   task_runner->PostTask(from_here, task);
task              144 remoting/protocol/pairing_registry.h       const base::Closure& task);
task              106 remoting/protocol/protocol_mock_objects.cc     const base::Closure& task) {
task              108 remoting/protocol/protocol_mock_objects.cc   task.Run();
task              245 remoting/protocol/protocol_mock_objects.h       const base::Closure& task) OVERRIDE;
task              105 sandbox/linux/seccomp-bpf/sandbox_bpf.cc   int task = -1;
task              106 sandbox/linux/seccomp-bpf/sandbox_bpf.cc   if ((task = openat(proc_fd, "self/task", O_RDONLY | O_DIRECTORY)) < 0 ||
task              107 sandbox/linux/seccomp-bpf/sandbox_bpf.cc       fstat(task, &sb) != 0 || sb.st_nlink != 3 || IGNORE_EINTR(close(task))) {
task              108 sandbox/linux/seccomp-bpf/sandbox_bpf.cc     if (task >= 0) {
task              109 sandbox/linux/seccomp-bpf/sandbox_bpf.cc       if (IGNORE_EINTR(close(task))) {
task               66 sandbox/linux/services/thread_helpers_unittests.cc   ScopedProcSelfTask task;
task               67 sandbox/linux/services/thread_helpers_unittests.cc   ASSERT_TRUE(ThreadHelpers::IsSingleThreaded(task.fd()));
task               72 sandbox/linux/services/thread_helpers_unittests.cc   ASSERT_FALSE(ThreadHelpers::IsSingleThreaded(task.fd()));
task               75 sandbox/linux/services/thread_helpers_unittests.cc   ASSERT_TRUE(ThreadHelpers::StopThreadAndWatchProcFS(task.fd(), &thread));
task               79 sandbox/linux/services/thread_helpers_unittests.cc   ScopedProcSelfTask task;
task               80 sandbox/linux/services/thread_helpers_unittests.cc   ASSERT_TRUE(ThreadHelpers::IsSingleThreaded(task.fd()));
task               86 sandbox/linux/services/thread_helpers_unittests.cc     ASSERT_FALSE(ThreadHelpers::IsSingleThreaded(task.fd()));
task               88 sandbox/linux/services/thread_helpers_unittests.cc     ASSERT_TRUE(ThreadHelpers::StopThreadAndWatchProcFS(task.fd(), &thread));
task               93 sandbox/linux/services/thread_helpers_unittests.cc   ScopedProcSelfTask task;
task               94 sandbox/linux/services/thread_helpers_unittests.cc   ASSERT_TRUE(ThreadHelpers::IsSingleThreaded(task.fd()));
task              101 sandbox/linux/services/thread_helpers_unittests.cc     ASSERT_FALSE(ThreadHelpers::IsSingleThreaded(task.fd()));
task              103 sandbox/linux/services/thread_helpers_unittests.cc     ASSERT_TRUE(ThreadHelpers::StopThreadAndWatchProcFS(task.fd(), &thread));
task              104 sandbox/linux/services/thread_helpers_unittests.cc     ASSERT_TRUE(ThreadHelpers::IsSingleThreaded(task.fd()));
task               97 sync/notifier/sync_system_resources.cc                                          invalidation::Closure* task) {
task               98 sync/notifier/sync_system_resources.cc   DCHECK(invalidation::IsCallbackRepeatable(task));
task              102 sync/notifier/sync_system_resources.cc     delete task;
task              106 sync/notifier/sync_system_resources.cc   posted_tasks_.insert(task);
task              109 sync/notifier/sync_system_resources.cc                             weak_factory_.GetWeakPtr(), task),
task              127 sync/notifier/sync_system_resources.cc void SyncInvalidationScheduler::RunPostedTask(invalidation::Closure* task) {
task              129 sync/notifier/sync_system_resources.cc   task->Run();
task              130 sync/notifier/sync_system_resources.cc   posted_tasks_.erase(task);
task              131 sync/notifier/sync_system_resources.cc   delete task;
task               58 sync/notifier/sync_system_resources.h                         invalidation::Closure* task) OVERRIDE;
task               69 sync/notifier/sync_system_resources.h   void RunPostedTask(invalidation::Closure* task);
task              139 third_party/tcmalloc/chromium/src/libc_override_osx.h kern_return_t mi_enumerator(task_t task, void *,
task              139 third_party/tcmalloc/vendor/src/libc_override_osx.h kern_return_t mi_enumerator(task_t task, void *,
task              215 tools/binary_size/java/src/org/chromium/tools/binary_size/ParallelAddress2Line.java         TimerTask task = new TimerTask() {
task              222 tools/binary_size/java/src/org/chromium/tools/binary_size/ParallelAddress2Line.java         timer.schedule(task, 1000L, 1000L);
task              403 tools/binary_size/java/src/org/chromium/tools/binary_size/ParallelAddress2Line.java         final Runnable task = new Runnable() {
task              431 tools/binary_size/java/src/org/chromium/tools/binary_size/ParallelAddress2Line.java         final Thread worker = new Thread(task, "pipe " + in + "->" + out);
task               51 ui/aura/test/ui_controls_factory_aurawin.cc                                           const base::Closure& task) {
task               55 ui/aura/test/ui_controls_factory_aurawin.cc     return SendKeyPressImpl(window, key, control, shift, alt, task);
task               62 ui/aura/test/ui_controls_factory_aurawin.cc                                            const base::Closure& task) {
task               63 ui/aura/test/ui_controls_factory_aurawin.cc     return SendMouseMoveImpl(screen_x, screen_y, task);
task               70 ui/aura/test/ui_controls_factory_aurawin.cc                                              const base::Closure& task) {
task               71 ui/aura/test/ui_controls_factory_aurawin.cc     return SendMouseEventsImpl(type, state, task);
task               59 ui/base/test/ui_controls.h                                 const base::Closure& task);
task               65 ui/base/test/ui_controls.h                                  const base::Closure& task);
task               85 ui/base/test/ui_controls.h                                    const base::Closure& task);
task               38 ui/base/test/ui_controls_aura.cc                                 const base::Closure& task) {
task               41 ui/base/test/ui_controls_aura.cc       window, key, control, shift, alt, command, task);
task               53 ui/base/test/ui_controls_aura.cc                                  const base::Closure& task) {
task               55 ui/base/test/ui_controls_aura.cc   return instance_->SendMouseMoveNotifyWhenDone(x, y, task);
task               67 ui/base/test/ui_controls_aura.cc                                    const base::Closure& task) {
task               69 ui/base/test/ui_controls_aura.cc   return instance_->SendMouseEventsNotifyWhenDone(type, state, task);
task               33 ui/base/test/ui_controls_aura.h                                           const base::Closure& task) = 0;
task               39 ui/base/test/ui_controls_aura.h                                            const base::Closure& task) = 0;
task               46 ui/base/test/ui_controls_aura.h                                              const base::Closure& task) = 0;
task               29 ui/base/test/ui_controls_gtk.cc   EventWaiter(const base::Closure& task, GdkEventType type, int count)
task               30 ui/base/test/ui_controls_gtk.cc       : task_(task),
task              152 ui/base/test/ui_controls_gtk.cc                                 const base::Closure& task) {
task              163 ui/base/test/ui_controls_gtk.cc   new EventWaiter(task, GDK_KEY_RELEASE, release_count);
task              178 ui/base/test/ui_controls_gtk.cc bool SendMouseMoveNotifyWhenDone(long x, long y, const base::Closure& task) {
task              181 ui/base/test/ui_controls_gtk.cc   new EventWaiter(task, GDK_MOTION_NOTIFY, 1);
task              238 ui/base/test/ui_controls_gtk.cc                                    const base::Closure& task) {
task              252 ui/base/test/ui_controls_gtk.cc   new EventWaiter(task, wait_type, 1);
task               23 ui/base/test/ui_controls_internal_win.cc   InputDispatcher(const base::Closure& task, WPARAM message_waiting_for);
task              108 ui/base/test/ui_controls_internal_win.cc InputDispatcher::InputDispatcher(const base::Closure& task,
task              110 ui/base/test/ui_controls_internal_win.cc     : task_(task), message_waiting_for_(message_waiting_for) {
task              174 ui/base/test/ui_controls_internal_win.cc                       const base::Closure& task) {
task              185 ui/base/test/ui_controls_internal_win.cc       !task.is_null() ? new InputDispatcher(task, WM_KEYUP) : NULL);
task              260 ui/base/test/ui_controls_internal_win.cc                        const base::Closure& task) {
task              265 ui/base/test/ui_controls_internal_win.cc     if (!task.is_null())
task              266 ui/base/test/ui_controls_internal_win.cc       base::MessageLoop::current()->PostTask(FROM_HERE, task);
task              283 ui/base/test/ui_controls_internal_win.cc       !task.is_null() ? new InputDispatcher(task, WM_MOUSEMOVE) : NULL);
task              295 ui/base/test/ui_controls_internal_win.cc                          const base::Closure& task) {
task              325 ui/base/test/ui_controls_internal_win.cc       !task.is_null() ? new InputDispatcher(task, last_event) : NULL);
task               22 ui/base/test/ui_controls_internal_win.h                       const base::Closure& task);
task               23 ui/base/test/ui_controls_internal_win.h bool SendMouseMoveImpl(long screen_x, long screen_y, const base::Closure& task);
task               26 ui/base/test/ui_controls_internal_win.h                          const base::Closure& task);
task               27 ui/base/test/ui_controls_internal_win.h void RunClosureAfterAllPendingUITasksImpl(const base::Closure& task);
task               37 ui/base/test/ui_controls_win.cc                                 const base::Closure& task) {
task               40 ui/base/test/ui_controls_win.cc   return internal::SendKeyPressImpl(window, key, control, shift, alt, task);
task               48 ui/base/test/ui_controls_win.cc bool SendMouseMoveNotifyWhenDone(long x, long y, const base::Closure& task) {
task               50 ui/base/test/ui_controls_win.cc   return internal::SendMouseMoveImpl(x, y, task);
task               59 ui/base/test/ui_controls_win.cc                                    const base::Closure& task) {
task               61 ui/base/test/ui_controls_win.cc   return internal::SendMouseEventsImpl(type, state, task);
task              235 webkit/browser/appcache/appcache_request_handler_unittest.cc   void PushNextTask(const base::Closure& task) {
task              236 webkit/browser/appcache/appcache_request_handler_unittest.cc     task_stack_.push(task);
task              130 webkit/browser/appcache/appcache_response_unittest.cc   void PushNextTask(const base::Closure& task) {
task              131 webkit/browser/appcache/appcache_response_unittest.cc     task_stack_.push(std::pair<base::Closure, bool>(task, false));
task              134 webkit/browser/appcache/appcache_response_unittest.cc   void PushNextTaskAsImmediate(const base::Closure& task) {
task              135 webkit/browser/appcache/appcache_response_unittest.cc     task_stack_.push(std::pair<base::Closure, bool>(task, true));
task              144 webkit/browser/appcache/appcache_response_unittest.cc     base::Closure task = task_stack_.top().first;
task              148 webkit/browser/appcache/appcache_response_unittest.cc       task.Run();
task              150 webkit/browser/appcache/appcache_response_unittest.cc       base::MessageLoop::current()->PostTask(FROM_HERE, task);
task             1360 webkit/browser/appcache/appcache_storage_impl.cc   scoped_refptr<InitTask> task(new InitTask(this));
task             1361 webkit/browser/appcache/appcache_storage_impl.cc   task->Schedule();
task             1373 webkit/browser/appcache/appcache_storage_impl.cc   scoped_refptr<DisableDatabaseTask> task(new DisableDatabaseTask(this));
task             1374 webkit/browser/appcache/appcache_storage_impl.cc   task->Schedule();
task             1379 webkit/browser/appcache/appcache_storage_impl.cc   scoped_refptr<GetAllInfoTask> task(new GetAllInfoTask(this));
task             1380 webkit/browser/appcache/appcache_storage_impl.cc   task->AddDelegate(GetOrCreateDelegateReference(delegate));
task             1381 webkit/browser/appcache/appcache_storage_impl.cc   task->Schedule();
task             1402 webkit/browser/appcache/appcache_storage_impl.cc   scoped_refptr<CacheLoadTask> task(GetPendingCacheLoadTask(id));
task             1403 webkit/browser/appcache/appcache_storage_impl.cc   if (task.get()) {
task             1404 webkit/browser/appcache/appcache_storage_impl.cc     task->AddDelegate(GetOrCreateDelegateReference(delegate));
task             1407 webkit/browser/appcache/appcache_storage_impl.cc   task = new CacheLoadTask(id, this);
task             1408 webkit/browser/appcache/appcache_storage_impl.cc   task->AddDelegate(GetOrCreateDelegateReference(delegate));
task             1409 webkit/browser/appcache/appcache_storage_impl.cc   task->Schedule();
task             1410 webkit/browser/appcache/appcache_storage_impl.cc   pending_cache_loads_[id] = task.get();
task             1431 webkit/browser/appcache/appcache_storage_impl.cc   scoped_refptr<GroupLoadTask> task(GetPendingGroupLoadTask(manifest_url));
task             1432 webkit/browser/appcache/appcache_storage_impl.cc   if (task.get()) {
task             1433 webkit/browser/appcache/appcache_storage_impl.cc     task->AddDelegate(GetOrCreateDelegateReference(delegate));
task             1445 webkit/browser/appcache/appcache_storage_impl.cc   task = new GroupLoadTask(manifest_url, this);
task             1446 webkit/browser/appcache/appcache_storage_impl.cc   task->AddDelegate(GetOrCreateDelegateReference(delegate));
task             1447 webkit/browser/appcache/appcache_storage_impl.cc   task->Schedule();
task             1448 webkit/browser/appcache/appcache_storage_impl.cc   pending_group_loads_[manifest_url] = task.get();
task             1459 webkit/browser/appcache/appcache_storage_impl.cc   scoped_refptr<StoreGroupAndCacheTask> task(
task             1461 webkit/browser/appcache/appcache_storage_impl.cc   task->AddDelegate(GetOrCreateDelegateReference(delegate));
task             1462 webkit/browser/appcache/appcache_storage_impl.cc   task->GetQuotaThenSchedule();
task             1526 webkit/browser/appcache/appcache_storage_impl.cc   scoped_refptr<FindMainResponseTask> task(
task             1529 webkit/browser/appcache/appcache_storage_impl.cc   task->AddDelegate(GetOrCreateDelegateReference(delegate));
task             1530 webkit/browser/appcache/appcache_storage_impl.cc   task->Schedule();
task             1613 webkit/browser/appcache/appcache_storage_impl.cc   scoped_refptr<MarkEntryAsForeignTask> task(
task             1615 webkit/browser/appcache/appcache_storage_impl.cc   task->Schedule();
task             1623 webkit/browser/appcache/appcache_storage_impl.cc   scoped_refptr<MakeGroupObsoleteTask> task(
task             1625 webkit/browser/appcache/appcache_storage_impl.cc   task->AddDelegate(GetOrCreateDelegateReference(delegate));
task             1626 webkit/browser/appcache/appcache_storage_impl.cc   task->Schedule();
task             1652 webkit/browser/appcache/appcache_storage_impl.cc   scoped_refptr<InsertDeletableResponseIdsTask> task(
task             1654 webkit/browser/appcache/appcache_storage_impl.cc   task->response_ids_ = response_ids;
task             1655 webkit/browser/appcache/appcache_storage_impl.cc   task->Schedule();
task             1668 webkit/browser/appcache/appcache_storage_impl.cc     scoped_refptr<GetDeletableResponseIdsTask> task(
task             1670 webkit/browser/appcache/appcache_storage_impl.cc     task->Schedule();
task             1730 webkit/browser/appcache/appcache_storage_impl.cc     scoped_refptr<DeleteDeletableResponseIdsTask> task(
task             1732 webkit/browser/appcache/appcache_storage_impl.cc     task->response_ids_.swap(deleted_response_ids_);
task             1733 webkit/browser/appcache/appcache_storage_impl.cc     task->Schedule();
task             1737 webkit/browser/appcache/appcache_storage_impl.cc     scoped_refptr<GetDeletableResponseIdsTask> task(
task             1739 webkit/browser/appcache/appcache_storage_impl.cc     task->Schedule();
task             1772 webkit/browser/appcache/appcache_storage_impl.cc void AppCacheStorageImpl::ScheduleSimpleTask(const base::Closure& task) {
task             1773 webkit/browser/appcache/appcache_storage_impl.cc   pending_simple_tasks_.push_back(task);
task             1782 webkit/browser/appcache/appcache_storage_impl.cc   base::Closure task = pending_simple_tasks_.front();
task             1784 webkit/browser/appcache/appcache_storage_impl.cc   task.Run();
task              105 webkit/browser/appcache/appcache_storage_impl.h   void ScheduleSimpleTask(const base::Closure& task);
task              229 webkit/browser/appcache/appcache_url_request_job_unittest.cc   void PushNextTask(const base::Closure& task) {
task              230 webkit/browser/appcache/appcache_url_request_job_unittest.cc     task_stack_.push(std::pair<base::Closure, bool>(task, false));
task              233 webkit/browser/appcache/appcache_url_request_job_unittest.cc   void PushNextTaskAsImmediate(const base::Closure& task) {
task              234 webkit/browser/appcache/appcache_url_request_job_unittest.cc     task_stack_.push(std::pair<base::Closure, bool>(task, true));
task              243 webkit/browser/appcache/appcache_url_request_job_unittest.cc     base::Closure task =task_stack_.top().first;
task              247 webkit/browser/appcache/appcache_url_request_job_unittest.cc       task.Run();
task              249 webkit/browser/appcache/appcache_url_request_job_unittest.cc       base::MessageLoop::current()->PostTask(FROM_HERE, task);
task              451 webkit/browser/appcache/mock_appcache_storage.cc void MockAppCacheStorage::ScheduleTask(const base::Closure& task) {
task              452 webkit/browser/appcache/mock_appcache_storage.cc   pending_tasks_.push_back(task);
task              461 webkit/browser/appcache/mock_appcache_storage.cc   base::Closure task = pending_tasks_.front();
task              463 webkit/browser/appcache/mock_appcache_storage.cc   task.Run();
task               87 webkit/browser/appcache/mock_appcache_storage.h   void ScheduleTask(const base::Closure& task);
task              344 webkit/browser/fileapi/file_system_operation_impl.cc     const base::Closure& task,
task              353 webkit/browser/fileapi/file_system_operation_impl.cc     task.Run();
task              363 webkit/browser/fileapi/file_system_operation_impl.cc                  weak_factory_.GetWeakPtr(), task, error_callback));
task              367 webkit/browser/fileapi/file_system_operation_impl.cc     const base::Closure& task,
task              378 webkit/browser/fileapi/file_system_operation_impl.cc   task.Run();
task              113 webkit/browser/fileapi/file_system_operation_impl.h       const base::Closure& task,
task              122 webkit/browser/fileapi/file_system_operation_impl.h       const base::Closure& task,
task               79 webkit/browser/fileapi/timed_task_helper.cc   base::Closure task = user_task_;
task               81 webkit/browser/fileapi/timed_task_helper.cc   task.Run();
task             1619 webkit/browser/quota/quota_manager.cc     const base::Callback<bool(QuotaDatabase*)>& task,
task             1627 webkit/browser/quota/quota_manager.cc       base::Bind(task, base::Unretained(database_.get())),
task              386 webkit/browser/quota/quota_manager.h       const base::Callback<bool(QuotaDatabase*)>& task,
task               70 webkit/browser/quota/quota_task.cc void QuotaTaskObserver::RegisterTask(QuotaTask* task) {
task               71 webkit/browser/quota/quota_task.cc   running_quota_tasks_.insert(task);
task               74 webkit/browser/quota/quota_task.cc void QuotaTaskObserver::UnregisterTask(QuotaTask* task) {
task               75 webkit/browser/quota/quota_task.cc   DCHECK(running_quota_tasks_.find(task) != running_quota_tasks_.end());
task               76 webkit/browser/quota/quota_task.cc   running_quota_tasks_.erase(task);
task               71 webkit/browser/quota/quota_task.h   void RegisterTask(QuotaTask* task);
task               72 webkit/browser/quota/quota_task.h   void UnregisterTask(QuotaTask* task);
task               84 webkit/browser/quota/quota_temporary_storage_evictor_unittest.cc   void set_task_for_get_usage_and_quota(const base::Closure& task) {
task               85 webkit/browser/quota/quota_temporary_storage_evictor_unittest.cc     task_for_get_usage_and_quota_= task;
task              320 win8/metro_driver/print_handler.cc     wingfx::Printing::IPrintTask* task,
task               48 win8/metro_driver/print_handler.h   HRESULT OnCompleted(wingfx::Printing::IPrintTask* task,