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

Side by Side Diff: content/common/service_worker/service_worker_event_dispatcher.mojom

Issue 2811593009: [Payments] move //components/payments/content/*.mojom files to //components/payments/mojom (Closed)
Patch Set: Reland after updating chrome_content_browser_client.cc to fix android build Created 3 years, 8 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
« no previous file with comments | « content/common/BUILD.gn ('k') | content/public/browser/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "components/payments/content/payment_app.mojom"; 7 import "components/payments/mojom/payment_app.mojom";
8 import "content/common/url_loader.mojom"; 8 import "content/common/url_loader.mojom";
9 import "mojo/common/string16.mojom"; 9 import "mojo/common/string16.mojom";
10 import "mojo/common/time.mojom"; 10 import "mojo/common/time.mojom";
11 import "third_party/WebKit/public/platform/modules/background_sync/background_sy nc.mojom"; 11 import "third_party/WebKit/public/platform/modules/background_sync/background_sy nc.mojom";
12 import "third_party/WebKit/public/platform/modules/fetch/fetch_api_request.mojom "; 12 import "third_party/WebKit/public/platform/modules/fetch/fetch_api_request.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 "url/mojo/origin.mojom"; 14 import "url/mojo/origin.mojom";
15 15
16 [Native] 16 [Native]
17 struct PlatformNotificationData; 17 struct PlatformNotificationData;
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 DispatchExtendableMessageEvent(ExtendableMessageEvent event) 107 DispatchExtendableMessageEvent(ExtendableMessageEvent event)
108 => (blink.mojom.ServiceWorkerEventStatus status, 108 => (blink.mojom.ServiceWorkerEventStatus status,
109 mojo.common.mojom.Time dispatch_event_time); 109 mojo.common.mojom.Time dispatch_event_time);
110 110
111 // Pings the service worker to check if it is responsive. If the callback is 111 // Pings the service worker to check if it is responsive. If the callback is
112 // not called within a certain period of time, the browser will terminate the 112 // not called within a certain period of time, the browser will terminate the
113 // worker. Unlike the other functions in this interface, Ping() does not 113 // worker. Unlike the other functions in this interface, Ping() does not
114 // dispatch an event. 114 // dispatch an event.
115 Ping() => (); 115 Ping() => ();
116 }; 116 };
OLDNEW
« no previous file with comments | « content/common/BUILD.gn ('k') | content/public/browser/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698