| Index: content/browser/service_worker/service_worker_context_wrapper.h
|
| diff --git a/content/browser/service_worker/service_worker_context_wrapper.h b/content/browser/service_worker/service_worker_context_wrapper.h
|
| index ab4c900ba7610a18ca9499ee4816e1c9c797cabf..0285802834194f66fd3c299e56f1e4819e4305c9 100644
|
| --- a/content/browser/service_worker/service_worker_context_wrapper.h
|
| +++ b/content/browser/service_worker/service_worker_context_wrapper.h
|
| @@ -212,10 +212,10 @@
|
| void DidFindRegistrationForFindReady(
|
| const FindRegistrationCallback& callback,
|
| ServiceWorkerStatusCode status,
|
| - scoped_refptr<ServiceWorkerRegistration> registration);
|
| + const scoped_refptr<ServiceWorkerRegistration>& registration);
|
| void OnStatusChangedForFindReadyRegistration(
|
| const FindRegistrationCallback& callback,
|
| - scoped_refptr<ServiceWorkerRegistration> registration);
|
| + const scoped_refptr<ServiceWorkerRegistration>& registration);
|
|
|
| void DidDeleteAndStartOver(ServiceWorkerStatusCode status);
|
|
|
| @@ -229,7 +229,7 @@
|
|
|
| void DidFindRegistrationForUpdate(
|
| ServiceWorkerStatusCode status,
|
| - scoped_refptr<content::ServiceWorkerRegistration> registration);
|
| + const scoped_refptr<content::ServiceWorkerRegistration>& registration);
|
|
|
| // The core context is only for use on the IO thread.
|
| // Can be null before/during init, during/after shutdown, and after
|
|
|