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

Side by Side Diff: chrome/browser/diagnostics/recon_diagnostics.h

Issue 2442953002: Remove stl_util's deletion function use from chrome/. (Closed)
Patch Set: fix Created 4 years, 1 month 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 CHROME_BROWSER_DIAGNOSTICS_RECON_DIAGNOSTICS_H_ 5 #ifndef CHROME_BROWSER_DIAGNOSTICS_RECON_DIAGNOSTICS_H_
6 #define CHROME_BROWSER_DIAGNOSTICS_RECON_DIAGNOSTICS_H_ 6 #define CHROME_BROWSER_DIAGNOSTICS_RECON_DIAGNOSTICS_H_
7 7
8 #include <memory>
9
8 #include "chrome/browser/diagnostics/diagnostics_test.h" 10 #include "chrome/browser/diagnostics/diagnostics_test.h"
9 11
10 namespace diagnostics { 12 namespace diagnostics {
11 13
12 enum OutcomeCodes { 14 enum OutcomeCodes {
13 DIAG_RECON_SUCCESS, 15 DIAG_RECON_SUCCESS,
14 16
15 // OperatingSystemTest 17 // OperatingSystemTest
16 DIAG_RECON_PRE_WINDOW_XP_SP2, 18 DIAG_RECON_PRE_WINDOW_XP_SP2,
17 19
(...skipping 18 matching lines...) Expand all
36 38
37 // JSONTest 39 // JSONTest
38 DIAG_RECON_FILE_NOT_FOUND, 40 DIAG_RECON_FILE_NOT_FOUND,
39 DIAG_RECON_FILE_NOT_FOUND_OK, 41 DIAG_RECON_FILE_NOT_FOUND_OK,
40 DIAG_RECON_CANNOT_OBTAIN_FILE_SIZE, 42 DIAG_RECON_CANNOT_OBTAIN_FILE_SIZE,
41 DIAG_RECON_FILE_TOO_BIG, 43 DIAG_RECON_FILE_TOO_BIG,
42 DIAG_RECON_UNABLE_TO_OPEN_FILE, 44 DIAG_RECON_UNABLE_TO_OPEN_FILE,
43 DIAG_RECON_PARSE_ERROR, 45 DIAG_RECON_PARSE_ERROR,
44 }; 46 };
45 47
46 DiagnosticsTest* MakeBookMarksTest(); 48 std::unique_ptr<DiagnosticsTest> MakeBookMarksTest();
47 DiagnosticsTest* MakeDictonaryDirTest(); 49 std::unique_ptr<DiagnosticsTest> MakeDictonaryDirTest();
48 DiagnosticsTest* MakeDiskSpaceTest(); 50 std::unique_ptr<DiagnosticsTest> MakeDiskSpaceTest();
49 DiagnosticsTest* MakeInstallTypeTest(); 51 std::unique_ptr<DiagnosticsTest> MakeInstallTypeTest();
50 DiagnosticsTest* MakeLocalStateFileTest(); 52 std::unique_ptr<DiagnosticsTest> MakeLocalStateFileTest();
51 DiagnosticsTest* MakeLocalStateTest(); 53 std::unique_ptr<DiagnosticsTest> MakeLocalStateTest();
52 DiagnosticsTest* MakeOperatingSystemTest(); 54 std::unique_ptr<DiagnosticsTest> MakeOperatingSystemTest();
53 DiagnosticsTest* MakePreferencesTest(); 55 std::unique_ptr<DiagnosticsTest> MakePreferencesTest();
54 DiagnosticsTest* MakeResourcesFileTest(); 56 std::unique_ptr<DiagnosticsTest> MakeResourcesFileTest();
55 DiagnosticsTest* MakeUserDirTest(); 57 std::unique_ptr<DiagnosticsTest> MakeUserDirTest();
56 DiagnosticsTest* MakeVersionTest(); 58 std::unique_ptr<DiagnosticsTest> MakeVersionTest();
57 59
58 } // namespace diagnostics 60 } // namespace diagnostics
59 61
60 #endif // CHROME_BROWSER_DIAGNOSTICS_RECON_DIAGNOSTICS_H_ 62 #endif // CHROME_BROWSER_DIAGNOSTICS_RECON_DIAGNOSTICS_H_
OLDNEW
« no previous file with comments | « chrome/browser/diagnostics/diagnostics_model.cc ('k') | chrome/browser/diagnostics/recon_diagnostics.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698