Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CONTENT_BROWSER_BACKGROUND_FETCH_BACKGROUND_FETCH_SERVICE_IMPL_H_ | |
| 6 #define CONTENT_BROWSER_BACKGROUND_FETCH_BACKGROUND_FETCH_SERVICE_IMPL_H_ | |
| 7 | |
| 8 #include <string> | |
| 9 | |
| 10 #include "base/macros.h" | |
| 11 #include "base/memory/ref_counted.h" | |
| 12 #include "third_party/WebKit/public/platform/modules/background_fetch/background _fetch.mojom.h" | |
| 13 | |
| 14 namespace content { | |
| 15 | |
| 16 class BackgroundFetchContext; | |
| 17 class ServiceWorkerContextWrapper; | |
| 18 | |
| 19 // Implementation of the Mojo Background Fetch service. Will receive requests | |
| 20 // and callers from Blink, which implements the Background Fetch JavaScript API. | |
|
harkness
2017/03/14 11:55:47
nit: and calls? or just remove? Not sure what this
Peter Beverloo
2017/03/14 15:17:21
Fair enough. Realistically I'm not holding my brea
| |
| 21 class BackgroundFetchServiceImpl : public blink::mojom::BackgroundFetchService { | |
| 22 public: | |
| 23 BackgroundFetchServiceImpl( | |
| 24 BackgroundFetchContext* background_fetch_context, | |
| 25 ServiceWorkerContextWrapper* service_worker_context); | |
| 26 ~BackgroundFetchServiceImpl() override; | |
| 27 | |
| 28 static void Create(BackgroundFetchContext* background_fetch_context, | |
| 29 ServiceWorkerContextWrapper* service_worker_context, | |
| 30 blink::mojom::BackgroundFetchServiceRequest request); | |
| 31 | |
| 32 // blink::mojom::BackgroundFetchService implementation. | |
| 33 void UpdateUI(int64_t service_worker_registration_id, | |
| 34 const std::string& tag, | |
| 35 const std::string& title, | |
| 36 const UpdateUICallback& callback) override; | |
| 37 void Abort(int64_t service_worker_registration_id, | |
| 38 const std::string& tag) override; | |
| 39 void GetRegistration(int64_t service_worker_registration_id, | |
| 40 const std::string& tag, | |
| 41 const GetRegistrationCallback& callback) override; | |
| 42 void GetTags(int64_t service_worker_registration_id, | |
| 43 const GetTagsCallback& callback) override; | |
| 44 | |
| 45 private: | |
| 46 scoped_refptr<BackgroundFetchContext> background_fetch_context_; | |
| 47 scoped_refptr<ServiceWorkerContextWrapper> service_worker_context_; | |
| 48 | |
| 49 DISALLOW_COPY_AND_ASSIGN(BackgroundFetchServiceImpl); | |
| 50 }; | |
| 51 | |
| 52 } // namespace content | |
| 53 | |
| 54 #endif // CONTENT_BROWSER_BACKGROUND_FETCH_BACKGROUND_FETCH_SERVICE_IMPL_H_ | |
| OLD | NEW |