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

Side by Side Diff: components/chrome_cleaner/public/constants/constants.h

Issue 2906103002: Post-cleanup settings reset. (Closed)
Patch Set: Nits Created 3 years, 6 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/BUILD.gn ('k') | components/chrome_cleaner/public/constants/constants.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 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 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 COMPONENTS_CHROME_CLEANER_PUBLIC_CONSTANTS_CONSTANTS_H_ 5 #ifndef COMPONENTS_CHROME_CLEANER_PUBLIC_CONSTANTS_CONSTANTS_H_
6 #define COMPONENTS_CHROME_CLEANER_PUBLIC_CONSTANTS_CONSTANTS_H_ 6 #define COMPONENTS_CHROME_CLEANER_PUBLIC_CONSTANTS_CONSTANTS_H_
7 7
8 // Constants shared by the Chromium and the Chrome Cleanaup tool repos. 8 // Constants shared by the Chromium and the Chrome Cleanaup tool repos.
9 9
10 namespace chrome_cleaner { 10 namespace chrome_cleaner {
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 72
73 // TODO(b/647763) Change the registry key to properly handle cases when the 73 // TODO(b/647763) Change the registry key to properly handle cases when the
74 // user runs Google Chrome stable alongside Google Chrome SxS. 74 // user runs Google Chrome stable alongside Google Chrome SxS.
75 extern const wchar_t kSoftwareRemovalToolRegistryKey[]; 75 extern const wchar_t kSoftwareRemovalToolRegistryKey[];
76 76
77 // The suffix for the registry key where cleaner metrics are written to. 77 // The suffix for the registry key where cleaner metrics are written to.
78 extern const wchar_t kCleanerSubKey[]; 78 extern const wchar_t kCleanerSubKey[];
79 // The suffix for registry key paths where scan times will be written to. 79 // The suffix for registry key paths where scan times will be written to.
80 extern const wchar_t kScanTimesSubKey[]; 80 extern const wchar_t kScanTimesSubKey[];
81 81
82 // Registry value names where the timestamps for cleanup start and completion
83 // are written to.
84 extern const wchar_t kCleanupConfirmedTimestampValueName[];
85 extern const wchar_t kCleanupStartedTimestampValueName[];
ftirelo 2017/06/06 19:28:16 Note to reviewer: I'm thinking of removing the nee
86
82 // Registry value names where metrics are written to. 87 // Registry value names where metrics are written to.
83 extern const wchar_t kEndTimeValueName[]; 88 extern const wchar_t kEndTimeValueName[];
84 extern const wchar_t kEngineErrorCodeValueName[]; 89 extern const wchar_t kEngineErrorCodeValueName[];
85 extern const wchar_t kExitCodeValueName[]; 90 extern const wchar_t kExitCodeValueName[];
86 extern const wchar_t kFoundUwsValueName[]; 91 extern const wchar_t kFoundUwsValueName[];
87 extern const wchar_t kLogsUploadResultValueName[]; 92 extern const wchar_t kLogsUploadResultValueName[];
88 extern const wchar_t kMemoryUsedValueName[]; 93 extern const wchar_t kMemoryUsedValueName[];
89 extern const wchar_t kStartTimeValueName[]; 94 extern const wchar_t kStartTimeValueName[];
90 extern const wchar_t kUploadResultsValueName[]; 95 extern const wchar_t kUploadResultsValueName[];
91 extern const wchar_t kVersionValueName[]; 96 extern const wchar_t kVersionValueName[];
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 // Safe Browsing Reporting v2. 129 // Safe Browsing Reporting v2.
125 kPostRebootValidation = 3, 130 kPostRebootValidation = 3,
126 131
127 // Auxiliary enumerator for range checking. 132 // Auxiliary enumerator for range checking.
128 kNumValues, 133 kNumValues,
129 }; 134 };
130 135
131 } // namespace chrome_cleaner 136 } // namespace chrome_cleaner
132 137
133 #endif // COMPONENTS_CHROME_CLEANER_PUBLIC_CONSTANTS_CONSTANTS_H_ 138 #endif // COMPONENTS_CHROME_CLEANER_PUBLIC_CONSTANTS_CONSTANTS_H_
OLDNEW
« no previous file with comments | « chrome/test/BUILD.gn ('k') | components/chrome_cleaner/public/constants/constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698