Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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. No UI will be shown to the | |
|
Joe Mason
2017/04/21 17:12:20
Type: "validation mode". Or else take out the word
ftirelo
2017/04/21 17:15:10
Done.
| |
| 114 // user and logs will only be uploaded if the user opted into Extended Safe | |
| 115 // 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_ |
| OLD | NEW |