HomeSort by relevance Sort by last modified time
    Searched refs:Task (Results 201 - 225 of 415) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium/chrome/browser/sync/util/
extensions_activity_monitor.cc 7 #include "base/task.h"
16 // A helper task to register an ExtensionsActivityMonitor as an observer of
19 class RegistrationTask : public Task {
  /external/chromium/net/base/
keygen_handler_unittest.cc 12 #include "base/task.h"
83 class ConcurrencyTestTask : public Task {
  /external/chromium/net/disk_cache/
disk_cache_test_base.h 100 void RunTaskForTest(Task* task);
in_flight_backend_io.h 63 void RunTask(Task* task);
134 Task* task_;
167 void RunTask(Task* task, net::CompletionCallback* callback);
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerEventQueue.cpp 51 class WorkerEventQueue::EventDispatcherTask : public ScriptExecutionContext::Task {
107 OwnPtr<EventDispatcherTask> task = EventDispatcherTask::create(event, this); local
108 m_eventTaskMap.add(event.release(), task.get());
109 m_scriptExecutionContext->postTask(task.release());
115 EventDispatcherTask* task = m_eventTaskMap.get(event); local
116 if (!task)
118 task->cancel();
127 EventDispatcherTask* task = it->value; local
128 task->cancel();
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
ThreadableWebSocketChannelClientWrapper.h 115 Vector<OwnPtr<ScriptExecutionContext::Task> > m_pendingTasks;
  /external/chromium/chrome/browser/sync/notifier/
cache_invalidation_packet_handler.cc 34 // TODO(akalin): Move these task classes out so that they can be
38 // A task that listens for ClientInvalidation messages and calls the
43 CacheInvalidationListenTask(Task* parent,
109 // A task that sends a single outbound ClientInvalidation message.
112 CacheInvalidationSendMessageTask(Task* parent,
191 base::WeakPtr<talk_base::Task> base_task,
invalidation_notifier.cc 91 base::WeakPtr<talk_base::Task> base_task) {
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ScriptExecutionContext.cpp 46 class ProcessMessagesSoonTask : public ScriptExecutionContext::Task {
308 ScriptExecutionContext::Task::~Task()
  /external/chromium/chrome/browser/automation/
automation_provider_win.cc 30 // This task just adds another task to the event queue. This is useful if
32 // have already been processed by the time |task| is run.
33 class InvokeTaskLaterTask : public Task {
35 explicit InvokeTaskLaterTask(Task* task) : task_(task) {}
43 Task* task_;
75 // This task enqueues a mouse event on the event loop, so that the view
77 class MouseEventTask : public Task {
    [all...]
automation_util.cc 202 Task* task = NewRunnableFunction( local
205 if (!BrowserThread::PostTask(BrowserThread::IO, FROM_HERE, task)) {
206 reply.SendError("Couldn't post task to get the cookies");
250 Task* task = NewRunnableFunction( local
253 if (!BrowserThread::PostTask(BrowserThread::IO, FROM_HERE, task)) {
254 reply.SendError("Couldn't post task to delete the cookie");
335 Task* task = NewRunnableFunction local
    [all...]
  /prebuilts/devtools/tools/lib/
ant-tasks.jar 
  /external/chromium/chrome/browser/extensions/
extension_tts_api.cc 56 Task* completion_task)
102 DCHECK_EQ(completion_task_, static_cast<Task *>(NULL));
349 Task* completion_task = NewRunnableMethod(
extension_idle_api.cc 15 #include "base/task.h"
52 class ExtensionIdlePollingTask : public Task {
57 // Overridden from Task.
130 // Create a secondary polling task until an active state is reached.
  /external/chromium/chrome/browser/service/
service_process_control.cc 37 // If the channel has already been established then we run the task
95 void ServiceProcessControl::Launch(Task* success_task, Task* failure_task) {
100 // If the tasks are the same, then the same task needs to be invoked
176 // to it. The launch task is transfered to a connect task.
320 // After the command is executed, |task| is called with the process handle on
322 void ServiceProcessControl::Launcher::Run(Task* task) {
324 notify_task_.reset(task);
    [all...]
  /external/chromium/chrome/browser/ui/webui/
plugins_ui.cc 173 // if the PluginsDOMHandler object goes away before the task on the UI thread
179 static void LoadPluginsOnFileThread(ListWrapper* wrapper, Task* task);
308 Task* task) {
310 BrowserThread::PostTask(BrowserThread::UI, FROM_HERE, task);
328 Task* task = get_plugins_factory_.NewRunnableMethod( local
335 &PluginsDOMHandler::LoadPluginsOnFileThread, wrapper, task));
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/46/1/.cp/lib/
repository-tools-ant.jar 
  /external/chromium/base/
message_loop_proxy_impl_unittest.cc 50 class DummyTask : public Task {
timer.h 52 #include "base/task.h"
87 // We have access to the timer_ member so we can orphan this task.
88 class TimerTask : public Task {
100 // Used to initiated a new delayed task. This has the side-effect of
148 // This task may be getting cleared because the MessageLoop has been
150 // to this now-defunct task.
174 // Task is old. So, if the Timer points to a different task, assume
175 // that the Timer has already taken care of properly setting the task.
  /external/chromium/chrome/browser/download/
save_file_manager.h 77 class Task;
  /external/chromium/chrome/browser/policy/
asynchronous_policy_loader.cc 8 #include "base/task.h"
27 // will cause the task to be forgotten. Instead, post a task to the ui thread
55 class UpdatePolicyTask : public Task {
91 // Only check the thread if there's still a reload task. During
115 // change in policy, schedule a reload task that'll make us recheck after a
123 // Drop the reference to the reload task, since the task might be the only
  /external/chromium/chrome/common/
important_file_writer.cc 16 #include "base/task.h"
26 class WriteToDiskTask : public Task {
111 // Posting the task to background message loop is not expected
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
WorkerScriptDebugServer.cpp 86 void WorkerScriptDebugServer::interruptAndRunTask(PassOwnPtr<Task> task)
88 interruptAndRun(task, m_isolate);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
WorkerDebuggerAgent.cpp 58 class RunInspectorCommandsTask : public ScriptDebugServer::Task {
68 // just be ignored. WorkerThread is certainly alive if this task is being executed.
  /external/chromium_org/webkit/child/
worker_task_runner.cc 16 class RunClosureTask : public WebWorkerRunLoop::Task {
18 RunClosureTask(const base::Closure& task) : task_(task) {}

Completed in 372 milliseconds

1 2 3 4 5 6 7 891011>>