OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_LAUNCHER_TEST_RESULTS_TRACKER_H_ | 5 #ifndef BASE_TEST_LAUNCHER_TEST_RESULTS_TRACKER_H_ |
6 #define BASE_TEST_LAUNCHER_TEST_RESULTS_TRACKER_H_ | 6 #define BASE_TEST_LAUNCHER_TEST_RESULTS_TRACKER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/callback.h" | 13 #include "base/callback.h" |
| 14 #include "base/macros.h" |
14 #include "base/test/launcher/test_result.h" | 15 #include "base/test/launcher/test_result.h" |
15 #include "base/threading/thread_checker.h" | 16 #include "base/threading/thread_checker.h" |
16 | 17 |
17 namespace base { | 18 namespace base { |
18 | 19 |
19 class CommandLine; | 20 class CommandLine; |
20 class FilePath; | 21 class FilePath; |
21 | 22 |
22 // A helper class to output results. | 23 // A helper class to output results. |
23 // Note: as currently XML is the only supported format by gtest, we don't | 24 // Note: as currently XML is the only supported format by gtest, we don't |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 | 130 |
130 // File handle of output file (can be NULL if no file). | 131 // File handle of output file (can be NULL if no file). |
131 FILE* out_; | 132 FILE* out_; |
132 | 133 |
133 DISALLOW_COPY_AND_ASSIGN(TestResultsTracker); | 134 DISALLOW_COPY_AND_ASSIGN(TestResultsTracker); |
134 }; | 135 }; |
135 | 136 |
136 } // namespace base | 137 } // namespace base |
137 | 138 |
138 #endif // BASE_TEST_LAUNCHER_TEST_RESULTS_TRACKER_H_ | 139 #endif // BASE_TEST_LAUNCHER_TEST_RESULTS_TRACKER_H_ |
OLD | NEW |