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

Unified Diff: chrome/browser/browser_process_impl.cc

Issue 6023006: Add support to sha256 hash the downloaded file.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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
« no previous file with comments | « no previous file | chrome/browser/download/base_file.h » ('j') | chrome/browser/download/download_file.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser_process_impl.cc
===================================================================
--- chrome/browser/browser_process_impl.cc (revision 70630)
+++ chrome/browser/browser_process_impl.cc (working copy)
@@ -806,15 +806,11 @@
bool BrowserProcessImpl::IsSafeBrowsingDetectionServiceEnabled() {
// The safe browsing client-side detection is enabled only if the switch is
- // enabled, the user has opted in to UMA usage stats and SafeBrowsing
- // is enabled.
- Profile* profile = profile_manager() ?
- profile_manager()->GetDefaultProfile() : NULL;
- return (CommandLine::ForCurrentProcess()->HasSwitch(
- switches::kEnableClientSidePhishingDetection) &&
- metrics_service() && metrics_service()->reporting_active() &&
- profile && profile->GetPrefs() &&
- profile->GetPrefs()->GetBoolean(prefs::kSafeBrowsingEnabled));
+ // enabled and when safe browsing related stats is allowed to be collected.
+ return CommandLine::ForCurrentProcess()->HasSwitch(
+ switches::kEnableClientSidePhishingDetection) &&
+ resource_dispatcher_host()->safe_browsing_service() &&
+ resource_dispatcher_host()->safe_browsing_service()->CanReportStats();
}
// The BrowserProcess object must outlive the file thread so we use traits
« no previous file with comments | « no previous file | chrome/browser/download/base_file.h » ('j') | chrome/browser/download/download_file.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698