Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(107)

Unified Diff: base/task_queue.h

Issue 8570022: base::Bind() conversion for chrome/browser/search_engines (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: base/task_queue.h
diff --git a/base/task_queue.h b/base/task_queue.h
deleted file mode 100644
index 877201c422256ca79c851f7a6b15cd86fe944ac4..0000000000000000000000000000000000000000
--- a/base/task_queue.h
+++ /dev/null
@@ -1,44 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef BASE_TASK_QUEUE_H_
-#define BASE_TASK_QUEUE_H_
-#pragma once
-
-#include <deque>
-
-#include "base/base_export.h"
-#include "base/task.h"
-
-// A TaskQueue is a queue of tasks waiting to be run. To run the tasks, call
-// the Run method. A task queue is itself a Task so that it can be placed in a
-// message loop or another task queue.
-class BASE_EXPORT TaskQueue : public Task {
- public:
- TaskQueue();
- virtual ~TaskQueue();
-
- // Push the specified task onto the queue. When the queue is run, the tasks
- // will be run in the order they are pushed.
- //
- // This method takes ownership of |task| and will delete task after it is run
- // (or when the TaskQueue is destroyed, if we never got a chance to run it).
- void Push(Task* task);
-
- // Remove all tasks from the queue. The tasks are deleted.
- void Clear();
-
- // Returns true if this queue contains no tasks.
- bool IsEmpty() const;
-
- // Run all the tasks in the queue. New tasks pushed onto the queue during
- // a run will be run next time |Run| is called.
- virtual void Run();
-
- private:
- // The list of tasks we are waiting to run.
- std::deque<Task*> queue_;
-};
-
-#endif // BASE_TASK_QUEUE_H_

Powered by Google App Engine
This is Rietveld 408576698