| Index: content/child/service_worker/service_worker_dispatcher.cc
|
| diff --git a/content/child/service_worker/service_worker_dispatcher.cc b/content/child/service_worker/service_worker_dispatcher.cc
|
| index 22bc166175571059286ff5c62c6c8c21e4b3d2b4..991efe36fe19d937ee53bda101b7b8a0a751922d 100644
|
| --- a/content/child/service_worker/service_worker_dispatcher.cc
|
| +++ b/content/child/service_worker/service_worker_dispatcher.cc
|
| @@ -114,7 +114,7 @@ ServiceWorkerDispatcher* ServiceWorkerDispatcher::ThreadSpecificInstance(
|
|
|
| void ServiceWorkerDispatcher::OnRegistered(int32 thread_id,
|
| int32 request_id,
|
| - int64 version_id) {
|
| + int handle_id) {
|
| WebServiceWorkerProvider::WebServiceWorkerCallbacks* callbacks =
|
| pending_callbacks_.Lookup(request_id);
|
| DCHECK(callbacks);
|
| @@ -128,7 +128,7 @@ void ServiceWorkerDispatcher::OnRegistered(int32 thread_id,
|
| // duplicate registration. So for now we mint a new object each
|
| // time.
|
| scoped_ptr<WebServiceWorkerImpl> worker(
|
| - new WebServiceWorkerImpl(version_id, thread_safe_sender_));
|
| + new WebServiceWorkerImpl(handle_id, thread_safe_sender_));
|
| callbacks->onSuccess(worker.release());
|
| pending_callbacks_.Remove(request_id);
|
| }
|
|
|