OLD | NEW |
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 "chrome/browser/diagnostics/recon_diagnostics.h" | 5 #include "chrome/browser/diagnostics/recon_diagnostics.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <string> | 10 #include <string> |
11 | 11 |
12 #include "base/files/file_util.h" | 12 #include "base/files/file_util.h" |
13 #include "base/json/json_reader.h" | 13 #include "base/json/json_reader.h" |
14 #include "base/json/json_string_value_serializer.h" | 14 #include "base/json/json_string_value_serializer.h" |
15 #include "base/macros.h" | 15 #include "base/macros.h" |
| 16 #include "base/memory/scoped_ptr.h" |
16 #include "base/path_service.h" | 17 #include "base/path_service.h" |
17 #include "base/strings/string_number_conversions.h" | 18 #include "base/strings/string_number_conversions.h" |
18 #include "base/strings/string_util.h" | 19 #include "base/strings/string_util.h" |
19 #include "base/strings/stringprintf.h" | 20 #include "base/strings/stringprintf.h" |
20 #include "base/strings/utf_string_conversions.h" | 21 #include "base/strings/utf_string_conversions.h" |
21 #include "base/sys_info.h" | 22 #include "base/sys_info.h" |
22 #include "build/build_config.h" | 23 #include "build/build_config.h" |
23 #include "chrome/browser/diagnostics/diagnostics_test.h" | 24 #include "chrome/browser/diagnostics/diagnostics_test.h" |
24 #include "chrome/common/channel_info.h" | 25 #include "chrome/common/channel_info.h" |
25 #include "chrome/common/chrome_constants.h" | 26 #include "chrome/common/chrome_constants.h" |
(...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
432 | 433 |
433 DiagnosticsTest* MakeResourcesFileTest() { | 434 DiagnosticsTest* MakeResourcesFileTest() { |
434 return new PathTest(kPathsToTest[2]); | 435 return new PathTest(kPathsToTest[2]); |
435 } | 436 } |
436 | 437 |
437 DiagnosticsTest* MakeUserDirTest() { return new PathTest(kPathsToTest[3]); } | 438 DiagnosticsTest* MakeUserDirTest() { return new PathTest(kPathsToTest[3]); } |
438 | 439 |
439 DiagnosticsTest* MakeVersionTest() { return new VersionTest(); } | 440 DiagnosticsTest* MakeVersionTest() { return new VersionTest(); } |
440 | 441 |
441 } // namespace diagnostics | 442 } // namespace diagnostics |
OLD | NEW |