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

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

Issue 2843043002: network service: Create URLLoader for service worker navigation case
Patch Set: . Created 3 years, 8 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/navigation_factory_creation_data.cc
diff --git a/content/browser/loader/navigation_factory_creation_data.cc b/content/browser/loader/navigation_factory_creation_data.cc
new file mode 100644
index 0000000000000000000000000000000000000000..e2b1484397567d99a997d038ba6534e0ce7217fb
--- /dev/null
+++ b/content/browser/loader/navigation_factory_creation_data.cc
@@ -0,0 +1,19 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "content/browser/loader/navigation_factory_creation_data.h"
+
+namespace content {
+
+NavigationFactoryCreationData::NavigationFactoryCreationData()
+ : request(),
kinuko 2017/05/01 02:06:24 nit: I don't think we need these empty ctors here
+ navigation_handle(nullptr),
+ resource_context(nullptr),
+ web_contents_getter(),
+ resource_type(),
+ is_parent_frame_secure(false) {}
+
+NavigationFactoryCreationData::~NavigationFactoryCreationData() {}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698