summaryrefslogtreecommitdiffstats
path: root/chromium/base/message_loop/incoming_task_queue.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/base/message_loop/incoming_task_queue.h')
-rw-r--r--chromium/base/message_loop/incoming_task_queue.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/chromium/base/message_loop/incoming_task_queue.h b/chromium/base/message_loop/incoming_task_queue.h
index d831a71a3f7..56c5638295b 100644
--- a/chromium/base/message_loop/incoming_task_queue.h
+++ b/chromium/base/message_loop/incoming_task_queue.h
@@ -38,12 +38,6 @@ class BASE_EXPORT IncomingTaskQueue
TimeDelta delay,
bool nestable);
- // Same as AddToIncomingQueue() except that it will avoid blocking if the lock
- // is already held, and will in that case (when the lock is contended) fail to
- // add the task, and will return false.
- bool TryAddToIncomingQueue(const tracked_objects::Location& from_here,
- const Closure& task);
-
// Returns true if the message loop has high resolution timers enabled.
// Provided for testing.
bool IsHighResolutionTimerEnabledForTesting();
@@ -51,11 +45,6 @@ class BASE_EXPORT IncomingTaskQueue
// Returns true if the message loop is "idle". Provided for testing.
bool IsIdleForTesting();
- // Takes the incoming queue lock, signals |caller_wait| and waits until
- // |caller_signal| is signalled.
- void LockWaitUnLockForTesting(WaitableEvent* caller_wait,
- WaitableEvent* caller_signal);
-
// Loads tasks from the |incoming_queue_| into |*work_queue|. Must be called
// from the thread that is running the loop.
void ReloadWorkQueue(TaskQueue* work_queue);