Index: content/public/browser/navigation_handle.cc |
diff --git a/content/public/browser/navigation_handle.cc b/content/public/browser/navigation_handle.cc |
index f5eaa118425d17c5068ee3b31a368c68f7215015..3dbb59397400b6554f35851618cd7d976c6410dd 100644 |
--- a/content/public/browser/navigation_handle.cc |
+++ b/content/public/browser/navigation_handle.cc |
@@ -21,9 +21,11 @@ WebContents* NavigationHandle::GetWebContents() { |
scoped_ptr<NavigationHandle> NavigationHandle::CreateNavigationHandleForTesting( |
const GURL& url, |
bool is_main_frame, |
- WebContents* web_contents) { |
+ WebContents* web_contents, |
+ int service_worker_provider_id) { |
scoped_ptr<NavigationHandleImpl> handle_impl = NavigationHandleImpl::Create( |
- url, is_main_frame, static_cast<WebContentsImpl*>(web_contents)); |
+ url, is_main_frame, static_cast<WebContentsImpl*>(web_contents), |
+ service_worker_provider_id); |
return scoped_ptr<NavigationHandle>(handle_impl.Pass()); |
} |