| Index: content/browser/presentation/presentation_type_converters.h
|
| diff --git a/content/browser/presentation/presentation_type_converters.h b/content/browser/presentation/presentation_type_converters.h
|
| index 38a85244ee7bf24839e739543ea9cae76b5f6eb5..f66c3230aba0baffd31ff555ef897b8ddeea7d84 100644
|
| --- a/content/browser/presentation/presentation_type_converters.h
|
| +++ b/content/browser/presentation/presentation_type_converters.h
|
| @@ -35,6 +35,15 @@ struct TypeConverter<presentation::PresentationSessionInfoPtr,
|
| };
|
|
|
| template <>
|
| +struct TypeConverter<content::PresentationSessionInfo,
|
| + presentation::PresentationSessionInfoPtr> {
|
| + static content::PresentationSessionInfo Convert(
|
| + const presentation::PresentationSessionInfoPtr& input) {
|
| + return content::PresentationSessionInfo(input->url, input->id);
|
| + }
|
| +};
|
| +
|
| +template <>
|
| struct TypeConverter<presentation::PresentationErrorPtr,
|
| content::PresentationError> {
|
| static presentation::PresentationErrorPtr Convert(
|
|
|