| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 mojom = "//content/common/service_worker/service_worker_event_dispatcher.mojom" | 5 mojom = "//content/common/service_worker/service_worker_event_dispatcher.mojom" |
| 6 public_headers = [ | 6 public_headers = [ |
| 7 "//content/common/background_fetch/background_fetch_types.h", | 7 "//content/common/background_fetch/background_fetch_types.h", |
| 8 "//content/common/service_worker/service_worker_client_info.h", |
| 8 "//content/common/service_worker/service_worker_status_code.h", | 9 "//content/common/service_worker/service_worker_status_code.h", |
| 9 "//content/common/service_worker/service_worker_types.h", | 10 "//content/common/service_worker/service_worker_types.h", |
| 10 "//content/public/common/platform_notification_data.h", | 11 "//content/public/common/platform_notification_data.h", |
| 11 "//content/public/common/push_event_payload.h", | 12 "//content/public/common/push_event_payload.h", |
| 12 ] | 13 ] |
| 13 sources = [ | 14 sources = [ |
| 14 "//content/common/service_worker/service_worker_status_code_traits.cc", | 15 "//content/common/service_worker/service_worker_status_code_traits.cc", |
| 15 ] | 16 ] |
| 16 traits_headers = [ | 17 traits_headers = [ |
| 17 "//content/common/platform_notification_messages.h", | 18 "//content/common/platform_notification_messages.h", |
| 18 "//content/common/service_worker/service_worker_messages.h", | 19 "//content/common/service_worker/service_worker_messages.h", |
| 19 "//content/common/service_worker/service_worker_status_code_traits.h", | 20 "//content/common/service_worker/service_worker_status_code_traits.h", |
| 20 ] | 21 ] |
| 21 type_mappings = [ | 22 type_mappings = [ |
| 22 "blink.mojom.ServiceWorkerEventStatus=::content::ServiceWorkerStatusCode", | 23 "blink.mojom.ServiceWorkerEventStatus=::content::ServiceWorkerStatusCode", |
| 23 "content.mojom.ExtendableMessageEventSource=::content::ExtendableMessageEventS
ource", | 24 "content.mojom.ExtendableMessageEventSource=::content::ExtendableMessageEventS
ource", |
| 24 "content.mojom.PlatformNotificationData=::content::PlatformNotificationData", | 25 "content.mojom.PlatformNotificationData=::content::PlatformNotificationData", |
| 25 "content.mojom.PushEventPayload=::content::PushEventPayload", | 26 "content.mojom.PushEventPayload=::content::PushEventPayload", |
| 26 "content.mojom.ServiceWorkerFetchRequest=::content::ServiceWorkerFetchRequest"
, | 27 "content.mojom.ServiceWorkerFetchRequest=::content::ServiceWorkerFetchRequest"
, |
| 27 "content.mojom.ServiceWorkerResponse=::content::ServiceWorkerResponse", | 28 "content.mojom.ServiceWorkerResponse=::content::ServiceWorkerResponse", |
| 28 ] | 29 ] |
| OLD | NEW |