| Index: content/browser/service_worker/service_worker_context_core.h | 
| diff --git a/content/browser/service_worker/service_worker_context_core.h b/content/browser/service_worker/service_worker_context_core.h | 
| index 4ab4351be7d9088b592469aafc23bbf61a97e16b..c59ef7cbb1d3fe5ba5bae3a51e98f98d2c967039 100644 | 
| --- a/content/browser/service_worker/service_worker_context_core.h | 
| +++ b/content/browser/service_worker/service_worker_context_core.h | 
| @@ -44,10 +44,10 @@ class CONTENT_EXPORT ServiceWorkerContextCore | 
| : NON_EXPORTED_BASE( | 
| public base::SupportsWeakPtr<ServiceWorkerContextCore>) { | 
| public: | 
| -  typedef base::Callback<void(ServiceWorkerRegistrationStatus status, | 
| +  typedef base::Callback<void(ServiceWorkerStatusCode status, | 
| int64 registration_id)> RegistrationCallback; | 
| typedef base::Callback< | 
| -      void(ServiceWorkerRegistrationStatus status)> UnregistrationCallback; | 
| +      void(ServiceWorkerStatusCode status)> UnregistrationCallback; | 
|  | 
| // This is owned by the StoragePartition, which will supply it with | 
| // the local path on disk. Given an empty |user_data_directory|, | 
| @@ -92,7 +92,7 @@ class CONTENT_EXPORT ServiceWorkerContextCore | 
|  | 
| void RegistrationComplete( | 
| const RegistrationCallback& callback, | 
| -      ServiceWorkerRegistrationStatus status, | 
| +      ServiceWorkerStatusCode status, | 
| const scoped_refptr<ServiceWorkerRegistration>& registration); | 
|  | 
| // Used only for testing. | 
|  |