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

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

Issue 531003002: Cleanup in base/test/launcher: move more code to anonymous namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « no previous file | base/test/launcher/test_launcher.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_LAUNCHER_H_ 5 #ifndef BASE_TEST_LAUNCHER_TEST_LAUNCHER_H_
6 #define BASE_TEST_LAUNCHER_TEST_LAUNCHER_H_ 6 #define BASE_TEST_LAUNCHER_TEST_LAUNCHER_H_
7 7
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 10
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 // Worker pool used to launch processes in parallel. 194 // Worker pool used to launch processes in parallel.
195 scoped_ptr<SequencedWorkerPoolOwner> worker_pool_owner_; 195 scoped_ptr<SequencedWorkerPoolOwner> worker_pool_owner_;
196 196
197 DISALLOW_COPY_AND_ASSIGN(TestLauncher); 197 DISALLOW_COPY_AND_ASSIGN(TestLauncher);
198 }; 198 };
199 199
200 // Extract part from |full_output| that applies to |result|. 200 // Extract part from |full_output| that applies to |result|.
201 std::string GetTestOutputSnippet(const TestResult& result, 201 std::string GetTestOutputSnippet(const TestResult& result,
202 const std::string& full_output); 202 const std::string& full_output);
203 203
204 // Returns command line command line after gtest-specific processing
205 // and applying |wrapper|.
206 CommandLine PrepareCommandLineForGTest(const CommandLine& command_line,
207 const std::string& wrapper);
208
209 } // namespace base 204 } // namespace base
210 205
211 #endif // BASE_TEST_LAUNCHER_TEST_LAUNCHER_H_ 206 #endif // BASE_TEST_LAUNCHER_TEST_LAUNCHER_H_
OLDNEW
« no previous file with comments | « no previous file | base/test/launcher/test_launcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698