Chromium Code Reviews| 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 |