| 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 0285802834194f66fd3c299e56f1e4819e4305c9..0b8f30ff499f9d3edae8ffa7aaded74d88a8d9ff 100644
|
| --- a/content/browser/service_worker/service_worker_context_wrapper.h
|
| +++ b/content/browser/service_worker/service_worker_context_wrapper.h
|
| @@ -212,7 +212,7 @@ class CONTENT_EXPORT ServiceWorkerContextWrapper
|
| void DidFindRegistrationForFindReady(
|
| const FindRegistrationCallback& callback,
|
| ServiceWorkerStatusCode status,
|
| - const scoped_refptr<ServiceWorkerRegistration>& registration);
|
| + scoped_refptr<ServiceWorkerRegistration> registration);
|
| void OnStatusChangedForFindReadyRegistration(
|
| const FindRegistrationCallback& callback,
|
| const scoped_refptr<ServiceWorkerRegistration>& registration);
|
| @@ -229,7 +229,7 @@ class CONTENT_EXPORT ServiceWorkerContextWrapper
|
|
|
| void DidFindRegistrationForUpdate(
|
| ServiceWorkerStatusCode status,
|
| - const scoped_refptr<content::ServiceWorkerRegistration>& registration);
|
| + 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
|
|
|