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

Unified Diff: chrome_cleaner/mojom/chrome_prompt.mojom

Issue 2750463006: ChromePrompt Mojo IPC interface (Closed)
Patch Set: Fix typo Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
« GITDEPS ('K') | « chrome_cleaner/mojom/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_cleaner/mojom/chrome_prompt.mojom
diff --git a/chrome_cleaner/mojom/chrome_prompt.mojom b/chrome_cleaner/mojom/chrome_prompt.mojom
new file mode 100644
index 0000000000000000000000000000000000000000..56bb7def4ae9b30fef2f4c95867b6054a2b21111
--- /dev/null
+++ b/chrome_cleaner/mojom/chrome_prompt.mojom
@@ -0,0 +1,62 @@
+// Copyright 2017 The Chromium Authors. All Rights Reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+module chrome_cleaner.mojom;
+
+[Extensible]
+enum ObservedBehaviour {
+ UNSPECIFIED = 0,
+ ADS_INJECTOR = 1,
+ SETTINGS_HIJACKER = 2,
+ BROWSER_HIJACKER = 3,
+};
+
+// Information about removable Unwanted Software matched by the Software
+// Reporter to be shown in the Chrome prompt.
+struct UwS {
+ // The id of this unwanted software.
+ int32 id;
+
+ // The name of this unwanted software.
+ string name;
+
+ // List of behaviors to be presented to the user.
+ array<ObservedBehaviour> observed_behaviours;
grt (UTC plus 2) 2017/03/22 13:48:14 is it easier for consumers of this api for this to
ftirelo 2017/03/22 14:25:36 It's not silly at all. In the compiled code, a Mo
joenotcharles 2017/03/22 14:45:03 I'd prefer to keep the mojom interface as straight
ftirelo 2017/03/22 17:37:37 I'm taking up on Ken's suggestion of using a struc
+
+ // List of fully-qualified paths of the files that will be deleted by the
+ // Chrome Cleanup Tool for this unwanted software.
+ array<string> files_to_delete;
+};
+
+[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 denied the Chrome prompt.
+ DENIED = 3,
+ // The user didn't interact with the Chrome prompt after a while.
+ IGNORED = 4,
+};
+
+// Service provided by Chrome to prompt the user to run the Chrome Cleanup Tool
+// if unwanted software is detected in the system. This service is used by the
grt (UTC plus 2) 2017/03/22 13:48:14 nit: "...on the system..." seems more natural to m
ftirelo 2017/03/22 14:25:36 Prepositions... Thanks for the correction :-)
+// Software Reporter Tool so that all user interaction is provided by Chrome.
+interface ChromePrompt {
+ // Params:
+ // - removable_uws_found: the list of UwS detected by the reporter;
+ // - elevation_required: if the cleaner will need to run in elevated mode.
+ // Returns:
+ // - prompt_acceptance: indicates if the user accepted the prompt;
+ // - logs_uploading_enabled: if the user accepted the prompt, indicates if
grt (UTC plus 2) 2017/03/22 13:48:14 does it make sense for this to be removed and for
ftirelo 2017/03/22 14:25:36 It doesn't make sense to have logs uploading with
+ // they also opted into or opted out of uploading
+ // logs.
+ PromptUser(array<UwS> removable_uws_found, bool elevation_required)
+ => (PromptAcceptance prompt_acceptance,
+ bool logs_uploading_enabled);
+};
« GITDEPS ('K') | « chrome_cleaner/mojom/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698