| Index: content/child/service_worker/service_worker_registration_handle_reference.cc
|
| diff --git a/content/child/service_worker/service_worker_registration_handle_reference.cc b/content/child/service_worker/service_worker_registration_handle_reference.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3b72a35c998385915c9d8941604a6126b97be8d7
|
| --- /dev/null
|
| +++ b/content/child/service_worker/service_worker_registration_handle_reference.cc
|
| @@ -0,0 +1,54 @@
|
| +// Copyright 2014 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/child/service_worker/service_worker_registration_handle_reference.h"
|
| +
|
| +#include "content/child/thread_safe_sender.h"
|
| +#include "content/common/service_worker/service_worker_messages.h"
|
| +#include "content/common/service_worker/service_worker_types.h"
|
| +
|
| +namespace content {
|
| +
|
| +scoped_ptr<ServiceWorkerRegistrationHandleReference>
|
| +ServiceWorkerRegistrationHandleReference::Create(
|
| + int registration_handle_id,
|
| + const ServiceWorkerObjectInfo& info,
|
| + ThreadSafeSender* sender) {
|
| + return make_scoped_ptr(new ServiceWorkerRegistrationHandleReference(
|
| + registration_handle_id, info, sender, true));
|
| +}
|
| +
|
| +scoped_ptr<ServiceWorkerRegistrationHandleReference>
|
| +ServiceWorkerRegistrationHandleReference::Adopt(
|
| + int registration_handle_id,
|
| + const ServiceWorkerObjectInfo& info,
|
| + ThreadSafeSender* sender) {
|
| + return make_scoped_ptr(new ServiceWorkerRegistrationHandleReference(
|
| + registration_handle_id, info, sender, false));
|
| +}
|
| +
|
| +ServiceWorkerRegistrationHandleReference::
|
| +ServiceWorkerRegistrationHandleReference(
|
| + int registration_handle_id,
|
| + const ServiceWorkerObjectInfo& info,
|
| + ThreadSafeSender* sender,
|
| + bool increment_ref_in_ctor)
|
| + : handle_id_(registration_handle_id),
|
| + scope_(info.scope),
|
| + sender_(sender) {
|
| + DCHECK_NE(kInvalidServiceWorkerRegistrationHandleId, handle_id_);
|
| + DCHECK(sender_);
|
| + if (increment_ref_in_ctor)
|
| + return;
|
| + sender_->Send(
|
| + new ServiceWorkerHostMsg_IncrementRegistrationRefCount(handle_id_));
|
| +}
|
| +
|
| +ServiceWorkerRegistrationHandleReference::
|
| +~ServiceWorkerRegistrationHandleReference() {
|
| + sender_->Send(
|
| + new ServiceWorkerHostMsg_DecrementRegistrationRefCount(handle_id_));
|
| +}
|
| +
|
| +} // namespace content
|
|
|