| Index: content/browser/frame_host/render_frame_host_impl.h
|
| diff --git a/content/browser/frame_host/render_frame_host_impl.h b/content/browser/frame_host/render_frame_host_impl.h
|
| index a848238ef6e77643bdb75c0b590355b7de1276a0..16263fbd2f5c9fda013996207c2f2f2452905ebd 100644
|
| --- a/content/browser/frame_host/render_frame_host_impl.h
|
| +++ b/content/browser/frame_host/render_frame_host_impl.h
|
| @@ -54,6 +54,7 @@ class RenderFrameProxyHost;
|
| class RenderProcessHost;
|
| class RenderViewHostImpl;
|
| class RenderWidgetHostImpl;
|
| +class StreamHandle;
|
| class TimeoutMonitor;
|
| struct CommitNavigationParams;
|
| struct ContextMenuParams;
|
| @@ -61,6 +62,7 @@ struct CommonNavigationParams;
|
| struct GlobalRequestID;
|
| struct Referrer;
|
| struct RequestNavigationParams;
|
| +struct ResourceResponse;
|
| struct ShowDesktopNotificationHostMsgParams;
|
| struct TransitionLayerData;
|
|
|
| @@ -347,7 +349,8 @@ class CONTENT_EXPORT RenderFrameHostImpl
|
|
|
| // PlzNavigate: Indicates that a navigation is ready to commit and can be
|
| // handled by this RenderFrame.
|
| - void CommitNavigation(const GURL& stream_url,
|
| + void CommitNavigation(ResourceResponse* response,
|
| + scoped_ptr<StreamHandle> body,
|
| const CommonNavigationParams& common_params,
|
| const CommitNavigationParams& commit_params);
|
|
|
|
|