| Index: content/common/service_worker/service_worker_provider.cc
 | 
| diff --git a/content/common/service_worker/service_worker_provider.cc b/content/common/service_worker/service_worker_provider.cc
 | 
| new file mode 100644
 | 
| index 0000000000000000000000000000000000000000..98b2feaabcc88fcfe86179892226c2f2ac692537
 | 
| --- /dev/null
 | 
| +++ b/content/common/service_worker/service_worker_provider.cc
 | 
| @@ -0,0 +1,28 @@
 | 
| +// 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/common/service_worker/service_worker_provider.h"
 | 
| +
 | 
| +namespace content {
 | 
| +
 | 
| +ServiceWorkerProviderHostInfo::ServiceWorkerProviderHostInfo() {}
 | 
| +
 | 
| +ServiceWorkerProviderHostInfo::ServiceWorkerProviderHostInfo(
 | 
| +    ServiceWorkerProviderHostInfo&& other)
 | 
| +    : provider_id(other.provider_id),
 | 
| +      route_id(other.route_id),
 | 
| +      type(other.type),
 | 
| +      is_parent_frame_secure(other.is_parent_frame_secure) {}
 | 
| +
 | 
| +ServiceWorkerProviderHostInfo::ServiceWorkerProviderHostInfo(
 | 
| +    int provider_id, int route_id, ServiceWorkerProviderType type,
 | 
| +    bool is_parent_frame_secure)
 | 
| +    : provider_id(provider_id),
 | 
| +      route_id(route_id),
 | 
| +      type(type),
 | 
| +      is_parent_frame_secure(is_parent_frame_secure) {}
 | 
| +
 | 
| +ServiceWorkerProviderHostInfo::~ServiceWorkerProviderHostInfo() {}
 | 
| +
 | 
| +}  // namespace content
 | 
| 
 |