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

Unified Diff: content/common/navigation_params.cc

Issue 1399363004: PlzNavigate: Make ServiceWorker work with PlzNavigate. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed Kinuko's comments Created 5 years, 2 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/common/navigation_params.cc
diff --git a/content/common/navigation_params.cc b/content/common/navigation_params.cc
index dfaefb1ea89b84034253553d83a4c3b9eda4ab8a..63e6a118b7b7dfeedb86cec24bdc40c7a5344e89 100644
--- a/content/common/navigation_params.cc
+++ b/content/common/navigation_params.cc
@@ -126,6 +126,7 @@ RequestNavigationParams::RequestNavigationParams()
current_history_list_offset(-1),
current_history_list_length(0),
should_clear_history_list(false),
+ should_create_service_worker(false),
service_worker_provider_id(kInvalidServiceWorkerProviderId) {}
RequestNavigationParams::RequestNavigationParams(
@@ -159,6 +160,7 @@ RequestNavigationParams::RequestNavigationParams(
current_history_list_offset(current_history_list_offset),
current_history_list_length(current_history_list_length),
should_clear_history_list(should_clear_history_list),
+ should_create_service_worker(false),
service_worker_provider_id(kInvalidServiceWorkerProviderId) {}
RequestNavigationParams::~RequestNavigationParams() {

Powered by Google App Engine
This is Rietveld 408576698