| Index: chrome/browser/loader/chrome_resource_dispatcher_host_delegate.cc
|
| diff --git a/chrome/browser/loader/chrome_resource_dispatcher_host_delegate.cc b/chrome/browser/loader/chrome_resource_dispatcher_host_delegate.cc
|
| index 0d8316eed6fea7513c43009212d015ce7de86141..0bceb645680084cec3ccec5582fa33a6807e1e0a 100644
|
| --- a/chrome/browser/loader/chrome_resource_dispatcher_host_delegate.cc
|
| +++ b/chrome/browser/loader/chrome_resource_dispatcher_host_delegate.cc
|
| @@ -55,6 +55,7 @@
|
| #include "components/previews/core/previews_io_data.h"
|
| #include "components/rappor/public/rappor_utils.h"
|
| #include "components/rappor/rappor_service_impl.h"
|
| +#include "components/safe_browsing/resource_throttle.h"
|
| #include "components/search_engines/template_url_service.h"
|
| #include "components/variations/net/variations_http_headers.h"
|
| #include "content/public/browser/browser_thread.h"
|
| @@ -659,7 +660,7 @@ void ChromeResourceDispatcherHostDelegate::AppendStandardResourceThrottles(
|
|
|
| #if defined(SAFE_BROWSING_DB_LOCAL) || defined(SAFE_BROWSING_DB_REMOTE)
|
| if (!first_throttle && io_data->safe_browsing_enabled()->GetValue()) {
|
| - first_throttle = SafeBrowsingResourceThrottle::MaybeCreate(
|
| + first_throttle = MaybeCreateSafeBrowsingResourceThrottle(
|
| request, resource_type, safe_browsing_.get());
|
| }
|
| #endif // defined(SAFE_BROWSING_DB_LOCAL) || defined(SAFE_BROWSING_DB_REMOTE)
|
|
|