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

Unified Diff: content/browser/loader/resource_dispatcher_host_unittest.cc

Issue 2768813002: PlzNavigate: don't stop all loaders when renderer-initiated nav fails
Patch Set: Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/loader/resource_dispatcher_host_unittest.cc
diff --git a/content/browser/loader/resource_dispatcher_host_unittest.cc b/content/browser/loader/resource_dispatcher_host_unittest.cc
index e976d36b8a79631356ccfa8080087c6778722852..30b8a6f9daab13f57de5c6ce48ba4be7a667f613 100644
--- a/content/browser/loader/resource_dispatcher_host_unittest.cc
+++ b/content/browser/loader/resource_dispatcher_host_unittest.cc
@@ -1084,7 +1084,7 @@ class ResourceDispatcherHostTest : public testing::TestWithParam<TestConfig>,
REQUEST_CONTEXT_TYPE_LOCATION,
blink::WebMixedContentContextType::Blockable,
false, // is_form_submission
- url::Origin(url));
+ url::Origin(url), kInvalidRenderNavigationId);
CommonNavigationParams common_params;
common_params.url = url;
std::unique_ptr<NavigationRequestInfo> request_info(
@@ -2647,7 +2647,7 @@ TEST_P(ResourceDispatcherHostTest, CancelRequestsForContext) {
REQUEST_CONTEXT_TYPE_LOCATION,
blink::WebMixedContentContextType::Blockable,
false, // is_form_submission
- url::Origin(download_url));
+ url::Origin(download_url), kInvalidRenderNavigationId);
CommonNavigationParams common_params;
common_params.url = download_url;
std::unique_ptr<NavigationRequestInfo> request_info(

Powered by Google App Engine
This is Rietveld 408576698