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

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 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 9c0f445f71a90a8875829ad0609bc5c21881200b..62c3503ab6e9f3f231e9f332d2ed6bd0853f3ad9 100644
--- a/content/common/navigation_params.cc
+++ b/content/common/navigation_params.cc
@@ -123,6 +123,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(
@@ -156,6 +157,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