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

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

Issue 2831393002: Define post reboot validation mode (Closed)
Patch Set: Fix description Created 3 years, 8 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 | « no previous file | 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 #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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 // will show its own UI and handle logs uploading permissions. 103 // will show its own UI and handle logs uploading permissions.
104 kNone = 0, 104 kNone = 0,
105 // The cleaner will run in scanning mode. No UI will be shown to the user 105 // The cleaner will run in scanning mode. No UI will be shown to the user
106 // (UI handled by Chrome) and logs will only be uploaded if the user opted 106 // (UI handled by Chrome) and logs will only be uploaded if the user opted
107 // into Extended Safe Browsing Reporting. 107 // into Extended Safe Browsing Reporting.
108 kScanning = 1, 108 kScanning = 1,
109 // The cleaner will run in cleanup mode only. No UI will be shown to the 109 // The cleaner will run in cleanup mode only. No UI will be shown to the
110 // user (UI handled by Chrome) and logs will only be uploaded if the user 110 // user (UI handled by Chrome) and logs will only be uploaded if the user
111 // opted into Extended Safe Browsing Reporting v2. 111 // opted into Extended Safe Browsing Reporting v2.
112 kCleanup = 2, 112 kCleanup = 2,
113 // The cleaner will run in post-reboot validation mode. No UI will be shown
114 // to the user and logs will only be uploaded if the user opted into Extended
115 // Safe Browsing Reporting v2.
116 kPostRebootValidation = 3,
113 }; 117 };
114 118
115 } // namespace chrome_cleaner 119 } // namespace chrome_cleaner
116 120
117 #endif // COMPONENTS_CHROME_CLEANER_PUBLIC_CONSTANTS_CONSTANTS_H_ 121 #endif // COMPONENTS_CHROME_CLEANER_PUBLIC_CONSTANTS_CONSTANTS_H_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698