| OLD | NEW |
| 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 #ifndef BASE_TEST_TEST_PENDING_TASK_H_ | 5 #ifndef BASE_TEST_TEST_PENDING_TASK_H_ |
| 6 #define BASE_TEST_TEST_PENDING_TASK_H_ | 6 #define BASE_TEST_TEST_PENDING_TASK_H_ |
| 7 | 7 |
| 8 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "base/location.h" | 9 #include "base/location.h" |
| 10 #include "base/time.h" | 10 #include "base/time/time.h" |
| 11 | 11 |
| 12 namespace base { | 12 namespace base { |
| 13 | 13 |
| 14 // TestPendingTask is a helper class for test TaskRunner | 14 // TestPendingTask is a helper class for test TaskRunner |
| 15 // implementations. See test_simple_task_runner.h for example usage. | 15 // implementations. See test_simple_task_runner.h for example usage. |
| 16 | 16 |
| 17 struct TestPendingTask { | 17 struct TestPendingTask { |
| 18 enum TestNestability { NESTABLE, NON_NESTABLE }; | 18 enum TestNestability { NESTABLE, NON_NESTABLE }; |
| 19 | 19 |
| 20 TestPendingTask(); | 20 TestPendingTask(); |
| (...skipping 28 matching lines...) Expand all Loading... |
| 49 tracked_objects::Location location; | 49 tracked_objects::Location location; |
| 50 Closure task; | 50 Closure task; |
| 51 TimeTicks post_time; | 51 TimeTicks post_time; |
| 52 TimeDelta delay; | 52 TimeDelta delay; |
| 53 TestNestability nestability; | 53 TestNestability nestability; |
| 54 }; | 54 }; |
| 55 | 55 |
| 56 } // namespace base | 56 } // namespace base |
| 57 | 57 |
| 58 #endif // BASE_TEST_TEST_TASK_RUNNER_H_ | 58 #endif // BASE_TEST_TEST_TASK_RUNNER_H_ |
| OLD | NEW |