| Index: content/child/service_worker/service_worker_network_provider.h
|
| diff --git a/content/child/service_worker/service_worker_network_provider.h b/content/child/service_worker/service_worker_network_provider.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..0ef0371a12799f3ba7def0a7ec7ff4abb34e6eca
|
| --- /dev/null
|
| +++ b/content/child/service_worker/service_worker_network_provider.h
|
| @@ -0,0 +1,49 @@
|
| +// Copyright 2013 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.
|
| +
|
| +#ifndef CONTENT_CHILD_SERVICE_WORKER_SERVICE_WORKER_NETWORK_PROVIDER_IMPL_H_
|
| +#define CONTENT_CHILD_SERVICE_WORKER_SERVICE_WORKER_NETWORK_PROVIDER_IMPL_H_
|
| +
|
| +#include "base/compiler_specific.h"
|
| +#include "base/memory/scoped_ptr.h"
|
| +#include "base/supports_user_data.h"
|
| +
|
| +namespace content {
|
| +
|
| +class ThreadSafeSender;
|
| +
|
| +// A unique provider_id is generated for each instance.
|
| +// Instanced prior to the main resource load being started and remains
|
| +// allocated until after the last subresoure load has occured.
|
| +// This is used to track the lifetime of a Document to create
|
| +// and dispose the ServiceWorkerProviderHost in the browser process
|
| +// to match its lifetime. Each request coming from the Document is
|
| +// tagged with this id in willSendRequest.
|
| +// tl;dr
|
| +// Its a scoped integer that sends an ipc upon ctor'tion and dtor'tion.
|
| +class ServiceWorkerNetworkProvider : public base::SupportsUserData::Data {
|
| + public:
|
| + // Ownership is trasferred to the DocumentState.
|
| + static void AttachToDocumentState(
|
| + base::SupportsUserData* document_state,
|
| + scoped_ptr<ServiceWorkerNetworkProvider> network_provider);
|
| +
|
| + static ServiceWorkerNetworkProvider* FromDocumentState(
|
| + base::SupportsUserData* document_state);
|
| +
|
| + ServiceWorkerNetworkProvider(ThreadSafeSender* thread_safe_sender);
|
| + virtual ~ServiceWorkerNetworkProvider();
|
| +
|
| + int provider_id() const { return provider_id_; }
|
| +
|
| + private:
|
| + const int provider_id_;
|
| + scoped_refptr<ThreadSafeSender> thread_safe_sender_;
|
| +
|
| + DISALLOW_COPY_AND_ASSIGN(ServiceWorkerNetworkProvider);
|
| +};
|
| +
|
| +} // namespace content
|
| +
|
| +#endif // CONTENT_CHILD_SERVICE_WORKER_WEB_SERVICE_WORKER_PROVIDER_IMPL_H_
|
|
|