summaryrefslogtreecommitdiff
path: root/chromium/components/chrome_cleaner
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2021-05-20 09:47:09 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2021-06-07 11:15:42 +0000
commit189d4fd8fad9e3c776873be51938cd31a42b6177 (patch)
tree6497caeff5e383937996768766ab3bb2081a40b2 /chromium/components/chrome_cleaner
parent8bc75099d364490b22f43a7ce366b366c08f4164 (diff)
downloadqtwebengine-chromium-189d4fd8fad9e3c776873be51938cd31a42b6177.tar.gz
BASELINE: Update Chromium to 90.0.4430.221
Change-Id: Iff4d9d18d2fcf1a576f3b1f453010f744a232920 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/components/chrome_cleaner')
-rw-r--r--chromium/components/chrome_cleaner/DIR_METADATA5
-rw-r--r--chromium/components/chrome_cleaner/OWNERS3
-rw-r--r--chromium/components/chrome_cleaner/public/proto/DIR_METADATA5
-rw-r--r--chromium/components/chrome_cleaner/public/proto/OWNERS3
-rw-r--r--chromium/components/chrome_cleaner/public/proto/chrome_prompt.proto3
5 files changed, 13 insertions, 6 deletions
diff --git a/chromium/components/chrome_cleaner/DIR_METADATA b/chromium/components/chrome_cleaner/DIR_METADATA
new file mode 100644
index 00000000000..efa11fb9132
--- /dev/null
+++ b/chromium/components/chrome_cleaner/DIR_METADATA
@@ -0,0 +1,5 @@
+monorail {
+ component: "UI>Browser>Preferences>Protector"
+}
+
+team_email: "security-dev@chromium.org"
diff --git a/chromium/components/chrome_cleaner/OWNERS b/chromium/components/chrome_cleaner/OWNERS
index 6c83cc7980c..51bb047d25f 100644
--- a/chromium/components/chrome_cleaner/OWNERS
+++ b/chromium/components/chrome_cleaner/OWNERS
@@ -1,4 +1 @@
file://chrome/chrome_cleaner/OWNERS
-
-# TEAM: security-dev@chromium.org
-# COMPONENT: UI>Browser>Preferences>Protector
diff --git a/chromium/components/chrome_cleaner/public/proto/DIR_METADATA b/chromium/components/chrome_cleaner/public/proto/DIR_METADATA
new file mode 100644
index 00000000000..efa11fb9132
--- /dev/null
+++ b/chromium/components/chrome_cleaner/public/proto/DIR_METADATA
@@ -0,0 +1,5 @@
+monorail {
+ component: "UI>Browser>Preferences>Protector"
+}
+
+team_email: "security-dev@chromium.org"
diff --git a/chromium/components/chrome_cleaner/public/proto/OWNERS b/chromium/components/chrome_cleaner/public/proto/OWNERS
index a0c8c42e1e5..b134b447092 100644
--- a/chromium/components/chrome_cleaner/public/proto/OWNERS
+++ b/chromium/components/chrome_cleaner/public/proto/OWNERS
@@ -2,6 +2,3 @@
# interface.
per-file *.proto=set noparent
per-file *.proto=file://ipc/SECURITY_OWNERS
-
-# TEAM: security-dev@chromium.org
-# COMPONENT: UI>Browser>Preferences>Protector
diff --git a/chromium/components/chrome_cleaner/public/proto/chrome_prompt.proto b/chromium/components/chrome_cleaner/public/proto/chrome_prompt.proto
index de5500d2c9d..755649a884e 100644
--- a/chromium/components/chrome_cleaner/public/proto/chrome_prompt.proto
+++ b/chromium/components/chrome_cleaner/public/proto/chrome_prompt.proto
@@ -38,6 +38,7 @@ message PromptUserRequest {
// List of IDs of extensions that will be removed by the Chrome Cleanup tool.
// These are 32-character extension ID's.
+ // TODO(crbug.com/981388): Deprecate and remove this field.
repeated string extension_ids = 3;
// After deserializing, Chrome must check if
@@ -66,12 +67,14 @@ message PromptUserResponse {
}
// Tells Chrome to remove the given extensions.
+// TODO(crbug.com/981388): Deprecate and remove this request.
message RemoveExtensionsRequest {
repeated string extension_ids = 1;
}
// Tells the Chrome Cleanup tool whether Chrome successfully removed all
// extensions.
+// TODO(crbug.com/981388): Deprecate and remove this response.
message RemoveExtensionsResponse {
// Missing |success| will cause Chrome Cleanup to exit with an error.
optional bool success = 1;