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 module content.mojom; | 5 module content.mojom; |
6 | 6 |
7 import "content/common/url_loader.mojom"; | 7 import "content/public/common/url_loader.mojom"; |
8 import "mojo/common/string16.mojom"; | 8 import "mojo/common/string16.mojom"; |
9 import "mojo/common/time.mojom"; | 9 import "mojo/common/time.mojom"; |
10 import "third_party/WebKit/public/platform/modules/background_sync/background_sy
nc.mojom"; | 10 import "third_party/WebKit/public/platform/modules/background_sync/background_sy
nc.mojom"; |
11 import "third_party/WebKit/public/platform/modules/fetch/fetch_api_request.mojom
"; | 11 import "third_party/WebKit/public/platform/modules/fetch/fetch_api_request.mojom
"; |
12 import "third_party/WebKit/public/platform/modules/payments/payment_app.mojom"; | 12 import "third_party/WebKit/public/platform/modules/payments/payment_app.mojom"; |
13 import "third_party/WebKit/public/platform/modules/serviceworker/service_worker_
event_status.mojom"; | 13 import "third_party/WebKit/public/platform/modules/serviceworker/service_worker_
event_status.mojom"; |
14 import "third_party/WebKit/public/platform/modules/serviceworker/service_worker_
stream_handle.mojom"; | 14 import "third_party/WebKit/public/platform/modules/serviceworker/service_worker_
stream_handle.mojom"; |
15 import "url/mojo/origin.mojom"; | 15 import "url/mojo/origin.mojom"; |
16 import "url/mojo/url.mojom"; | 16 import "url/mojo/url.mojom"; |
17 | 17 |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 Ping() => (); | 147 Ping() => (); |
148 }; | 148 }; |
149 | 149 |
150 // This interface is passed from the browser to the renderer with | 150 // This interface is passed from the browser to the renderer with |
151 // DispatchInstallEvent. The ordering between RegisterForeignFetchScopes and the | 151 // DispatchInstallEvent. The ordering between RegisterForeignFetchScopes and the |
152 // callback of DispatchInstallEvent should be preserved. | 152 // callback of DispatchInstallEvent should be preserved. |
153 interface ServiceWorkerInstallEventMethods { | 153 interface ServiceWorkerInstallEventMethods { |
154 RegisterForeignFetchScopes(array<url.mojom.Url> sub_scopes, | 154 RegisterForeignFetchScopes(array<url.mojom.Url> sub_scopes, |
155 array<url.mojom.Origin> origins); | 155 array<url.mojom.Origin> origins); |
156 }; | 156 }; |
OLD | NEW |