Chromium Code Reviews| Index: chrome/browser/renderer_host/safe_browsing_resource_throttle.cc |
| diff --git a/chrome/browser/renderer_host/safe_browsing_resource_throttle.cc b/chrome/browser/renderer_host/safe_browsing_resource_throttle.cc |
| index e9dc7b13599e0422abbc8c06c315958c3be1ed45..bee53315aeda8465ff2eb28f887859ebc6d93e50 100644 |
| --- a/chrome/browser/renderer_host/safe_browsing_resource_throttle.cc |
| +++ b/chrome/browser/renderer_host/safe_browsing_resource_throttle.cc |
| @@ -86,6 +86,12 @@ void SafeBrowsingResourceThrottle::OnCheckBrowseUrlResult( |
| CHECK(url == url_being_checked_) << "Was expecting: " << url_being_checked_ |
| << " but got: " << url; |
| +#if defined(OS_ANDROID) |
| + // Temporarily disable SB interstitial during Finch experiment. |
| + // The database check is still exercised, but not interstitial never shown. |
|
sgurun-gerrit only
2014/07/31 17:26:35
nit: s/not/the/
|
| + threat_type = SB_THREAT_TYPE_SAFE; |
| +#endif |
| + |
| timer_.Stop(); // Cancel the timeout timer. |
| threat_type_ = threat_type; |
| state_ = STATE_NONE; |