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

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

Issue 2883763002: Expose ECT to render frames, Blink and NetInfo (Closed)
Patch Set: rebased Created 3 years, 6 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
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/native_types.mojom" 5 mojom = "//content/common/native_types.mojom"
6 public_headers = [ 6 public_headers = [
7 "//content/common/frame_owner_properties.h", 7 "//content/common/frame_owner_properties.h",
8 "//content/common/frame_replication_state.h", 8 "//content/common/frame_replication_state.h",
9 "//content/common/resize_params.h", 9 "//content/common/resize_params.h",
10 "//content/public/common/renderer_preferences.h", 10 "//content/public/common/renderer_preferences.h",
11 "//content/public/common/web_preferences.h", 11 "//content/public/common/web_preferences.h",
12 "//net/base/network_change_notifier.h", 12 "//net/base/network_change_notifier.h",
13 "//net/nqe/effective_connection_type.h",
13 "//third_party/WebKit/public/web/WebPopupType.h", 14 "//third_party/WebKit/public/web/WebPopupType.h",
14 ] 15 ]
15 traits_headers = [ 16 traits_headers = [
16 "//content/common/frame_messages.h", 17 "//content/common/frame_messages.h",
17 "//content/common/view_messages.h", 18 "//content/common/view_messages.h",
18 "//content/public/common/common_param_traits.h", 19 "//content/public/common/common_param_traits.h",
19 ] 20 ]
20 public_deps = [ 21 public_deps = [
21 # NOTE: These dependencies are here to satisfy gn check because 22 # NOTE: These dependencies are here to satisfy gn check because
22 # common_param_traits_macros.h and/or view_messages.h include their headers. 23 # common_param_traits_macros.h and/or view_messages.h include their headers.
23 # Although the mojo bindings target is configured to allow direct circular 24 # Although the mojo bindings target is configured to allow direct circular
24 # includes from //content/common and //content/public/common, this isn't a 25 # includes from //content/common and //content/public/common, this isn't a
25 # transitive allowance, so those targets' own public_deps aren't included in 26 # transitive allowance, so those targets' own public_deps aren't included in
26 # the set of implied dependencies. 27 # the set of implied dependencies.
27 "//cc/ipc", 28 "//cc/ipc",
28 "//content/common:features", 29 "//content/common:features",
29 "//media", 30 "//media",
30 "//media/base/ipc", 31 "//media/base/ipc",
31 "//net", 32 "//net",
32 "//ppapi/features", 33 "//ppapi/features",
33 "//ui/accessibility", 34 "//ui/accessibility",
34 "//ui/base/ime:text_input_types", 35 "//ui/base/ime:text_input_types",
35 "//ui/gfx/ipc", 36 "//ui/gfx/ipc",
36 "//ui/gfx/ipc/color", 37 "//ui/gfx/ipc/color",
37 "//ui/gfx/ipc/skia", 38 "//ui/gfx/ipc/skia",
38 "//ui/surface", 39 "//ui/surface",
39 "//url/ipc:url_ipc", 40 "//url/ipc:url_ipc",
40 ] 41 ]
41 type_mappings = [ 42 type_mappings = [
43 "content.mojom.EffectiveConnectionType=net::EffectiveConnectionType",
42 "content.mojom.FrameOwnerProperties=content::FrameOwnerProperties", 44 "content.mojom.FrameOwnerProperties=content::FrameOwnerProperties",
43 "content.mojom.FrameReplicationState=content::FrameReplicationState", 45 "content.mojom.FrameReplicationState=content::FrameReplicationState",
44 "content.mojom.NetworkConnectionType=net::NetworkChangeNotifier::ConnectionTyp e", 46 "content.mojom.NetworkConnectionType=net::NetworkChangeNotifier::ConnectionTyp e",
45 "content.mojom.RendererPreferences=content::RendererPreferences", 47 "content.mojom.RendererPreferences=content::RendererPreferences",
46 "content.mojom.ResizeParams=content::ResizeParams", 48 "content.mojom.ResizeParams=content::ResizeParams",
47 "content.mojom.WebPopupType=blink::WebPopupType", 49 "content.mojom.WebPopupType=blink::WebPopupType",
48 "content.mojom.WebPreferences=content::WebPreferences", 50 "content.mojom.WebPreferences=content::WebPreferences",
49 ] 51 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698