Index: content/browser/frame_host/render_frame_host_impl.cc |
diff --git a/content/browser/frame_host/render_frame_host_impl.cc b/content/browser/frame_host/render_frame_host_impl.cc |
index 6ff9be7fd3bda06158801ecb9664834a5a308786..9968e952a326103d1ac705a4e6384c058f4a03e3 100644 |
--- a/content/browser/frame_host/render_frame_host_impl.cc |
+++ b/content/browser/frame_host/render_frame_host_impl.cc |
@@ -38,6 +38,7 @@ |
#include "content/common/frame_messages.h" |
#include "content/common/input_messages.h" |
#include "content/common/inter_process_time_ticks_converter.h" |
+#include "content/common/navigation_params.h" |
#include "content/common/platform_notification_messages.h" |
#include "content/common/render_frame_setup.mojom.h" |
#include "content/common/swapped_out_messages.h" |
@@ -1379,6 +1380,14 @@ void RenderFrameHostImpl::NotificationClosed(int notification_id) { |
} |
// PlzNavigate |
+void RenderFrameHostImpl::RequestNavigation( |
+ const CommonNavigationParams& common_params, |
+ const RequestNavigationParams& request_params) { |
+ Send(new FrameMsg_RequestNavigation( |
nasko
2014/10/08 17:40:32
Do we forsee this method growing in size? If not,
clamy
2014/10/10 02:33:11
Done.
|
+ routing_id_, common_params, request_params)); |
+} |
+ |
+// PlzNavigate |
void RenderFrameHostImpl::CommitNavigation( |
ResourceResponse* response, |
scoped_ptr<StreamHandle> body, |