| Index: mojo/dart/packages/mojo/lib/mojo/http_header.mojom.dart
|
| diff --git a/mojo/dart/packages/mojo/lib/mojo/http_header.mojom.dart b/mojo/dart/packages/mojo/lib/mojo/http_header.mojom.dart
|
| index 87ca9ebb422a156d846cb94086142b424ea164ab..a4a4b2a6ae6bfeec23267bb0e19a50c430d193e9 100644
|
| --- a/mojo/dart/packages/mojo/lib/mojo/http_header.mojom.dart
|
| +++ b/mojo/dart/packages/mojo/lib/mojo/http_header.mojom.dart
|
| @@ -5,9 +5,12 @@
|
| library http_header_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,45 @@ class HttpHeader extends bindings.Struct {
|
| return map;
|
| }
|
| }
|
| +mojom_types.MojomStruct _http_header_HttpHeader__() {
|
| + return new mojom_types.MojomStruct()
|
| + ..declData = (new mojom_types.DeclarationData()
|
| + ..shortName = 'HttpHeader'
|
| + ..fullIdentifier = 'mojo.HttpHeader')
|
| + ..fields = <mojom_types.StructField>[
|
| + new mojom_types.StructField()
|
| + ..declData = (new mojom_types.DeclarationData()..shortName = 'Name')
|
| + ..type = (new mojom_types.Type()
|
| +..stringType = (new mojom_types.StringType()..nullable = false)),
|
| +
|
| + new mojom_types.StructField()
|
| + ..declData = (new mojom_types.DeclarationData()..shortName = 'Value')
|
| + ..type = (new mojom_types.Type()
|
| +..stringType = (new mojom_types.StringType()..nullable = false)),
|
| + ];
|
| +}
|
| +
|
| +
|
| +
|
| +
|
| +
|
|
|
|
|
| +
|
| +Map<String, mojom_types.UserDefinedType> _initDescriptions() {
|
| + var map = new HashMap<String, mojom_types.UserDefinedType>();
|
| +map["_http_header_HttpHeader__"] =
|
| + new mojom_types.UserDefinedType()
|
| + ..structType = _http_header_HttpHeader__();
|
| +
|
| + return map;
|
| +}
|
| +
|
| +var _MojomDesc;
|
| +Map<String, mojom_types.UserDefinedType> getAllMojomTypeDefinitions() {
|
| + if (_MojomDesc == null) {
|
| + _MojomDesc = _initDescriptions();
|
| + }
|
| + return _MojomDesc;
|
| +}
|
| +
|
|
|