| Index: mojo/dart/packages/mojo_services/lib/mojo/view_manager_constants.mojom.dart
|
| diff --git a/mojo/dart/packages/mojo_services/lib/mojo/view_manager_constants.mojom.dart b/mojo/dart/packages/mojo_services/lib/mojo/view_manager_constants.mojom.dart
|
| index 7591fbaa3f41127bf8493f0587b8e4504dae9510..3e69f96c0fd271d08d251997062b0517fd725587 100644
|
| --- a/mojo/dart/packages/mojo_services/lib/mojo/view_manager_constants.mojom.dart
|
| +++ b/mojo/dart/packages/mojo_services/lib/mojo/view_manager_constants.mojom.dart
|
| @@ -5,9 +5,11 @@
|
| library view_manager_constants_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;
|
|
|
| class OrderDirection extends bindings.MojoEnum {
|
| static const OrderDirection above = const OrderDirection._(1);
|
| @@ -53,11 +55,50 @@ class OrderDirection extends bindings.MojoEnum {
|
| return 'OrderDirection.above';
|
| case below:
|
| return 'OrderDirection.below';
|
| + default:
|
| + return null;
|
| }
|
| }
|
|
|
| int toJson() => mojoEnumValue;
|
| }
|
|
|
| +mojom_types.MojomEnum _view_manager_constants_OrderDirection__() {
|
| + return new mojom_types.MojomEnum()
|
| + ..declData = (new mojom_types.DeclarationData()
|
| + ..shortName = 'OrderDirection'
|
| + ..fullIdentifier = 'mojo.OrderDirection')
|
| + ..values = <mojom_types.EnumValue>[new mojom_types.EnumValue()
|
| + ..declData = (new mojom_types.DeclarationData()..shortName = 'Above')
|
| + ..enumTypeKey = '_view_manager_constants_OrderDirection__'
|
| + ..intValue = 1,new mojom_types.EnumValue()
|
| + ..declData = (new mojom_types.DeclarationData()..shortName = 'Below')
|
| + ..enumTypeKey = '_view_manager_constants_OrderDirection__'
|
| + ..intValue = 2,];
|
| +}
|
| +
|
| +
|
| +
|
| +
|
| +
|
|
|
|
|
| +
|
| +
|
| +Map<String, mojom_types.UserDefinedType> _initDescriptions() {
|
| + var map = new HashMap<String, mojom_types.UserDefinedType>();
|
| +map["_view_manager_constants_OrderDirection__"] =
|
| + new mojom_types.UserDefinedType()
|
| + ..enumType = _view_manager_constants_OrderDirection__();
|
| +
|
| + return map;
|
| +}
|
| +
|
| +var _MojomDesc;
|
| +Map<String, mojom_types.UserDefinedType> getAllMojomTypeDefinitions() {
|
| + if (_MojomDesc == null) {
|
| + _MojomDesc = _initDescriptions();
|
| + }
|
| + return _MojomDesc;
|
| +}
|
| +
|
|
|