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

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

Issue 2906103002: Post-cleanup settings reset. (Closed)
Patch Set: Use base::DoNothing 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 | « components/chrome_cleaner/public/constants/constants.h ('k') | no next file » | 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 #include "components/chrome_cleaner/public/constants/constants.h" 5 #include "components/chrome_cleaner/public/constants/constants.h"
6 6
7 namespace chrome_cleaner { 7 namespace chrome_cleaner {
8 8
9 // Command line switches. 9 // Command line switches.
10 const char kChromeChannelSwitch[] = "chrome-channel"; 10 const char kChromeChannelSwitch[] = "chrome-channel";
(...skipping 13 matching lines...) Expand all
24 const char kSessionIdSwitch[] = "session-id"; 24 const char kSessionIdSwitch[] = "session-id";
25 const char kUmaUserSwitch[] = "uma-user"; 25 const char kUmaUserSwitch[] = "uma-user";
26 26
27 // Registry paths and subkeys. 27 // Registry paths and subkeys.
28 const wchar_t kSoftwareRemovalToolRegistryKey[] = 28 const wchar_t kSoftwareRemovalToolRegistryKey[] =
29 L"Software\\Google\\Software Removal Tool"; 29 L"Software\\Google\\Software Removal Tool";
30 const wchar_t kCleanerSubKey[] = L"Cleaner"; 30 const wchar_t kCleanerSubKey[] = L"Cleaner";
31 const wchar_t kScanTimesSubKey[] = L"ScanTimes"; 31 const wchar_t kScanTimesSubKey[] = L"ScanTimes";
32 32
33 // Registry value names. 33 // Registry value names.
34 const wchar_t kCleanupCompletedValueName[] = L"cleanup-completed";
34 const wchar_t kEndTimeValueName[] = L"EndTime"; 35 const wchar_t kEndTimeValueName[] = L"EndTime";
35 const wchar_t kEngineErrorCodeValueName[] = L"EngineErrorCode"; 36 const wchar_t kEngineErrorCodeValueName[] = L"EngineErrorCode";
36 const wchar_t kExitCodeValueName[] = L"ExitCode"; 37 const wchar_t kExitCodeValueName[] = L"ExitCode";
37 // Note: the lowercase "s" in "Uws" can't be fixed due to compatibility with 38 // Note: the lowercase "s" in "Uws" can't be fixed due to compatibility with
38 // older versions. 39 // older versions.
39 const wchar_t kFoundUwsValueName[] = L"FoundUws"; 40 const wchar_t kFoundUwsValueName[] = L"FoundUws";
40 const wchar_t kLogsUploadResultValueName[] = L"LogsUploadResult"; 41 const wchar_t kLogsUploadResultValueName[] = L"LogsUploadResult";
41 const wchar_t kMemoryUsedValueName[] = L"MemoryUsed"; 42 const wchar_t kMemoryUsedValueName[] = L"MemoryUsed";
42 const wchar_t kStartTimeValueName[] = L"StartTime"; 43 const wchar_t kStartTimeValueName[] = L"StartTime";
43 const wchar_t kUploadResultsValueName[] = L"UploadResults"; 44 const wchar_t kUploadResultsValueName[] = L"UploadResults";
44 const wchar_t kVersionValueName[] = L"Version"; 45 const wchar_t kVersionValueName[] = L"Version";
45 46
46 } // namespace chrome_cleaner 47 } // namespace chrome_cleaner
OLDNEW
« no previous file with comments | « components/chrome_cleaner/public/constants/constants.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698