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

Side by Side Diff: chrome/test/test_launcher/test_runner.cc

Issue 3014015: Remove <iostream> where possible. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: fix chrome frame compile Created 10 years, 5 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 | « chrome/test/reliability/page_load_test.cc ('k') | chrome/test/v8_unit_test.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 (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 #include "chrome/test/test_launcher/test_runner.h" 5 #include "chrome/test/test_launcher/test_runner.h"
6 6
7 #include <iostream>
8 #include <vector> 7 #include <vector>
9 8
10 #include "base/command_line.h" 9 #include "base/command_line.h"
11 #include "base/file_util.h" 10 #include "base/file_util.h"
12 #include "base/linked_ptr.h" 11 #include "base/linked_ptr.h"
13 #include "base/logging.h" 12 #include "base/logging.h"
14 #include "base/process_util.h" 13 #include "base/process_util.h"
15 #include "base/scoped_ptr.h" 14 #include "base/scoped_ptr.h"
16 #include "base/string_util.h" 15 #include "base/string_util.h"
17 #include "base/test/test_suite.h" 16 #include "base/test/test_suite.h"
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 printf("Failing tests:\n"); 261 printf("Failing tests:\n");
263 for (std::vector<std::string>::const_iterator iter = failed_tests.begin(); 262 for (std::vector<std::string>::const_iterator iter = failed_tests.begin();
264 iter != failed_tests.end(); ++iter) { 263 iter != failed_tests.end(); ++iter) {
265 printf("%s\n", iter->c_str()); 264 printf("%s\n", iter->c_str());
266 } 265 }
267 266
268 return false; 267 return false;
269 } 268 }
270 269
271 } // namespace 270 } // namespace
OLDNEW
« no previous file with comments | « chrome/test/reliability/page_load_test.cc ('k') | chrome/test/v8_unit_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698