| Index: chrome/renderer/chrome_content_renderer_client.h | 
| diff --git a/chrome/renderer/chrome_content_renderer_client.h b/chrome/renderer/chrome_content_renderer_client.h | 
| index dd11c11af11c2a34f816048d36b27b6fc1cfbcc3..233fb72479608862104d505a8345a44afbeddf70 100644 | 
| --- a/chrome/renderer/chrome_content_renderer_client.h | 
| +++ b/chrome/renderer/chrome_content_renderer_client.h | 
| @@ -16,6 +16,7 @@ | 
| #include "base/compiler_specific.h" | 
| #include "base/gtest_prod_util.h" | 
| #include "base/strings/string16.h" | 
| +#include "chrome/common/safe_browsing.mojom.h" | 
| #include "chrome/renderer/media/chrome_key_systems_provider.h" | 
| #include "components/rappor/public/interfaces/rappor_recorder.mojom.h" | 
| #include "components/spellcheck/spellcheck_build_features.h" | 
| @@ -139,7 +140,9 @@ class ChromeContentRendererClient : public content::ContentRendererClient { | 
| bool WillSendRequest(blink::WebLocalFrame* frame, | 
| ui::PageTransition transition_type, | 
| const blink::WebURL& url, | 
| -                       GURL* new_url) override; | 
| +                       GURL* new_url, | 
| +                       std::vector<std::unique_ptr<content::URLLoaderThrottle>>* | 
| +                           throttles) override; | 
| bool IsPrefetchOnly(content::RenderFrame* render_frame, | 
| const blink::WebURLRequest& request) override; | 
| unsigned long long VisitedLinkHash(const char* canonical_url, | 
| @@ -242,6 +245,8 @@ class ChromeContentRendererClient : public content::ContentRendererClient { | 
|  | 
| chrome::ChromeKeySystemsProvider key_systems_provider_; | 
|  | 
| +  chrome::mojom::SafeBrowsingPtr safe_browsing_; | 
| + | 
| #if BUILDFLAG(ENABLE_SPELLCHECK) | 
| std::unique_ptr<SpellCheck> spellcheck_; | 
| #endif | 
|  |