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

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

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/test_suite.h ('k') | base/test/test_support_android.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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/test_suite.h" 5 #include "base/test/test_suite.h"
6 6
7 #include "base/at_exit.h" 7 #include "base/at_exit.h"
8 #include "base/base_paths.h" 8 #include "base/base_paths.h"
9 #include "base/base_switches.h" 9 #include "base/base_switches.h"
10 #include "base/bind.h" 10 #include "base/bind.h"
11 #include "base/command_line.h" 11 #include "base/command_line.h"
12 #include "base/debug/debugger.h" 12 #include "base/debug/debugger.h"
13 #include "base/debug/stack_trace.h" 13 #include "base/debug/stack_trace.h"
14 #include "base/feature_list.h" 14 #include "base/feature_list.h"
15 #include "base/files/file_path.h" 15 #include "base/files/file_path.h"
16 #include "base/files/file_util.h" 16 #include "base/files/file_util.h"
17 #include "base/i18n/icu_util.h" 17 #include "base/i18n/icu_util.h"
18 #include "base/logging.h" 18 #include "base/logging.h"
19 #include "base/macros.h"
19 #include "base/memory/scoped_ptr.h" 20 #include "base/memory/scoped_ptr.h"
20 #include "base/path_service.h" 21 #include "base/path_service.h"
21 #include "base/process/launch.h" 22 #include "base/process/launch.h"
22 #include "base/process/memory.h" 23 #include "base/process/memory.h"
23 #include "base/test/gtest_xml_unittest_result_printer.h" 24 #include "base/test/gtest_xml_unittest_result_printer.h"
24 #include "base/test/gtest_xml_util.h" 25 #include "base/test/gtest_xml_util.h"
25 #include "base/test/launcher/unit_test_launcher.h" 26 #include "base/test/launcher/unit_test_launcher.h"
26 #include "base/test/multiprocess_test.h" 27 #include "base/test/multiprocess_test.h"
27 #include "base/test/test_switches.h" 28 #include "base/test/test_switches.h"
28 #include "base/test/test_timeouts.h" 29 #include "base/test/test_timeouts.h"
29 #include "base/time/time.h" 30 #include "base/time/time.h"
31 #include "build/build_config.h"
30 #include "testing/gmock/include/gmock/gmock.h" 32 #include "testing/gmock/include/gmock/gmock.h"
31 #include "testing/gtest/include/gtest/gtest.h" 33 #include "testing/gtest/include/gtest/gtest.h"
32 #include "testing/multiprocess_func_list.h" 34 #include "testing/multiprocess_func_list.h"
33 35
34 #if defined(OS_MACOSX) 36 #if defined(OS_MACOSX)
35 #include "base/mac/scoped_nsautorelease_pool.h" 37 #include "base/mac/scoped_nsautorelease_pool.h"
36 #if defined(OS_IOS) 38 #if defined(OS_IOS)
37 #include "base/test/test_listener_ios.h" 39 #include "base/test/test_listener_ios.h"
38 #endif // OS_IOS 40 #endif // OS_IOS
39 #endif // OS_MACOSX 41 #endif // OS_MACOSX
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 355
354 TestTimeouts::Initialize(); 356 TestTimeouts::Initialize();
355 357
356 trace_to_file_.BeginTracingFromCommandLineOptions(); 358 trace_to_file_.BeginTracingFromCommandLineOptions();
357 } 359 }
358 360
359 void TestSuite::Shutdown() { 361 void TestSuite::Shutdown() {
360 } 362 }
361 363
362 } // namespace base 364 } // namespace base
OLDNEW
« no previous file with comments | « base/test/test_suite.h ('k') | base/test/test_support_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698