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

Unified Diff: components/safe_browsing/base_blocking_page.cc

Issue 2890703002: SafeBrowsing: allow WebView to customize the Help Center URL (Closed)
Patch Set: Rebase and fix compile errors, no logic change Created 3 years, 7 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
Index: components/safe_browsing/base_blocking_page.cc
diff --git a/components/safe_browsing/base_blocking_page.cc b/components/safe_browsing/base_blocking_page.cc
index 6c1272f5f366e8591a016fcd2ca0f71ea0dbb23f..eaddeb8d36124a4208e87384fa42995d82cc8a10 100644
--- a/components/safe_browsing/base_blocking_page.cc
+++ b/components/safe_browsing/base_blocking_page.cc
@@ -75,12 +75,13 @@ BaseBlockingPage::CreateDefaultDisplayOptions(
const UnsafeResourceList& unsafe_resources) {
return BaseSafeBrowsingErrorUI::SBErrorDisplayOptions(
IsMainPageLoadBlocked(unsafe_resources),
- false, // kSafeBrowsingExtendedReportingOptInAllowed
- false, // is_off_the_record
- false, // is_extended_reporting
- false, // is_scout
- false, // kSafeBrowsingProceedAnywayDisabled
- true); // is_resource_cancellable
+ false, // kSafeBrowsingExtendedReportingOptInAllowed
+ false, // is_off_the_record
+ false, // is_extended_reporting
+ false, // is_scout
+ false, // kSafeBrowsingProceedAnywayDisabled
+ true, // is_resource_cancellable
+ "cpn_safe_browsing"); // help_center_article_link
}
// static

Powered by Google App Engine
This is Rietveld 408576698