Commit c5f0890e authored by noelutz@google.com's avatar noelutz@google.com

Also enable client-side phishing detection for multi-user installs

on Windows.

BUG=83803
TEST=None

Review URL: http://codereview.chromium.org/6992045

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86524 0039d316-1c4b-4281-b951-d872f2087c98
parent 2c37b220
...@@ -1017,7 +1017,11 @@ bool BrowserProcessImpl::IsSafeBrowsingDetectionServiceEnabled() { ...@@ -1017,7 +1017,11 @@ bool BrowserProcessImpl::IsSafeBrowsingDetectionServiceEnabled() {
switches::kDisableClientSidePhishingDetection) && switches::kDisableClientSidePhishingDetection) &&
resource_dispatcher_host()->safe_browsing_service() && resource_dispatcher_host()->safe_browsing_service() &&
resource_dispatcher_host()->safe_browsing_service()->CanReportStats() && resource_dispatcher_host()->safe_browsing_service()->CanReportStats() &&
(channel == "beta" || channel == "dev" || channel == "canary"); // TODO(noelutz): use platform_util::GetChannel() once it has been
// pushed to the release branch.
(channel == "beta" || channel == "dev" || channel == "canary" ||
channel == "beta-m" || channel == "dev-m" || channel == "canary-m");
#endif #endif
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment