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

Side by Side Diff: base/task_queue.h

Issue 8520018: Add OVERRIDE to base/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: extra header 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « base/synchronization/waitable_event_watcher.h ('k') | base/test/perf_test_suite.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef BASE_TASK_QUEUE_H_ 5 #ifndef BASE_TASK_QUEUE_H_
6 #define BASE_TASK_QUEUE_H_ 6 #define BASE_TASK_QUEUE_H_
7 #pragma once 7 #pragma once
8 8
9 #include <deque> 9 #include <deque>
10 10
(...skipping 16 matching lines...) Expand all
27 void Push(Task* task); 27 void Push(Task* task);
28 28
29 // Remove all tasks from the queue. The tasks are deleted. 29 // Remove all tasks from the queue. The tasks are deleted.
30 void Clear(); 30 void Clear();
31 31
32 // Returns true if this queue contains no tasks. 32 // Returns true if this queue contains no tasks.
33 bool IsEmpty() const; 33 bool IsEmpty() const;
34 34
35 // Run all the tasks in the queue. New tasks pushed onto the queue during 35 // Run all the tasks in the queue. New tasks pushed onto the queue during
36 // a run will be run next time |Run| is called. 36 // a run will be run next time |Run| is called.
37 virtual void Run(); 37 virtual void Run() OVERRIDE;
38 38
39 private: 39 private:
40 // The list of tasks we are waiting to run. 40 // The list of tasks we are waiting to run.
41 std::deque<Task*> queue_; 41 std::deque<Task*> queue_;
42 }; 42 };
43 43
44 #endif // BASE_TASK_QUEUE_H_ 44 #endif // BASE_TASK_QUEUE_H_
OLDNEW
« no previous file with comments | « base/synchronization/waitable_event_watcher.h ('k') | base/test/perf_test_suite.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698