summaryrefslogtreecommitdiff
path: root/chromium/components/consent_auditor
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/consent_auditor
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/consent_auditor')
-rw-r--r--chromium/components/consent_auditor/DIR_METADATA3
-rw-r--r--chromium/components/consent_auditor/OWNERS2
-rw-r--r--chromium/components/consent_auditor/fake_consent_auditor.h6
3 files changed, 6 insertions, 5 deletions
diff --git a/chromium/components/consent_auditor/DIR_METADATA b/chromium/components/consent_auditor/DIR_METADATA
new file mode 100644
index 00000000000..db7a5c4ab8e
--- /dev/null
+++ b/chromium/components/consent_auditor/DIR_METADATA
@@ -0,0 +1,3 @@
+monorail {
+ component: "Privacy"
+}
diff --git a/chromium/components/consent_auditor/OWNERS b/chromium/components/consent_auditor/OWNERS
index ec0368245e6..0e2c166181b 100644
--- a/chromium/components/consent_auditor/OWNERS
+++ b/chromium/components/consent_auditor/OWNERS
@@ -2,5 +2,3 @@ dullweber@chromium.org
markusheintz@chromium.org
msramek@chromium.org
vitaliii@chromium.org
-
-# COMPONENT: Privacy
diff --git a/chromium/components/consent_auditor/fake_consent_auditor.h b/chromium/components/consent_auditor/fake_consent_auditor.h
index aa2ccf05936..4b2385c6d6c 100644
--- a/chromium/components/consent_auditor/fake_consent_auditor.h
+++ b/chromium/components/consent_auditor/fake_consent_auditor.h
@@ -107,7 +107,7 @@ MATCHER_P(ArcPlayConsentEq, expected_consent, "") {
expected_consent.SerializeAsString())
return true;
- LOG(ERROR) << "ERROR: actual proto does not match the expected proto";
+ *result_listener << "ERROR: actual proto does not match the expected proto";
return false;
}
@@ -119,7 +119,7 @@ MATCHER_P(ArcGoogleLocationServiceConsentEq, expected_consent, "") {
expected_consent.SerializeAsString())
return true;
- LOG(ERROR) << "ERROR: actual proto does not match the expected proto";
+ *result_listener << "ERROR: actual proto does not match the expected proto";
return false;
}
@@ -127,7 +127,7 @@ MATCHER_P(ArcBackupAndRestoreConsentEq, expected_consent, "") {
if (arg.SerializeAsString() == expected_consent.SerializeAsString())
return true;
- LOG(ERROR) << "ERROR: actual proto does not match the expected proto";
+ *result_listener << "ERROR: actual proto does not match the expected proto";
return false;
}