Index: content/browser/frame_host/navigator_impl.cc |
diff --git a/content/browser/frame_host/navigator_impl.cc b/content/browser/frame_host/navigator_impl.cc |
index 384bceeafbe37a8ccaab4546a517d86c8df019d1..750a276209e8a8076f2b16d682ea3bbcca42c7a6 100644 |
--- a/content/browser/frame_host/navigator_impl.cc |
+++ b/content/browser/frame_host/navigator_impl.cc |
@@ -8,7 +8,6 @@ |
#include "base/time/time.h" |
#include "content/browser/frame_host/frame_tree.h" |
#include "content/browser/frame_host/frame_tree_node.h" |
-#include "content/browser/frame_host/navigation_before_commit_info.h" |
#include "content/browser/frame_host/navigation_controller_impl.h" |
#include "content/browser/frame_host/navigation_entry_impl.h" |
#include "content/browser/frame_host/navigator_delegate.h" |
@@ -27,6 +26,7 @@ |
#include "content/public/browser/navigation_details.h" |
#include "content/public/browser/page_navigator.h" |
#include "content/public/browser/render_view_host.h" |
+#include "content/public/browser/stream_handle.h" |
#include "content/public/common/bindings_policy.h" |
#include "content/public/common/content_client.h" |
#include "content/public/common/content_switches.h" |
@@ -663,13 +663,14 @@ void NavigatorImpl::RequestTransferURL( |
delegate_->RequestOpenURL(render_frame_host, params); |
} |
-void NavigatorImpl::CommitNavigation( |
- RenderFrameHostImpl* render_frame_host, |
- const NavigationBeforeCommitInfo& info) { |
- CheckWebUIRendererDoesNotDisplayNormalURL( |
- render_frame_host, info.navigation_url); |
+void NavigatorImpl::CommitNavigation(RenderFrameHostImpl* render_frame_host, |
+ const GURL& url, |
+ ResourceResponse* response, |
+ scoped_ptr<StreamHandle> body) { |
+ CheckWebUIRendererDoesNotDisplayNormalURL(render_frame_host, url); |
// TODO(clamy): the render_frame_host should now send a commit IPC to the |
// renderer. |
+ NOTIMPLEMENTED(); |
} |
void NavigatorImpl::CheckWebUIRendererDoesNotDisplayNormalURL( |