| 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 0f45bf4f9051bbf0270bda3cd58b0be8f7cc244f..25c0598222b7b43c3de2122255fbc370718c790e 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
|
| @@ -8,6 +8,8 @@ import 'dart:async';
|
|
|
| import 'package:mojo/bindings.dart' as bindings;
|
| import 'package:mojo/core.dart' as core;
|
| +import 'package:mojo/mojo/mojom_types.mojom.dart' as mojom_types;
|
| +
|
| class OrderDirection extends bindings.MojoEnum {
|
| static const ABOVE = const OrderDirection._(1);
|
| static const BELOW = const OrderDirection._(2);
|
| @@ -52,11 +54,49 @@ class OrderDirection extends bindings.MojoEnum {
|
| return 'OrderDirection.ABOVE';
|
| case BELOW:
|
| return 'OrderDirection.BELOW';
|
| + default:
|
| + return null;
|
| }
|
| }
|
|
|
| int toJson() => value;
|
| }
|
|
|
| +mojom_types.MojomEnum _view_manager_constants_OrderDirection__() {
|
| + return new mojom_types.MojomEnum()
|
| + ..declData = (new mojom_types.DeclarationData()..shortName = "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,];
|
| +}
|
| +
|
| +
|
| +
|
| +
|
| +
|
| +
|
| +
|
| +
|
| +
|
| +
|
| +var _MojomDesc__ = _initDescriptions();
|
| +
|
| +Map<String, mojom_types.UserDefinedType> _initDescriptions() {
|
| + var map = new Map<String, mojom_types.UserDefinedType>();
|
| +
|
| + map["_view_manager_constants_OrderDirection__"] =
|
| + new mojom_types.UserDefinedType()
|
| + ..enumType = _view_manager_constants_OrderDirection__();
|
| +
|
| + return map;
|
| +}
|
| +
|
| +Map<String, mojom_types.UserDefinedType> getAllMojomTypeDefinitions() {
|
| + return _MojomDesc__;
|
| +}
|
|
|
|
|
|
|