| 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 0d20c41f744dec0dd0beeeaadffe2742e8a75859..57a0ebcbf5f5363624c251a15b823b24fdc947b6 100644
|
| --- a/content/browser/frame_host/navigator_impl.cc
|
| +++ b/content/browser/frame_host/navigator_impl.cc
|
| @@ -270,7 +270,7 @@ bool NavigatorImpl::NavigateToEntry(
|
| NavigationController::ReloadType reload_type,
|
| bool is_same_document_history_load,
|
| bool is_pending_entry,
|
| - const scoped_refptr<ResourceRequestBody>& post_body) {
|
| + const scoped_refptr<ResourceRequestBodyImpl>& post_body) {
|
| TRACE_EVENT0("browser,navigation", "NavigatorImpl::NavigateToEntry");
|
|
|
| GURL dest_url = frame_entry.url();
|
| @@ -728,7 +728,7 @@ void NavigatorImpl::RequestTransferURL(
|
| const GlobalRequestID& transferred_global_request_id,
|
| bool should_replace_current_entry,
|
| const std::string& method,
|
| - const scoped_refptr<ResourceRequestBody>& post_body) {
|
| + const scoped_refptr<ResourceRequestBodyImpl>& post_body) {
|
| // |method != "POST"| should imply absence of |post_body|.
|
| DCHECK(method == "POST" || !post_body);
|
|
|
|
|