Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(378)

Side by Side Diff: content/browser/service_worker/service_worker_unregister_job.h

Issue 477593007: ServiceWorker: Make '.ready' return a promise to be resolved with ServiceWorkerRegistration (2/3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_UNREGISTER_JOB_H_ 5 #ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_UNREGISTER_JOB_H_
6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_UNREGISTER_JOB_H_ 6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_UNREGISTER_JOB_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/memory/weak_ptr.h" 10 #include "base/memory/weak_ptr.h"
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 virtual bool Equals(ServiceWorkerRegisterJobBase* job) OVERRIDE; 44 virtual bool Equals(ServiceWorkerRegisterJobBase* job) OVERRIDE;
45 virtual RegistrationJobType GetType() OVERRIDE; 45 virtual RegistrationJobType GetType() OVERRIDE;
46 46
47 private: 47 private:
48 void OnRegistrationFound( 48 void OnRegistrationFound(
49 ServiceWorkerStatusCode status, 49 ServiceWorkerStatusCode status,
50 const scoped_refptr<ServiceWorkerRegistration>& registration); 50 const scoped_refptr<ServiceWorkerRegistration>& registration);
51 void Complete(ServiceWorkerStatusCode status); 51 void Complete(ServiceWorkerStatusCode status);
52 void CompleteInternal(ServiceWorkerStatusCode status); 52 void CompleteInternal(ServiceWorkerStatusCode status);
53 void ResolvePromise(ServiceWorkerStatusCode status); 53 void ResolvePromise(ServiceWorkerStatusCode status);
54 void UnassociateProviderHostsFromRegistration(
55 ServiceWorkerRegistration* registration);
54 56
55 base::WeakPtr<ServiceWorkerContextCore> context_; 57 base::WeakPtr<ServiceWorkerContextCore> context_;
56 const GURL pattern_; 58 const GURL pattern_;
57 std::vector<UnregistrationCallback> callbacks_; 59 std::vector<UnregistrationCallback> callbacks_;
58 bool is_promise_resolved_; 60 bool is_promise_resolved_;
59 base::WeakPtrFactory<ServiceWorkerUnregisterJob> weak_factory_; 61 base::WeakPtrFactory<ServiceWorkerUnregisterJob> weak_factory_;
60 62
61 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerUnregisterJob); 63 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerUnregisterJob);
62 }; 64 };
63 } // namespace content 65 } // namespace content
64 66
65 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_UNREGISTER_JOB_H_ 67 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_UNREGISTER_JOB_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698