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

Side by Side Diff: trunk/src/base/test/sequenced_task_runner_test_template.h

Issue 14985007: Revert 198844 "Move sequenced_task_runner to base/task" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 7 months 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // This class defines tests that implementations of SequencedTaskRunner should 5 // This class defines tests that implementations of SequencedTaskRunner should
6 // pass in order to be conformant. See task_runner_test_template.h for a 6 // pass in order to be conformant. See task_runner_test_template.h for a
7 // description of how to use the constructs in this file; these work the same. 7 // description of how to use the constructs in this file; these work the same.
8 8
9 #ifndef BASE_SEQUENCED_TASK_RUNNER_TEST_TEMPLATE_H_ 9 #ifndef BASE_SEQUENCED_TASK_RUNNER_TEST_TEMPLATE_H_
10 #define BASE_SEQUENCED_TASK_RUNNER_TEST_TEMPLATE_H_ 10 #define BASE_SEQUENCED_TASK_RUNNER_TEST_TEMPLATE_H_
11 11
12 #include <cstddef> 12 #include <cstddef>
13 #include <iosfwd> 13 #include <iosfwd>
14 #include <vector> 14 #include <vector>
15 15
16 #include "base/basictypes.h" 16 #include "base/basictypes.h"
17 #include "base/bind.h" 17 #include "base/bind.h"
18 #include "base/callback.h" 18 #include "base/callback.h"
19 #include "base/memory/ref_counted.h" 19 #include "base/memory/ref_counted.h"
20 #include "base/sequenced_task_runner.h"
20 #include "base/synchronization/condition_variable.h" 21 #include "base/synchronization/condition_variable.h"
21 #include "base/synchronization/lock.h" 22 #include "base/synchronization/lock.h"
22 #include "base/task/sequenced_task_runner.h"
23 #include "base/time.h" 23 #include "base/time.h"
24 #include "testing/gtest/include/gtest/gtest.h" 24 #include "testing/gtest/include/gtest/gtest.h"
25 25
26 namespace base { 26 namespace base {
27 27
28 namespace internal { 28 namespace internal {
29 29
30 struct TaskEvent { 30 struct TaskEvent {
31 enum Type { POST, START, END }; 31 enum Type { POST, START, END };
32 TaskEvent(int i, Type type); 32 TaskEvent(int i, Type type);
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after
367 SequentialDelayedNonNestable, 367 SequentialDelayedNonNestable,
368 NonNestablePostFromNonNestableTask, 368 NonNestablePostFromNonNestableTask,
369 DelayedTaskBasic, 369 DelayedTaskBasic,
370 DelayedTasksSameDelay, 370 DelayedTasksSameDelay,
371 DelayedTaskAfterLongTask, 371 DelayedTaskAfterLongTask,
372 DelayedTaskAfterManyLongTasks); 372 DelayedTaskAfterManyLongTasks);
373 373
374 } // namespace base 374 } // namespace base
375 375
376 #endif // BASE_TASK_RUNNER_TEST_TEMPLATE_H_ 376 #endif // BASE_TASK_RUNNER_TEST_TEMPLATE_H_
OLDNEW
« no previous file with comments | « trunk/src/base/task/sequenced_task_runner_helpers.h ('k') | trunk/src/chrome/browser/automation/automation_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698