Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(473)

Side by Side Diff: content/common/navigation_params.cc

Issue 2008613002: ABANDONED CL: Making ResourceRequestBody part of //content's public API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@post-data-my-stuff
Patch Set: Rebasing... Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/common/navigation_params.h ('k') | content/common/page_state_serialization.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/common/navigation_params.h" 5 #include "content/common/navigation_params.h"
6 6
7 #include "build/build_config.h" 7 #include "build/build_config.h"
8 #include "content/common/service_worker/service_worker_types.h" 8 #include "content/common/service_worker/service_worker_types.h"
9 #include "content/public/common/browser_side_navigation_policy.h" 9 #include "content/public/common/browser_side_navigation_policy.h"
10 #include "content/public/common/url_constants.h" 10 #include "content/public/common/url_constants.h"
(...skipping 30 matching lines...) Expand all
41 FrameMsg_Navigate_Type::Value navigation_type, 41 FrameMsg_Navigate_Type::Value navigation_type,
42 bool allow_download, 42 bool allow_download,
43 bool should_replace_current_entry, 43 bool should_replace_current_entry,
44 base::TimeTicks ui_timestamp, 44 base::TimeTicks ui_timestamp,
45 FrameMsg_UILoadMetricsReportType::Value report_type, 45 FrameMsg_UILoadMetricsReportType::Value report_type,
46 const GURL& base_url_for_data_url, 46 const GURL& base_url_for_data_url,
47 const GURL& history_url_for_data_url, 47 const GURL& history_url_for_data_url,
48 LoFiState lofi_state, 48 LoFiState lofi_state,
49 const base::TimeTicks& navigation_start, 49 const base::TimeTicks& navigation_start,
50 std::string method, 50 std::string method,
51 const scoped_refptr<ResourceRequestBody>& post_data) 51 const scoped_refptr<ResourceRequestBodyImpl>& post_data)
52 : url(url), 52 : url(url),
53 referrer(referrer), 53 referrer(referrer),
54 transition(transition), 54 transition(transition),
55 navigation_type(navigation_type), 55 navigation_type(navigation_type),
56 allow_download(allow_download), 56 allow_download(allow_download),
57 should_replace_current_entry(should_replace_current_entry), 57 should_replace_current_entry(should_replace_current_entry),
58 ui_timestamp(ui_timestamp), 58 ui_timestamp(ui_timestamp),
59 report_type(report_type), 59 report_type(report_type),
60 base_url_for_data_url(base_url_for_data_url), 60 base_url_for_data_url(base_url_for_data_url),
61 history_url_for_data_url(history_url_for_data_url), 61 history_url_for_data_url(history_url_for_data_url),
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 const RequestNavigationParams& request_params) 187 const RequestNavigationParams& request_params)
188 : common_params(common_params), 188 : common_params(common_params),
189 start_params(start_params), 189 start_params(start_params),
190 request_params(request_params) { 190 request_params(request_params) {
191 } 191 }
192 192
193 NavigationParams::~NavigationParams() { 193 NavigationParams::~NavigationParams() {
194 } 194 }
195 195
196 } // namespace content 196 } // namespace content
OLDNEW
« no previous file with comments | « content/common/navigation_params.h ('k') | content/common/page_state_serialization.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698