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..458b163e3156e8e47d9fb74b645c52465036814d 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. |
|
sky
2014/07/31 17:34:06
If this is only for a finch experiment, shouldn't
|
| + // The database check is still exercised, but the interstitial never shown. |
| + threat_type = SB_THREAT_TYPE_SAFE; |
| +#endif |
| + |
| timer_.Stop(); // Cancel the timeout timer. |
| threat_type_ = threat_type; |
| state_ = STATE_NONE; |