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

Side by Side Diff: content/common/push_messaging.typemap

Issue 2690203003: Convert push_messaging IPC msgs into mojo interfaces (Closed)
Patch Set: remove DCHECK(ChildThreadImpl::Current()) Created 3 years, 10 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
(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 mojom = "//content/common/push_messaging.mojom"
6 public_headers = [
7 "//content/public/common/push_messaging_status.h",
8 "//content/public/common/push_subscription_options.h",
9 "//third_party/WebKit/public/platform/modules/push_messaging/WebPushError.h",
10 "//third_party/WebKit/public/platform/modules/push_messaging/WebPushPermission Status.h",
11 ]
12 traits_headers = [ "//content/common/push_messaging_param_traits.h" ]
13 sources = [
14 "//content/common/push_messaging_param_traits.cc",
15 ]
16 deps = [
17 "//content:export",
18 ]
19 public_deps = [
20 "//third_party/WebKit/public:blink_headers",
21 ]
22 type_mappings = [
23 "content.mojom.PushErrorType=blink::WebPushError::ErrorType",
24 "content.mojom.PushGetRegistrationStatus=content::PushGetRegistrationStatus",
25 "content.mojom.PushPermissionStatus=blink::WebPushPermissionStatus",
26 "content.mojom.PushRegistrationStatus=content::PushRegistrationStatus",
27 "content.mojom.PushSubscriptionOptions=content::PushSubscriptionOptions",
28 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698