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

Unified Diff: content/common/navigation_params.cc

Issue 2501343003: PlzNavigate: AppCache support. (Closed)
Patch Set: Address review comments Created 4 years 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
« no previous file with comments | « content/common/navigation_params.h ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/navigation_params.cc
diff --git a/content/common/navigation_params.cc b/content/common/navigation_params.cc
index f1a7fb5f191d786e11e362f89795bac3f3810520..24078e67518416294d6d81eb225380f56e5427bc 100644
--- a/content/common/navigation_params.cc
+++ b/content/common/navigation_params.cc
@@ -7,6 +7,7 @@
#include "base/logging.h"
#include "build/build_config.h"
#include "content/common/service_worker/service_worker_types.h"
+#include "content/public/common/appcache_info.h"
#include "content/public/common/browser_side_navigation_policy.h"
#include "content/public/common/url_constants.h"
#include "url/gurl.h"
@@ -134,7 +135,8 @@ RequestNavigationParams::RequestNavigationParams()
is_view_source(false),
should_clear_history_list(false),
should_create_service_worker(false),
- service_worker_provider_id(kInvalidServiceWorkerProviderId) {}
+ service_worker_provider_id(kInvalidServiceWorkerProviderId),
+ appcache_host_id(kAppCacheNoHostId) {}
RequestNavigationParams::RequestNavigationParams(
bool is_overriding_user_agent,
@@ -168,7 +170,8 @@ RequestNavigationParams::RequestNavigationParams(
is_view_source(is_view_source),
should_clear_history_list(should_clear_history_list),
should_create_service_worker(false),
- service_worker_provider_id(kInvalidServiceWorkerProviderId) {}
+ service_worker_provider_id(kInvalidServiceWorkerProviderId),
+ appcache_host_id(kAppCacheNoHostId) {}
RequestNavigationParams::RequestNavigationParams(
const RequestNavigationParams& other) = default;
« no previous file with comments | « content/common/navigation_params.h ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698