| Index: content/browser/service_worker/service_worker_controllee_url_loader_factory.cc
|
| diff --git a/content/browser/service_worker/service_worker_controllee_url_loader_factory.cc b/content/browser/service_worker/service_worker_controllee_url_loader_factory.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..8445cdb2c07276b23646a721a7e343eab2be3683
|
| --- /dev/null
|
| +++ b/content/browser/service_worker/service_worker_controllee_url_loader_factory.cc
|
| @@ -0,0 +1,27 @@
|
| +// 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/service_worker/service_worker_controllee_url_loader_factory.h"
|
| +
|
| +namespace content {
|
| +
|
| +void ServiceWorkerControlleeURLLoaderFactory::CreateLoaderAndStart(
|
| + mojom::URLLoaderAssociatedRequest request,
|
| + int32_t routing_id,
|
| + int32_t request_id,
|
| + uint32_t options,
|
| + const ResourceRequest& url_request,
|
| + mojom::URLLoaderClientPtr client) {
|
| + // TODO(scottmg): The real implementation will hook up to SWVersion.
|
| +}
|
| +
|
| +void ServiceWorkerControlleeURLLoaderFactory::SyncLoad(
|
| + int32_t routing_id,
|
| + int32_t request_id,
|
| + const ResourceRequest& request,
|
| + SyncLoadCallback callback) {
|
| + NOTREACHED();
|
| +}
|
| +
|
| +} // namespace content
|
|
|