Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1304)

Unified Diff: mojo/dart/packages/_mojo_for_test_only/lib/imported/sample_import.mojom.dart

Issue 1753013002: Mojom runtime type info: New implementation for Dart. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: No changes to sha1s Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: mojo/dart/packages/_mojo_for_test_only/lib/imported/sample_import.mojom.dart
diff --git a/mojo/dart/packages/_mojo_for_test_only/lib/imported/sample_import.mojom.dart b/mojo/dart/packages/_mojo_for_test_only/lib/imported/sample_import.mojom.dart
index 341c38591f2d317d399cc8fc5a682182f2a4f809..8ca98035102f462cd2d385ac5950382d1247ce16 100644
--- a/mojo/dart/packages/_mojo_for_test_only/lib/imported/sample_import.mojom.dart
+++ b/mojo/dart/packages/_mojo_for_test_only/lib/imported/sample_import.mojom.dart
@@ -5,6 +5,7 @@
library sample_import_mojom;
import 'dart:async';
import 'dart:collection';
+import 'dart:typed_data';
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;
@@ -76,34 +77,6 @@ class Shape extends bindings.MojoEnum {
int toJson() => mojoEnumValue;
}
-mojom_types.MojomEnum _sampleImportShape() {
- return new mojom_types.MojomEnum()
- ..declData = (new mojom_types.DeclarationData()
- ..shortName = 'Shape'
- ..fullIdentifier = 'imported.Shape')
- ..values = <mojom_types.EnumValue>[
- new mojom_types.EnumValue()
- ..declData = (new mojom_types.DeclarationData()
- ..shortName = 'Rectangle')
- ..enumTypeKey = 'sample_import_Shape__'
- ..intValue = 1,
- new mojom_types.EnumValue()
- ..declData = (new mojom_types.DeclarationData()
- ..shortName = 'Circle')
- ..enumTypeKey = 'sample_import_Shape__'
- ..intValue = 2,
- new mojom_types.EnumValue()
- ..declData = (new mojom_types.DeclarationData()
- ..shortName = 'Triangle')
- ..enumTypeKey = 'sample_import_Shape__'
- ..intValue = 3,
- new mojom_types.EnumValue()
- ..declData = (new mojom_types.DeclarationData()
- ..shortName = 'Last')
- ..enumTypeKey = 'sample_import_Shape__'
- ..intValue = 3,];
-}
-
class AnotherShape extends bindings.MojoEnum {
static const AnotherShape rectangle = const AnotherShape._(10);
static const AnotherShape circle = const AnotherShape._(11);
@@ -163,29 +136,6 @@ class AnotherShape extends bindings.MojoEnum {
int toJson() => mojoEnumValue;
}
-mojom_types.MojomEnum _sampleImportAnotherShape() {
- return new mojom_types.MojomEnum()
- ..declData = (new mojom_types.DeclarationData()
- ..shortName = 'AnotherShape'
- ..fullIdentifier = 'imported.AnotherShape')
- ..values = <mojom_types.EnumValue>[
- new mojom_types.EnumValue()
- ..declData = (new mojom_types.DeclarationData()
- ..shortName = 'Rectangle')
- ..enumTypeKey = 'sample_import_AnotherShape__'
- ..intValue = 10,
- new mojom_types.EnumValue()
- ..declData = (new mojom_types.DeclarationData()
- ..shortName = 'Circle')
- ..enumTypeKey = 'sample_import_AnotherShape__'
- ..intValue = 11,
- new mojom_types.EnumValue()
- ..declData = (new mojom_types.DeclarationData()
- ..shortName = 'Triangle')
- ..enumTypeKey = 'sample_import_AnotherShape__'
- ..intValue = 12,];
-}
-
class YetAnotherShape extends bindings.MojoEnum {
static const YetAnotherShape rectangle = const YetAnotherShape._(20);
static const YetAnotherShape circle = const YetAnotherShape._(21);
@@ -245,29 +195,6 @@ class YetAnotherShape extends bindings.MojoEnum {
int toJson() => mojoEnumValue;
}
-mojom_types.MojomEnum _sampleImportYetAnotherShape() {
- return new mojom_types.MojomEnum()
- ..declData = (new mojom_types.DeclarationData()
- ..shortName = 'YetAnotherShape'
- ..fullIdentifier = 'imported.YetAnotherShape')
- ..values = <mojom_types.EnumValue>[
- new mojom_types.EnumValue()
- ..declData = (new mojom_types.DeclarationData()
- ..shortName = 'Rectangle')
- ..enumTypeKey = 'sample_import_YetAnotherShape__'
- ..intValue = 20,
- new mojom_types.EnumValue()
- ..declData = (new mojom_types.DeclarationData()
- ..shortName = 'Circle')
- ..enumTypeKey = 'sample_import_YetAnotherShape__'
- ..intValue = 21,
- new mojom_types.EnumValue()
- ..declData = (new mojom_types.DeclarationData()
- ..shortName = 'Triangle')
- ..enumTypeKey = 'sample_import_YetAnotherShape__'
- ..intValue = 22,];
-}
-
class Point extends bindings.Struct {
@@ -355,24 +282,6 @@ class Point extends bindings.Struct {
}
}
-mojom_types.MojomStruct _sampleImportPoint() {
- return new mojom_types.MojomStruct()
- ..declData = (new mojom_types.DeclarationData()
- ..shortName = 'Point'
- ..fullIdentifier = 'imported.Point')
- ..fields = <mojom_types.StructField>[
- new mojom_types.StructField()
- ..declData = (new mojom_types.DeclarationData()
- ..shortName = 'X')
- ..type = (new mojom_types.Type()
- ..simpleType = mojom_types.SimpleType.int32),
- new mojom_types.StructField()
- ..declData = (new mojom_types.DeclarationData()
- ..shortName = 'Y')
- ..type = (new mojom_types.Type()
- ..simpleType = mojom_types.SimpleType.int32),];
-}
-
class _ImportedInterfaceDoSomethingParams extends bindings.Struct {
static const List<bindings.StructDataHeader> kVersions = const [
@@ -431,41 +340,17 @@ class _ImportedInterfaceDoSomethingParams extends bindings.Struct {
}
}
-mojom_types.MojomStruct _sampleImportImportedInterfaceDoSomethingParams() {
- return new mojom_types.MojomStruct()
- ..declData = (new mojom_types.DeclarationData()
- ..shortName = 'ImportedInterfaceDoSomethingParams'
- ..fullIdentifier = 'imported.ImportedInterface_DoSomething_Params')
- ..fields = <mojom_types.StructField>[];
-}
-
-
const int _ImportedInterface_doSomethingName = 0;
-mojom_types.MojomInterface _sampleImportImportedInterface() {
- return new mojom_types.MojomInterface()
- ..declData = (new mojom_types.DeclarationData()
- ..shortName = 'ImportedInterface'
- ..fullIdentifier = 'imported.ImportedInterface')
- ..serviceName_ = 'ImportedInterface'
- ..methods = <int, mojom_types.MojomMethod>{
- _ImportedInterface_doSomethingName: new mojom_types.MojomMethod()
- ..declData = (new mojom_types.DeclarationData()
- ..shortName = 'DoSomething')
- ..ordinal = _ImportedInterface_doSomethingName
- ..parameters = _sampleImportImportedInterfaceDoSomethingParams(),
- };
-}
-
class _ImportedInterfaceServiceDescription implements service_describer.ServiceDescription {
dynamic getTopLevelInterface([Function responseFactory]) =>
- responseFactory(_sampleImportImportedInterface());
+ responseFactory(null);
dynamic getTypeDefinition(String typeKey, [Function responseFactory]) =>
- responseFactory(getAllMojomTypeDefinitions()[typeKey]);
+ responseFactory(null);
dynamic getAllTypeDefinitions([Function responseFactory]) =>
- responseFactory(getAllMojomTypeDefinitions());
+ responseFactory(null);
}
abstract class ImportedInterface {
@@ -643,34 +528,29 @@ class ImportedInterfaceStub extends bindings.Stub {
}
-Map<String, mojom_types.UserDefinedType> _initDescriptions() {
- var map = new HashMap<String, mojom_types.UserDefinedType>();
- map["sample_import_Shape__"] =
- new mojom_types.UserDefinedType()
- ..enumType = _sampleImportShape();
- map["sample_import_AnotherShape__"] =
- new mojom_types.UserDefinedType()
- ..enumType = _sampleImportAnotherShape();
- map["sample_import_YetAnotherShape__"] =
- new mojom_types.UserDefinedType()
- ..enumType = _sampleImportYetAnotherShape();
- map["sample_import_Point__"] =
- new mojom_types.UserDefinedType()
- ..structType = _sampleImportPoint();
- map["sample_import_ImportedInterface_DoSomething_Params__"] =
- new mojom_types.UserDefinedType()
- ..structType = _sampleImportImportedInterfaceDoSomethingParams();
- map["sample_import_ImportedInterface__"] =
- new mojom_types.UserDefinedType()
- ..interfaceType = _sampleImportImportedInterface();
- return map;
-}
+mojom_types.RuntimeTypeInfo getRuntimeTypeInfo() => _runtimeTypeInfo ??
+ _initRuntimeTypeInfo();
-var _mojomDesc;
Map<String, mojom_types.UserDefinedType> getAllMojomTypeDefinitions() {
- if (_mojomDesc == null) {
- _mojomDesc = _initDescriptions();
- }
- return _mojomDesc;
+ return getRuntimeTypeInfo().typeMap;
}
+var _runtimeTypeInfo;
+mojom_types.RuntimeTypeInfo _initRuntimeTypeInfo() {
+ // serializedRuntimeTypeInfo contains the bytes of the Mojo serialization of
+ // a mojom_types.RuntimeTypeInfo struct describing the Mojom types in this
+ // file.
+ var serializedRuntimeTypeInfo = new Uint8List.fromList(const [24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,48,0,0,0,5,0,0,0,40,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,104,0,0,0,0,0,0,0,128,0,0,0,0,0,0,0,160,0,0,0,0,0,0,0,43,0,0,0,35,0,0,0,84,89,80,69,95,75,69,89,58,105,109,112,111,114,116,101,100,46,73,109,112,111,114,116,101,100,73,110,116,101,114,102,97,99,101,0,0,0,0,0,31,0,0,0,23,0,0,0,84,89,80,69,95,75,69,89,58,105,109,112,111,114,116,101,100,46,80,111,105,110,116,0,31,0,0,0,23,0,0,0,84,89,80,69,95,75,69,89,58,105,109,112,111,114,116,101,100,46,83,104,97,112,101,0,38,0,0,0,30,0,0,0,84,89,80,69,95,75,69,89,58,105,109,112,111,114,116,101,100,46,65,110,111,116,104,101,114,83,104,97,112,101,0,0,41,0,0,0,33,0,0,0,84,89,80,69,95,75,69,89,58,105,109,112,111,114,116,101,100,46,89,101,116,65,110,111,116,104,101,114,83,104,97,112,101,0,0,0,0,0,0,0,88,0,0,0,5,0,0,0,16,0,0,0,3,0,0,0,72,0,0,0,0,0,0,0,16,0,0,0,1,0,0,0,160,3,0,0,0,0,0,0,16,0,0,0,0,0,0,0,192,6,0,0,0,0,0,0,16,0,0,0,0,0,0,0,80,13,0,0,0,0,0,0,16,0,0,0,0,0,0,0,120,18,0,0,0,0,0,0,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,1,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,17,0,0,0,73,109,112,111,114,116,101,100,73,110,116,101,114,102,97,99,101,0,0,0,0,0,0,0,34,0,0,0,26,0,0,0,105,109,112,111,114,116,101,100,46,73,109,112,111,114,116,101,100,73,110,116,101,114,102,97,99,101,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,35,0,0,0,10,0,0,0,90,0,0,0,82,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,109,112,111,114,116,46,109,111,106,111,109,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,12,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,11,0,0,0,68,111,83,111,109,101,116,104,105,110,103,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,36,0,0,0,2,0,0,0,90,0,0,0,82,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,
+47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,109,112,111,114,116,46,109,111,106,111,109,0,0,0,0,0,0,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,19,0,0,0,68,111,83,111,109,101,116,104,105,110,103,45,114,101,113,117,101,115,116,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0,0,0,82,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,109,112,111,114,116,46,109,111,106,111,109,0,0,0,0,0,0,8,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,5,0,0,0,80,111,105,110,116,0,0,0,22,0,0,0,14,0,0,0,105,109,112,111,114,116,101,100,46,80,111,105,110,116,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,30,0,0,0,7,0,0,0,90,0,0,0,82,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,109,112,111,114,116,46,109,111,106,111,109,0,0,0,0,0,0,24,0,0,0,2,0,0,0,16,0,0,0,0,0,0,0,16,1,0,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,1,0,0,0,120,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,31,0,0,0,8,0,0,0,90,0,0,0,82,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,109,112,111,114,116,46,109,111,106,111,109,0,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,1,0,0,0,121,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,
+16,0,0,0,0,0,0,0,32,0,0,0,8,0,0,0,90,0,0,0,82,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,109,112,111,114,116,46,109,111,106,111,109,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,240,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,5,0,0,0,83,104,97,112,101,0,0,0,22,0,0,0,14,0,0,0,105,109,112,111,114,116,101,100,46,83,104,97,112,101,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,10,0,0,0,5,0,0,0,90,0,0,0,82,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,109,112,111,114,116,46,109,111,106,111,109,0,0,0,0,0,0,40,0,0,0,4,0,0,0,32,0,0,0,0,0,0,0,112,1,0,0,0,0,0,0,168,2,0,0,0,0,0,0,224,3,0,0,0,0,0,0,48,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,24,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,40,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,9,0,0,0,82,69,67,84,65,78,71,76,69,0,0,0,0,0,0,0,32,0,0,0,24,0,0,0,105,109,112,111,114,116,101,100,46,83,104,97,112,101,46,82,69,67,84,65,78,71,76,69,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,11,0,0,0,2,0,0,0,90,0,0,0,82,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,109,112,111,114,116,46,109,111,106,111,109,0,0,0,0,0,0,31,0,0,0,23,0,0,0,84,89,80,69,95,75,69,89,58,105,109,112,111,114,116,101,100,46,83,104,97,112,101,0,16,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,6,0,0,0,67,73,82,67,76,69,0,0,29,0,0,0,21,0,0,0,105,109,112,111,114,116,101,100,46,83,104,97,112,101,46,67,73,82,67,76,69,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,12,0,0,0,2,0,0,0,90,0,0,0,82,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,
+98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,109,112,111,114,116,46,109,111,106,111,109,0,0,0,0,0,0,31,0,0,0,23,0,0,0,84,89,80,69,95,75,69,89,58,105,109,112,111,114,116,101,100,46,83,104,97,112,101,0,48,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,8,0,0,0,84,82,73,65,78,71,76,69,31,0,0,0,23,0,0,0,105,109,112,111,114,116,101,100,46,83,104,97,112,101,46,84,82,73,65,78,71,76,69,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,13,0,0,0,2,0,0,0,90,0,0,0,82,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,109,112,111,114,116,46,109,111,106,111,109,0,0,0,0,0,0,31,0,0,0,23,0,0,0,84,89,80,69,95,75,69,89,58,105,109,112,111,114,116,101,100,46,83,104,97,112,101,0,48,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,16,1,0,0,0,0,0,0,16,0,0,0,1,0,0,0,32,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,4,0,0,0,76,65,83,84,0,0,0,0,27,0,0,0,19,0,0,0,105,109,112,111,114,116,101,100,46,83,104,97,112,101,46,76,65,83,84,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,14,0,0,0,2,0,0,0,90,0,0,0,82,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,109,112,111,114,116,46,109,111,106,111,109,0,0,0,0,0,0,31,0,0,0,23,0,0,0,84,89,80,69,95,75,69,89,58,105,109,112,111,114,116,101,100,46,83,104,97,112,101,0,40,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,8,0,0,0,84,82,73,65,78,71,76,69,40,0,0,0,32,0,0,0,84,89,80,69,95,75,69,89,58,105,109,112,111,114,116,101,100,46,83,104,97,112,101,46,84,82,73,65,78,71,76,69,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,12,0,0,0,65,110,111,116,104,101,114,83,104,97,112,101,0,0,0,0,29,0,0,0,21,0,0,0,105,109,112,111,114,116,101,100,46,65,110,111,116,104,101,114,83,104,97,112,101,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,18,0,0,0,5,0,0,0,90,0,0,0,82,0,0,0,47,104,111,109,101,47,114,117,
+100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,109,112,111,114,116,46,109,111,106,111,109,0,0,0,0,0,0,32,0,0,0,3,0,0,0,24,0,0,0,0,0,0,0,120,1,0,0,0,0,0,0,192,2,0,0,0,0,0,0,48,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,32,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,56,1,0,0,0,0,0,0,10,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,9,0,0,0,82,69,67,84,65,78,71,76,69,0,0,0,0,0,0,0,39,0,0,0,31,0,0,0,105,109,112,111,114,116,101,100,46,65,110,111,116,104,101,114,83,104,97,112,101,46,82,69,67,84,65,78,71,76,69,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,19,0,0,0,2,0,0,0,90,0,0,0,82,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,109,112,111,114,116,46,109,111,106,111,109,0,0,0,0,0,0,38,0,0,0,30,0,0,0,84,89,80,69,95,75,69,89,58,105,109,112,111,114,116,101,100,46,65,110,111,116,104,101,114,83,104,97,112,101,0,0,16,0,0,0,3,0,0,0,10,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,6,0,0,0,67,73,82,67,76,69,0,0,36,0,0,0,28,0,0,0,105,109,112,111,114,116,101,100,46,65,110,111,116,104,101,114,83,104,97,112,101,46,67,73,82,67,76,69,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,20,0,0,0,2,0,0,0,90,0,0,0,82,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,109,112,111,114,116,46,109,111,106,111,109,0,0,0,0,0,0,38,0,0,0,30,0,0,0,84,89,80,69,95,75,69,89,58,105,109,112,111,114,116,101,100,46,65,110,111,116,104,101,114,83,104,97,112,101,0,0,48,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,8,0,0,0,84,82,73,65,78,71,76,69,38,0,0,0,30,0,0,0,105,109,112,111,114,116,101,100,46,65,110,111,116,104,101,114,83,104,97,112,101,46,84,82,73,65,78,71,76,69,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,
+21,0,0,0,2,0,0,0,90,0,0,0,82,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,109,112,111,114,116,46,109,111,106,111,109,0,0,0,0,0,0,38,0,0,0,30,0,0,0,84,89,80,69,95,75,69,89,58,105,109,112,111,114,116,101,100,46,65,110,111,116,104,101,114,83,104,97,112,101,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,15,0,0,0,89,101,116,65,110,111,116,104,101,114,83,104,97,112,101,0,32,0,0,0,24,0,0,0,105,109,112,111,114,116,101,100,46,89,101,116,65,110,111,116,104,101,114,83,104,97,112,101,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,24,0,0,0,5,0,0,0,90,0,0,0,82,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,109,112,111,114,116,46,109,111,106,111,109,0,0,0,0,0,0,32,0,0,0,3,0,0,0,24,0,0,0,0,0,0,0,136,1,0,0,0,0,0,0,216,2,0,0,0,0,0,0,48,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,40,1,0,0,0,0,0,0,16,0,0,0,0,0,0,0,72,1,0,0,0,0,0,0,20,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,9,0,0,0,82,69,67,84,65,78,71,76,69,0,0,0,0,0,0,0,42,0,0,0,34,0,0,0,105,109,112,111,114,116,101,100,46,89,101,116,65,110,111,116,104,101,114,83,104,97,112,101,46,82,69,67,84,65,78,71,76,69,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,25,0,0,0,2,0,0,0,90,0,0,0,82,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,109,112,111,114,116,46,109,111,106,111,109,0,0,0,0,0,0,41,0,0,0,33,0,0,0,84,89,80,69,95,75,69,89,58,105,109,112,111,114,116,101,100,46,89,101,116,65,110,111,116,104,101,114,83,104,97,112,101,0,0,0,0,0,0,0,16,0,0,0,3,0,0,0,20,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,6,0,0,0,67,73,82,67,76,69,0,0,39,0,0,0,31,0,0,0,105,109,112,111,114,116,101,100,46,89,101,116,65,110,111,116,104,101,114,83,104,97,112,101,46,67,73,82,67,76,69,0,
+24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,26,0,0,0,2,0,0,0,90,0,0,0,82,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,109,112,111,114,116,46,109,111,106,111,109,0,0,0,0,0,0,41,0,0,0,33,0,0,0,84,89,80,69,95,75,69,89,58,105,109,112,111,114,116,101,100,46,89,101,116,65,110,111,116,104,101,114,83,104,97,112,101,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,8,0,0,0,84,82,73,65,78,71,76,69,41,0,0,0,33,0,0,0,105,109,112,111,114,116,101,100,46,89,101,116,65,110,111,116,104,101,114,83,104,97,112,101,46,84,82,73,65,78,71,76,69,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,27,0,0,0,2,0,0,0,90,0,0,0,82,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,105,109,112,111,114,116,46,109,111,106,111,109,0,0,0,0,0,0,41,0,0,0,33,0,0,0,84,89,80,69,95,75,69,89,58,105,109,112,111,114,116,101,100,46,89,101,116,65,110,111,116,104,101,114,83,104,97,112,101,0,0,0,0,0,0,0]);
+
+ // Deserialize RuntimeTypeInfo
+ var bdata = new ByteData.view(serializedRuntimeTypeInfo.buffer);
+ var message = new bindings.Message(bdata, null, serializedRuntimeTypeInfo.length, 0);
+ _runtimeTypeInfo = mojom_types.RuntimeTypeInfo.deserialize(message);
+ return _runtimeTypeInfo;
+}

Powered by Google App Engine
This is Rietveld 408576698