Index: content/browser/service_worker/service_worker_register_job.h |
diff --git a/content/browser/service_worker/service_worker_register_job.h b/content/browser/service_worker/service_worker_register_job.h |
index 153203eab46d0617a6bc14a1cd71388567405758..7ec65a8bab223f24e2c3387717eb9b0865176f1c 100644 |
--- a/content/browser/service_worker/service_worker_register_job.h |
+++ b/content/browser/service_worker/service_worker_register_job.h |
@@ -96,8 +96,7 @@ class ServiceWorkerRegisterJob : public ServiceWorkerRegisterJobBase, |
scoped_refptr<ServiceWorkerVersion> new_version; |
}; |
- void set_registration( |
- const scoped_refptr<ServiceWorkerRegistration>& registration); |
+ void set_registration(scoped_refptr<ServiceWorkerRegistration> registration); |
ServiceWorkerRegistration* registration(); |
void set_new_version(ServiceWorkerVersion* version); |
ServiceWorkerVersion* new_version(); |
@@ -107,16 +106,16 @@ class ServiceWorkerRegisterJob : public ServiceWorkerRegisterJobBase, |
void StartImpl(); |
void ContinueWithRegistration( |
ServiceWorkerStatusCode status, |
- const scoped_refptr<ServiceWorkerRegistration>& registration); |
+ scoped_refptr<ServiceWorkerRegistration> registration); |
void ContinueWithUpdate( |
ServiceWorkerStatusCode status, |
- const scoped_refptr<ServiceWorkerRegistration>& registration); |
+ scoped_refptr<ServiceWorkerRegistration> registration); |
void RegisterAndContinue(); |
void ContinueWithUninstallingRegistration( |
- const scoped_refptr<ServiceWorkerRegistration>& existing_registration, |
+ scoped_refptr<ServiceWorkerRegistration> existing_registration, |
ServiceWorkerStatusCode status); |
void ContinueWithRegistrationForSameScriptUrl( |
- const scoped_refptr<ServiceWorkerRegistration>& existing_registration, |
+ scoped_refptr<ServiceWorkerRegistration> existing_registration, |
ServiceWorkerStatusCode status); |
void UpdateAndContinue(); |
void OnStartWorkerFinished(ServiceWorkerStatusCode status); |