| Index: components/chrome_cleaner/public/interfaces/chrome_prompt.mojom
|
| diff --git a/components/chrome_cleaner/public/interfaces/chrome_prompt.mojom b/components/chrome_cleaner/public/interfaces/chrome_prompt.mojom
|
| index e935de9d570882ed42d6c9f35c91afd2d3a1c904..0208967f5a8830e58ad9cd9e66f9bf9fd2b7d3d6 100644
|
| --- a/components/chrome_cleaner/public/interfaces/chrome_prompt.mojom
|
| +++ b/components/chrome_cleaner/public/interfaces/chrome_prompt.mojom
|
| @@ -16,16 +16,15 @@ module chrome_cleaner.mojom;
|
| [Extensible]
|
| enum PromptAcceptance {
|
| UNSPECIFIED = 0,
|
| - // The Chrome prompt was not shown to the user (for example, due to an
|
| - // experiment run that shouldn't prompt the user or because the user has
|
| - // been prompted recently).
|
| - NOT_SHOWN = 1,
|
| - // The user explicitly accepted the Chrome prompt.
|
| - ACCEPTED = 2,
|
| + // The user explicitly accepted the cleanup operation and cleaner logs
|
| + // upload is allowed.
|
| + ACCEPTED_WITH_LOGS = 1,
|
| + // The user explicitly accepted the cleanup operation and cleaner logs
|
| + // upload is not allowed.
|
| + ACCEPTED_WITHOUT_LOGS = 2,
|
| // The user explicitly denied the Chrome prompt.
|
| DENIED = 3,
|
| - // The user didn't interact with the Chrome prompt after a while.
|
| - IGNORED = 4,
|
| + NUM_VALUES,
|
| };
|
|
|
| struct FilePath {
|
|
|