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

Side by Side Diff: content/child/service_worker/service_worker_registration_handle_reference.h

Issue 623823002: Chrome side of passing on the service worker registration with geofencing API calls. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 2 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_CHILD_SERVICE_WORKER_SERVICE_WORKER_REGISTRATION_HANDLE_REFERENC E_H_ 5 #ifndef CONTENT_CHILD_SERVICE_WORKER_SERVICE_WORKER_REGISTRATION_HANDLE_REFERENC E_H_
6 #define CONTENT_CHILD_SERVICE_WORKER_SERVICE_WORKER_REGISTRATION_HANDLE_REFERENC E_H_ 6 #define CONTENT_CHILD_SERVICE_WORKER_SERVICE_WORKER_REGISTRATION_HANDLE_REFERENC E_H_
7 7
8 #include "base/memory/ref_counted.h" 8 #include "base/memory/ref_counted.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "content/common/service_worker/service_worker_types.h" 10 #include "content/common/service_worker/service_worker_types.h"
(...skipping 15 matching lines...) Expand all
26 // ref-count. 26 // ref-count.
27 static scoped_ptr<ServiceWorkerRegistrationHandleReference> Adopt( 27 static scoped_ptr<ServiceWorkerRegistrationHandleReference> Adopt(
28 const ServiceWorkerRegistrationObjectInfo& info, 28 const ServiceWorkerRegistrationObjectInfo& info,
29 ThreadSafeSender* sender); 29 ThreadSafeSender* sender);
30 30
31 ~ServiceWorkerRegistrationHandleReference(); 31 ~ServiceWorkerRegistrationHandleReference();
32 32
33 const ServiceWorkerRegistrationObjectInfo& info() const { return info_; } 33 const ServiceWorkerRegistrationObjectInfo& info() const { return info_; }
34 int handle_id() const { return info_.handle_id; } 34 int handle_id() const { return info_.handle_id; }
35 GURL scope() const { return info_.scope; } 35 GURL scope() const { return info_.scope; }
36 int64 registration_id() const { return info_.registration_id; }
36 37
37 private: 38 private:
38 ServiceWorkerRegistrationHandleReference( 39 ServiceWorkerRegistrationHandleReference(
39 const ServiceWorkerRegistrationObjectInfo& info, 40 const ServiceWorkerRegistrationObjectInfo& info,
40 ThreadSafeSender* sender, 41 ThreadSafeSender* sender,
41 bool increment_ref_in_ctor); 42 bool increment_ref_in_ctor);
42 43
43 ServiceWorkerRegistrationObjectInfo info_; 44 ServiceWorkerRegistrationObjectInfo info_;
44 scoped_refptr<ThreadSafeSender> sender_; 45 scoped_refptr<ThreadSafeSender> sender_;
45 46
46 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerRegistrationHandleReference); 47 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerRegistrationHandleReference);
47 }; 48 };
48 49
49 } // namespace content 50 } // namespace content
50 51
51 #endif // CONTENT_CHILD_SERVICE_WORKER_SERVICE_WORKER_REGISTRATION_HANDLE_REFER ENCE_H_ 52 #endif // CONTENT_CHILD_SERVICE_WORKER_SERVICE_WORKER_REGISTRATION_HANDLE_REFER ENCE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698