| Index: content/browser/frame_host/navigation_handle_impl.h | 
| diff --git a/content/browser/frame_host/navigation_handle_impl.h b/content/browser/frame_host/navigation_handle_impl.h | 
| index 681e2b4909b3cb943e93e7cc09fd2ec553ed44c3..048554c4e9c7c38fb2f59e88d854b2d762a7937e 100644 | 
| --- a/content/browser/frame_host/navigation_handle_impl.h | 
| +++ b/content/browser/frame_host/navigation_handle_impl.h | 
| @@ -8,6 +8,7 @@ | 
| #include "content/public/browser/navigation_handle.h" | 
|  | 
| #include <stddef.h> | 
| +#include <string> | 
|  | 
| #include "base/callback.h" | 
| #include "base/macros.h" | 
| @@ -117,7 +118,9 @@ class CONTENT_EXPORT NavigationHandleImpl : public NavigationHandle { | 
| const GURL& new_referrer_url, | 
| bool new_is_external_protocol) override; | 
| NavigationThrottle::ThrottleCheckResult CallWillProcessResponseForTesting( | 
| -      RenderFrameHost* render_frame_host) override; | 
| +      RenderFrameHost* render_frame_host, | 
| +      const std::string& raw_response_header) override; | 
| +  void CallDidCommitNavigationForTesting(const GURL& url) override; | 
|  | 
| NavigationData* GetNavigationData() override; | 
|  | 
|  |