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

Side by Side Diff: base/test/unit_test_launcher.cc

Issue 23514018: Add Reset to ScopedClosureRunner. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: android fix 2 Created 7 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 | Annotate | Revision Log
« no previous file with comments | « base/prefs/pref_member.cc ('k') | chrome/browser/ui/android/ssl_client_certificate_request.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 #include "base/test/unit_test_launcher.h" 5 #include "base/test/unit_test_launcher.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/callback_helpers.h"
8 #include "base/command_line.h" 9 #include "base/command_line.h"
9 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
10 #include "base/files/scoped_temp_dir.h" 11 #include "base/files/scoped_temp_dir.h"
11 #include "base/file_util.h" 12 #include "base/file_util.h"
12 #include "base/format_macros.h" 13 #include "base/format_macros.h"
13 #include "base/stl_util.h" 14 #include "base/stl_util.h"
14 #include "base/strings/string_util.h" 15 #include "base/strings/string_util.h"
15 #include "base/test/gtest_xml_util.h" 16 #include "base/test/gtest_xml_util.h"
16 #include "base/test/test_launcher.h" 17 #include "base/test/test_launcher.h"
17 #include "base/test/test_switches.h" 18 #include "base/test/test_switches.h"
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 219
219 fprintf(stdout, 220 fprintf(stdout,
220 "Tests took %" PRId64 " seconds.\n", 221 "Tests took %" PRId64 " seconds.\n",
221 (base::TimeTicks::Now() - start_time).InSeconds()); 222 (base::TimeTicks::Now() - start_time).InSeconds());
222 fflush(stdout); 223 fflush(stdout);
223 224
224 return exit_code; 225 return exit_code;
225 } 226 }
226 227
227 } // namespace base 228 } // namespace base
OLDNEW
« no previous file with comments | « base/prefs/pref_member.cc ('k') | chrome/browser/ui/android/ssl_client_certificate_request.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698