Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1117)

Unified Diff: content/child/service_worker/service_worker_registration_handle_reference.cc

Issue 463013002: ServiceWorker: Implement updatefound event and version attributes (Chromium) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address for comments Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698