| OLD | NEW |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 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 | 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 = "//third_party/WebKit/public/platform/modules/presentation/presentation.
mojom" | 5 mojom = "//third_party/WebKit/public/platform/modules/presentation/presentation.
mojom" |
| 6 public_headers = [ "//content/public/common/presentation_session.h" ] | 6 public_headers = [ |
| 7 "//content/public/common/presentation_connection_message.h", |
| 8 "//content/public/common/presentation_session.h", |
| 9 ] |
| 7 traits_headers = | 10 traits_headers = |
| 8 [ "//content/common/presentation/presentation_struct_traits.h" ] | 11 [ "//content/common/presentation/presentation_struct_traits.h" ] |
| 9 deps = [ | 12 deps = [ |
| 10 "//url", | 13 "//url", |
| 11 ] | 14 ] |
| 12 type_mappings = [ | 15 type_mappings = [ |
| 16 "blink.mojom.PresentationConnectionCloseReason=content::PresentationConnection
CloseReason", |
| 17 "blink.mojom.PresentationConnectionMessage=content::PresentationConnectionMess
age[move_only]", |
| 18 "blink.mojom.PresentationConnectionState=content::PresentationConnectionState"
, |
| 19 "blink.mojom.PresentationError=content::PresentationError", |
| 13 "blink.mojom.PresentationErrorType=content::PresentationErrorType", | 20 "blink.mojom.PresentationErrorType=content::PresentationErrorType", |
| 14 "blink.mojom.PresentationConnectionState=content::PresentationConnectionState"
, | |
| 15 "blink.mojom.PresentationConnectionCloseReason=content::PresentationConnection
CloseReason", | |
| 16 "blink.mojom.PresentationSessionInfo=content::PresentationSessionInfo", | 21 "blink.mojom.PresentationSessionInfo=content::PresentationSessionInfo", |
| 17 "blink.mojom.PresentationError=content::PresentationError", | |
| 18 ] | 22 ] |
| OLD | NEW |