| OLD | NEW |
| (Empty) |
| 1 // Copyright 2015 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 #ifndef CHROME_CONTENT_RENDERER_VR_VR_TYPE_CONVERTERS_H_ | |
| 6 #define CHROME_CONTENT_RENDERER_VR_VR_TYPE_CONVERTERS_H_ | |
| 7 | |
| 8 #include "content/common/vr_service.mojom.h" | |
| 9 #include "mojo/common/common_type_converters.h" | |
| 10 #include "third_party/WebKit/public/platform/modules/vr/WebVR.h" | |
| 11 | |
| 12 namespace mojo { | |
| 13 | |
| 14 // Type/enum conversions from WebVR data types to Mojo data types | |
| 15 // and vice versa. | |
| 16 | |
| 17 template <> | |
| 18 struct TypeConverter<blink::WebVRVector3, content::VRVector3Ptr> { | |
| 19 static blink::WebVRVector3 Convert(const content::VRVector3Ptr& input); | |
| 20 }; | |
| 21 | |
| 22 template <> | |
| 23 struct TypeConverter<blink::WebVRVector4, content::VRVector4Ptr> { | |
| 24 static blink::WebVRVector4 Convert(const content::VRVector4Ptr& input); | |
| 25 }; | |
| 26 | |
| 27 template <> | |
| 28 struct TypeConverter<blink::WebVRRect, content::VRRectPtr> { | |
| 29 static blink::WebVRRect Convert(const content::VRRectPtr& input); | |
| 30 }; | |
| 31 | |
| 32 template <> | |
| 33 struct TypeConverter<blink::WebVRFieldOfView, content::VRFieldOfViewPtr> { | |
| 34 static blink::WebVRFieldOfView Convert( | |
| 35 const content::VRFieldOfViewPtr& input); | |
| 36 }; | |
| 37 | |
| 38 template <> | |
| 39 struct TypeConverter<blink::WebVREyeParameters, content::VREyeParametersPtr> { | |
| 40 static blink::WebVREyeParameters Convert( | |
| 41 const content::VREyeParametersPtr& input); | |
| 42 }; | |
| 43 | |
| 44 template <> | |
| 45 struct TypeConverter<blink::WebVRHMDInfo, content::VRHMDInfoPtr> { | |
| 46 static blink::WebVRHMDInfo Convert(const content::VRHMDInfoPtr& input); | |
| 47 }; | |
| 48 | |
| 49 template <> | |
| 50 struct TypeConverter<blink::WebVRDevice, content::VRDeviceInfoPtr> { | |
| 51 static blink::WebVRDevice Convert(const content::VRDeviceInfoPtr& input); | |
| 52 }; | |
| 53 | |
| 54 template <> | |
| 55 struct TypeConverter<blink::WebHMDSensorState, content::VRSensorStatePtr> { | |
| 56 static blink::WebHMDSensorState Convert( | |
| 57 const content::VRSensorStatePtr& input); | |
| 58 }; | |
| 59 | |
| 60 } // namespace mojo | |
| 61 | |
| 62 #endif // CHROME_CONTENT_RENDERER_VR_VR_TYPE_CONVERTERS_H_ | |
| OLD | NEW |