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

Side by Side Diff: content/child/service_worker/web_service_worker_provider_impl.h

Issue 1181973004: ServiceWorker: Route unregister() through WebServiceWorkerRegistration for refactoring (2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove ifdef Created 5 years, 6 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_CHILD_SERVICE_WORKER_WEB_SERVICE_WORKER_PROVIDER_IMPL_H_ 5 #ifndef CONTENT_CHILD_SERVICE_WORKER_WEB_SERVICE_WORKER_PROVIDER_IMPL_H_
6 #define CONTENT_CHILD_SERVICE_WORKER_WEB_SERVICE_WORKER_PROVIDER_IMPL_H_ 6 #define CONTENT_CHILD_SERVICE_WORKER_WEB_SERVICE_WORKER_PROVIDER_IMPL_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "third_party/WebKit/public/platform/WebServiceWorkerProvider.h" 10 #include "third_party/WebKit/public/platform/WebServiceWorkerProvider.h"
(...skipping 17 matching lines...) Expand all
28 WebServiceWorkerProviderImpl(ThreadSafeSender* thread_safe_sender, 28 WebServiceWorkerProviderImpl(ThreadSafeSender* thread_safe_sender,
29 ServiceWorkerProviderContext* context); 29 ServiceWorkerProviderContext* context);
30 virtual ~WebServiceWorkerProviderImpl(); 30 virtual ~WebServiceWorkerProviderImpl();
31 31
32 virtual void setClient(blink::WebServiceWorkerProviderClient* client); 32 virtual void setClient(blink::WebServiceWorkerProviderClient* client);
33 33
34 virtual void registerServiceWorker(const blink::WebURL& pattern, 34 virtual void registerServiceWorker(const blink::WebURL& pattern,
35 const blink::WebURL& script_url, 35 const blink::WebURL& script_url,
36 WebServiceWorkerRegistrationCallbacks*); 36 WebServiceWorkerRegistrationCallbacks*);
37 37
38 // TODO(nhiroki): Remove this after http://crbug.com/500404 is fixed.
38 virtual void unregisterServiceWorker( 39 virtual void unregisterServiceWorker(
39 const blink::WebURL& pattern, 40 const blink::WebURL& pattern,
40 WebServiceWorkerUnregistrationCallbacks*); 41 blink::WebCallbacks<bool, blink::WebServiceWorkerError>*);
41 42
42 virtual void getRegistration(const blink::WebURL& document_url, 43 virtual void getRegistration(const blink::WebURL& document_url,
43 WebServiceWorkerGetRegistrationCallbacks*); 44 WebServiceWorkerGetRegistrationCallbacks*);
44 virtual void getRegistrations(WebServiceWorkerGetRegistrationsCallbacks*); 45 virtual void getRegistrations(WebServiceWorkerGetRegistrationsCallbacks*);
45 virtual void getRegistrationForReady( 46 virtual void getRegistrationForReady(
46 WebServiceWorkerGetRegistrationForReadyCallbacks*); 47 WebServiceWorkerGetRegistrationForReadyCallbacks*);
47 48
48 int provider_id() const; 49 int provider_id() const;
49 50
50 private: 51 private:
51 void RemoveProviderClient(); 52 void RemoveProviderClient();
52 ServiceWorkerDispatcher* GetDispatcher(); 53 ServiceWorkerDispatcher* GetDispatcher();
53 54
54 scoped_refptr<ThreadSafeSender> thread_safe_sender_; 55 scoped_refptr<ThreadSafeSender> thread_safe_sender_;
55 scoped_refptr<ServiceWorkerProviderContext> context_; 56 scoped_refptr<ServiceWorkerProviderContext> context_;
56 57
57 DISALLOW_COPY_AND_ASSIGN(WebServiceWorkerProviderImpl); 58 DISALLOW_COPY_AND_ASSIGN(WebServiceWorkerProviderImpl);
58 }; 59 };
59 60
60 } // namespace content 61 } // namespace content
61 62
62 #endif // CONTENT_CHILD_SERVICE_WORKER_WEB_SERVICE_WORKER_PROVIDER_IMPL_H_ 63 #endif // CONTENT_CHILD_SERVICE_WORKER_WEB_SERVICE_WORKER_PROVIDER_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698