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

Side by Side Diff: base/test/launcher/test_results_tracker.h

Issue 1544113002: Switch to standard integer types in base/test/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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
« no previous file with comments | « base/test/launcher/test_result.cc ('k') | base/test/launcher/test_results_tracker.cc » ('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 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
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_
OLDNEW
« no previous file with comments | « base/test/launcher/test_result.cc ('k') | base/test/launcher/test_results_tracker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698