Index: mojo/dart/packages/mojo_services/lib/mojo/surface_id.mojom.dart |
diff --git a/mojo/dart/packages/mojo_services/lib/mojo/surface_id.mojom.dart b/mojo/dart/packages/mojo_services/lib/mojo/surface_id.mojom.dart |
index 05d9a900d5fd115a94698f5ff42390ed2c7332f0..449b1d1d63f637c060898971b2b5cdaa58771e94 100644 |
--- a/mojo/dart/packages/mojo_services/lib/mojo/surface_id.mojom.dart |
+++ b/mojo/dart/packages/mojo_services/lib/mojo/surface_id.mojom.dart |
@@ -5,9 +5,12 @@ |
library surface_id_mojom; |
import 'dart:async'; |
+import 'dart:collection'; |
import 'package:mojo/bindings.dart' as bindings; |
import 'package:mojo/core.dart' as core; |
+import 'package:mojo/mojo/bindings/types/mojom_types.mojom.dart' as mojom_types; |
+ |
@@ -85,5 +88,43 @@ class SurfaceId extends bindings.Struct { |
return map; |
} |
} |
+mojom_types.MojomStruct _surface_id_SurfaceId__() { |
+ return new mojom_types.MojomStruct() |
+ ..declData = (new mojom_types.DeclarationData() |
+ ..shortName = 'SurfaceId' |
+ ..fullIdentifier = 'mojo.SurfaceId') |
+ ..fields = <mojom_types.StructField>[ |
+ new mojom_types.StructField() |
+ ..declData = (new mojom_types.DeclarationData()..shortName = 'Local') |
+ ..type = (new mojom_types.Type()..simpleType = mojom_types.SimpleType.uint32), |
+ |
+ new mojom_types.StructField() |
+ ..declData = (new mojom_types.DeclarationData()..shortName = 'IdNamespace') |
+ ..type = (new mojom_types.Type()..simpleType = mojom_types.SimpleType.uint32), |
+ ]; |
+} |
+ |
+ |
+ |
+ |
+ |
+ |
+Map<String, mojom_types.UserDefinedType> _initDescriptions() { |
+ var map = new HashMap<String, mojom_types.UserDefinedType>(); |
+map["_surface_id_SurfaceId__"] = |
+ new mojom_types.UserDefinedType() |
+ ..structType = _surface_id_SurfaceId__(); |
+ |
+ return map; |
+} |
+ |
+var _MojomDesc; |
+Map<String, mojom_types.UserDefinedType> getAllMojomTypeDefinitions() { |
+ if (_MojomDesc == null) { |
+ _MojomDesc = _initDescriptions(); |
+ } |
+ return _MojomDesc; |
+} |
+ |