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

Side by Side Diff: mojo/dart/packages/_mojo_for_test_only/lib/test/pingpong_service.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, 9 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 library pingpong_service_mojom; 5 library pingpong_service_mojom;
6 import 'dart:async'; 6 import 'dart:async';
7 import 'dart:collection'; 7 import 'dart:collection';
8 import 'dart:typed_data';
8 import 'package:mojo/bindings.dart' as bindings; 9 import 'package:mojo/bindings.dart' as bindings;
9 import 'package:mojo/core.dart' as core; 10 import 'package:mojo/core.dart' as core;
10 import 'package:mojo/mojo/bindings/types/mojom_types.mojom.dart' as mojom_types; 11 import 'package:mojo/mojo/bindings/types/mojom_types.mojom.dart' as mojom_types;
11 import 'package:mojo/mojo/bindings/types/service_describer.mojom.dart' as servic e_describer; 12 import 'package:mojo/mojo/bindings/types/service_describer.mojom.dart' as servic e_describer;
12 13
13 14
14 15
15 class _PingPongServiceSetClientParams extends bindings.Struct { 16 class _PingPongServiceSetClientParams extends bindings.Struct {
16 static const List<bindings.StructDataHeader> kVersions = const [ 17 static const List<bindings.StructDataHeader> kVersions = const [
17 const bindings.StructDataHeader(16, 0) 18 const bindings.StructDataHeader(16, 0)
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 return "_PingPongServiceSetClientParams(" 76 return "_PingPongServiceSetClientParams("
76 "client: $client" ")"; 77 "client: $client" ")";
77 } 78 }
78 79
79 Map toJson() { 80 Map toJson() {
80 throw new bindings.MojoCodecError( 81 throw new bindings.MojoCodecError(
81 'Object containing handles cannot be encoded to JSON.'); 82 'Object containing handles cannot be encoded to JSON.');
82 } 83 }
83 } 84 }
84 85
85 mojom_types.MojomStruct _pingpongServicePingPongServiceSetClientParams() {
86 return new mojom_types.MojomStruct()
87 ..declData = (new mojom_types.DeclarationData()
88 ..shortName = 'PingPongServiceSetClientParams'
89 ..fullIdentifier = 'test.PingPongService_SetClient_Params')
90 ..fields = <mojom_types.StructField>[
91 new mojom_types.StructField()
92 ..declData = (new mojom_types.DeclarationData()
93 ..shortName = 'Client')
94 ..type = (new mojom_types.Type()
95 ..typeReference = (new mojom_types.TypeReference()
96 ..identifier = 'pingpong_service_PingPongClient__'
97 ..typeKey = 'pingpong_service_PingPongClient__'
98 )),];
99 }
100
101 86
102 class _PingPongServicePingParams extends bindings.Struct { 87 class _PingPongServicePingParams extends bindings.Struct {
103 static const List<bindings.StructDataHeader> kVersions = const [ 88 static const List<bindings.StructDataHeader> kVersions = const [
104 const bindings.StructDataHeader(16, 0) 89 const bindings.StructDataHeader(16, 0)
105 ]; 90 ];
106 int pingValue = 0; 91 int pingValue = 0;
107 92
108 _PingPongServicePingParams() : super(kVersions.last.size); 93 _PingPongServicePingParams() : super(kVersions.last.size);
109 94
110 static _PingPongServicePingParams deserialize(bindings.Message message) { 95 static _PingPongServicePingParams deserialize(bindings.Message message) {
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 "pingValue: $pingValue" ")"; 148 "pingValue: $pingValue" ")";
164 } 149 }
165 150
166 Map toJson() { 151 Map toJson() {
167 Map map = new Map(); 152 Map map = new Map();
168 map["pingValue"] = pingValue; 153 map["pingValue"] = pingValue;
169 return map; 154 return map;
170 } 155 }
171 } 156 }
172 157
173 mojom_types.MojomStruct _pingpongServicePingPongServicePingParams() {
174 return new mojom_types.MojomStruct()
175 ..declData = (new mojom_types.DeclarationData()
176 ..shortName = 'PingPongServicePingParams'
177 ..fullIdentifier = 'test.PingPongService_Ping_Params')
178 ..fields = <mojom_types.StructField>[
179 new mojom_types.StructField()
180 ..declData = (new mojom_types.DeclarationData()
181 ..shortName = 'PingValue')
182 ..type = (new mojom_types.Type()
183 ..simpleType = mojom_types.SimpleType.uint16),];
184 }
185
186 158
187 class _PingPongServicePingTargetUrlParams extends bindings.Struct { 159 class _PingPongServicePingTargetUrlParams extends bindings.Struct {
188 static const List<bindings.StructDataHeader> kVersions = const [ 160 static const List<bindings.StructDataHeader> kVersions = const [
189 const bindings.StructDataHeader(24, 0) 161 const bindings.StructDataHeader(24, 0)
190 ]; 162 ];
191 String url = null; 163 String url = null;
192 int count = 0; 164 int count = 0;
193 165
194 _PingPongServicePingTargetUrlParams() : super(kVersions.last.size); 166 _PingPongServicePingTargetUrlParams() : super(kVersions.last.size);
195 167
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 } 234 }
263 235
264 Map toJson() { 236 Map toJson() {
265 Map map = new Map(); 237 Map map = new Map();
266 map["url"] = url; 238 map["url"] = url;
267 map["count"] = count; 239 map["count"] = count;
268 return map; 240 return map;
269 } 241 }
270 } 242 }
271 243
272 mojom_types.MojomStruct _pingpongServicePingPongServicePingTargetUrlParams() {
273 return new mojom_types.MojomStruct()
274 ..declData = (new mojom_types.DeclarationData()
275 ..shortName = 'PingPongServicePingTargetUrlParams'
276 ..fullIdentifier = 'test.PingPongService_PingTargetURL_Params')
277 ..fields = <mojom_types.StructField>[
278 new mojom_types.StructField()
279 ..declData = (new mojom_types.DeclarationData()
280 ..shortName = 'Url')
281 ..type = (new mojom_types.Type()
282 ..stringType = (new mojom_types.StringType())),
283 new mojom_types.StructField()
284 ..declData = (new mojom_types.DeclarationData()
285 ..shortName = 'Count')
286 ..type = (new mojom_types.Type()
287 ..simpleType = mojom_types.SimpleType.uint16),];
288 }
289
290 244
291 class PingPongServicePingTargetUrlResponseParams extends bindings.Struct { 245 class PingPongServicePingTargetUrlResponseParams extends bindings.Struct {
292 static const List<bindings.StructDataHeader> kVersions = const [ 246 static const List<bindings.StructDataHeader> kVersions = const [
293 const bindings.StructDataHeader(16, 0) 247 const bindings.StructDataHeader(16, 0)
294 ]; 248 ];
295 bool ok = false; 249 bool ok = false;
296 250
297 PingPongServicePingTargetUrlResponseParams() : super(kVersions.last.size); 251 PingPongServicePingTargetUrlResponseParams() : super(kVersions.last.size);
298 252
299 static PingPongServicePingTargetUrlResponseParams deserialize(bindings.Message message) { 253 static PingPongServicePingTargetUrlResponseParams deserialize(bindings.Message message) {
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 "ok: $ok" ")"; 306 "ok: $ok" ")";
353 } 307 }
354 308
355 Map toJson() { 309 Map toJson() {
356 Map map = new Map(); 310 Map map = new Map();
357 map["ok"] = ok; 311 map["ok"] = ok;
358 return map; 312 return map;
359 } 313 }
360 } 314 }
361 315
362 mojom_types.MojomStruct _pingpongServicePingPongServicePingTargetUrlResponsePara ms() {
363 return new mojom_types.MojomStruct()
364 ..declData = (new mojom_types.DeclarationData()
365 ..shortName = 'PingPongServicePingTargetUrlResponseParams'
366 ..fullIdentifier = 'test.PingPongService_PingTargetURL_ResponseParams')
367 ..fields = <mojom_types.StructField>[
368 new mojom_types.StructField()
369 ..declData = (new mojom_types.DeclarationData()
370 ..shortName = 'Ok')
371 ..type = (new mojom_types.Type()
372 ..simpleType = mojom_types.SimpleType.bool),];
373 }
374
375 316
376 class _PingPongServicePingTargetServiceParams extends bindings.Struct { 317 class _PingPongServicePingTargetServiceParams extends bindings.Struct {
377 static const List<bindings.StructDataHeader> kVersions = const [ 318 static const List<bindings.StructDataHeader> kVersions = const [
378 const bindings.StructDataHeader(24, 0) 319 const bindings.StructDataHeader(24, 0)
379 ]; 320 ];
380 Object service = null; 321 Object service = null;
381 int count = 0; 322 int count = 0;
382 323
383 _PingPongServicePingTargetServiceParams() : super(kVersions.last.size); 324 _PingPongServicePingTargetServiceParams() : super(kVersions.last.size);
384 325
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
449 "service: $service" ", " 390 "service: $service" ", "
450 "count: $count" ")"; 391 "count: $count" ")";
451 } 392 }
452 393
453 Map toJson() { 394 Map toJson() {
454 throw new bindings.MojoCodecError( 395 throw new bindings.MojoCodecError(
455 'Object containing handles cannot be encoded to JSON.'); 396 'Object containing handles cannot be encoded to JSON.');
456 } 397 }
457 } 398 }
458 399
459 mojom_types.MojomStruct _pingpongServicePingPongServicePingTargetServiceParams() {
460 return new mojom_types.MojomStruct()
461 ..declData = (new mojom_types.DeclarationData()
462 ..shortName = 'PingPongServicePingTargetServiceParams'
463 ..fullIdentifier = 'test.PingPongService_PingTargetService_Params')
464 ..fields = <mojom_types.StructField>[
465 new mojom_types.StructField()
466 ..declData = (new mojom_types.DeclarationData()
467 ..shortName = 'Service')
468 ..type = (new mojom_types.Type()
469 ..typeReference = (new mojom_types.TypeReference()
470 ..identifier = 'pingpong_service_PingPongService__'
471 ..typeKey = 'pingpong_service_PingPongService__'
472 )),
473 new mojom_types.StructField()
474 ..declData = (new mojom_types.DeclarationData()
475 ..shortName = 'Count')
476 ..type = (new mojom_types.Type()
477 ..simpleType = mojom_types.SimpleType.uint16),];
478 }
479
480 400
481 class PingPongServicePingTargetServiceResponseParams extends bindings.Struct { 401 class PingPongServicePingTargetServiceResponseParams extends bindings.Struct {
482 static const List<bindings.StructDataHeader> kVersions = const [ 402 static const List<bindings.StructDataHeader> kVersions = const [
483 const bindings.StructDataHeader(16, 0) 403 const bindings.StructDataHeader(16, 0)
484 ]; 404 ];
485 bool ok = false; 405 bool ok = false;
486 406
487 PingPongServicePingTargetServiceResponseParams() : super(kVersions.last.size); 407 PingPongServicePingTargetServiceResponseParams() : super(kVersions.last.size);
488 408
489 static PingPongServicePingTargetServiceResponseParams deserialize(bindings.Mes sage message) { 409 static PingPongServicePingTargetServiceResponseParams deserialize(bindings.Mes sage message) {
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
542 "ok: $ok" ")"; 462 "ok: $ok" ")";
543 } 463 }
544 464
545 Map toJson() { 465 Map toJson() {
546 Map map = new Map(); 466 Map map = new Map();
547 map["ok"] = ok; 467 map["ok"] = ok;
548 return map; 468 return map;
549 } 469 }
550 } 470 }
551 471
552 mojom_types.MojomStruct _pingpongServicePingPongServicePingTargetServiceResponse Params() {
553 return new mojom_types.MojomStruct()
554 ..declData = (new mojom_types.DeclarationData()
555 ..shortName = 'PingPongServicePingTargetServiceResponseParams'
556 ..fullIdentifier = 'test.PingPongService_PingTargetService_ResponseParams' )
557 ..fields = <mojom_types.StructField>[
558 new mojom_types.StructField()
559 ..declData = (new mojom_types.DeclarationData()
560 ..shortName = 'Ok')
561 ..type = (new mojom_types.Type()
562 ..simpleType = mojom_types.SimpleType.bool),];
563 }
564
565 472
566 class _PingPongServiceGetPingPongServiceParams extends bindings.Struct { 473 class _PingPongServiceGetPingPongServiceParams extends bindings.Struct {
567 static const List<bindings.StructDataHeader> kVersions = const [ 474 static const List<bindings.StructDataHeader> kVersions = const [
568 const bindings.StructDataHeader(16, 0) 475 const bindings.StructDataHeader(16, 0)
569 ]; 476 ];
570 Object service = null; 477 Object service = null;
571 478
572 _PingPongServiceGetPingPongServiceParams() : super(kVersions.last.size); 479 _PingPongServiceGetPingPongServiceParams() : super(kVersions.last.size);
573 480
574 static _PingPongServiceGetPingPongServiceParams deserialize(bindings.Message m essage) { 481 static _PingPongServiceGetPingPongServiceParams deserialize(bindings.Message m essage) {
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
626 return "_PingPongServiceGetPingPongServiceParams(" 533 return "_PingPongServiceGetPingPongServiceParams("
627 "service: $service" ")"; 534 "service: $service" ")";
628 } 535 }
629 536
630 Map toJson() { 537 Map toJson() {
631 throw new bindings.MojoCodecError( 538 throw new bindings.MojoCodecError(
632 'Object containing handles cannot be encoded to JSON.'); 539 'Object containing handles cannot be encoded to JSON.');
633 } 540 }
634 } 541 }
635 542
636 mojom_types.MojomStruct _pingpongServicePingPongServiceGetPingPongServiceParams( ) {
637 return new mojom_types.MojomStruct()
638 ..declData = (new mojom_types.DeclarationData()
639 ..shortName = 'PingPongServiceGetPingPongServiceParams'
640 ..fullIdentifier = 'test.PingPongService_GetPingPongService_Params')
641 ..fields = <mojom_types.StructField>[
642 new mojom_types.StructField()
643 ..declData = (new mojom_types.DeclarationData()
644 ..shortName = 'Service')
645 ..type = (new mojom_types.Type()
646 ..typeReference = (new mojom_types.TypeReference()
647 ..isInterfaceRequest = true
648 ..identifier = 'pingpong_service_PingPongService__'
649 ..typeKey = 'pingpong_service_PingPongService__'
650 )),];
651 }
652
653 543
654 class _PingPongServiceQuitParams extends bindings.Struct { 544 class _PingPongServiceQuitParams extends bindings.Struct {
655 static const List<bindings.StructDataHeader> kVersions = const [ 545 static const List<bindings.StructDataHeader> kVersions = const [
656 const bindings.StructDataHeader(8, 0) 546 const bindings.StructDataHeader(8, 0)
657 ]; 547 ];
658 548
659 _PingPongServiceQuitParams() : super(kVersions.last.size); 549 _PingPongServiceQuitParams() : super(kVersions.last.size);
660 550
661 static _PingPongServiceQuitParams deserialize(bindings.Message message) { 551 static _PingPongServiceQuitParams deserialize(bindings.Message message) {
662 var decoder = new bindings.Decoder(message); 552 var decoder = new bindings.Decoder(message);
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
701 String toString() { 591 String toString() {
702 return "_PingPongServiceQuitParams("")"; 592 return "_PingPongServiceQuitParams("")";
703 } 593 }
704 594
705 Map toJson() { 595 Map toJson() {
706 Map map = new Map(); 596 Map map = new Map();
707 return map; 597 return map;
708 } 598 }
709 } 599 }
710 600
711 mojom_types.MojomStruct _pingpongServicePingPongServiceQuitParams() {
712 return new mojom_types.MojomStruct()
713 ..declData = (new mojom_types.DeclarationData()
714 ..shortName = 'PingPongServiceQuitParams'
715 ..fullIdentifier = 'test.PingPongService_Quit_Params')
716 ..fields = <mojom_types.StructField>[];
717 }
718
719 601
720 class _PingPongClientPongParams extends bindings.Struct { 602 class _PingPongClientPongParams extends bindings.Struct {
721 static const List<bindings.StructDataHeader> kVersions = const [ 603 static const List<bindings.StructDataHeader> kVersions = const [
722 const bindings.StructDataHeader(16, 0) 604 const bindings.StructDataHeader(16, 0)
723 ]; 605 ];
724 int pongValue = 0; 606 int pongValue = 0;
725 607
726 _PingPongClientPongParams() : super(kVersions.last.size); 608 _PingPongClientPongParams() : super(kVersions.last.size);
727 609
728 static _PingPongClientPongParams deserialize(bindings.Message message) { 610 static _PingPongClientPongParams deserialize(bindings.Message message) {
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
781 "pongValue: $pongValue" ")"; 663 "pongValue: $pongValue" ")";
782 } 664 }
783 665
784 Map toJson() { 666 Map toJson() {
785 Map map = new Map(); 667 Map map = new Map();
786 map["pongValue"] = pongValue; 668 map["pongValue"] = pongValue;
787 return map; 669 return map;
788 } 670 }
789 } 671 }
790 672
791 mojom_types.MojomStruct _pingpongServicePingPongClientPongParams() {
792 return new mojom_types.MojomStruct()
793 ..declData = (new mojom_types.DeclarationData()
794 ..shortName = 'PingPongClientPongParams'
795 ..fullIdentifier = 'test.PingPongClient_Pong_Params')
796 ..fields = <mojom_types.StructField>[
797 new mojom_types.StructField()
798 ..declData = (new mojom_types.DeclarationData()
799 ..shortName = 'PongValue')
800 ..type = (new mojom_types.Type()
801 ..simpleType = mojom_types.SimpleType.uint16),];
802 }
803
804
805 const int _PingPongService_setClientName = 0; 673 const int _PingPongService_setClientName = 0;
806 const int _PingPongService_pingName = 1; 674 const int _PingPongService_pingName = 1;
807 const int _PingPongService_pingTargetUrlName = 2; 675 const int _PingPongService_pingTargetUrlName = 2;
808 const int _PingPongService_pingTargetServiceName = 3; 676 const int _PingPongService_pingTargetServiceName = 3;
809 const int _PingPongService_getPingPongServiceName = 4; 677 const int _PingPongService_getPingPongServiceName = 4;
810 const int _PingPongService_quitName = 5; 678 const int _PingPongService_quitName = 5;
811 679
812 mojom_types.MojomInterface _pingpongServicePingPongService() {
813 return new mojom_types.MojomInterface()
814 ..declData = (new mojom_types.DeclarationData()
815 ..shortName = 'PingPongService'
816 ..fullIdentifier = 'test.PingPongService')
817 ..serviceName_ = 'PingPongService'
818 ..methods = <int, mojom_types.MojomMethod>{
819 _PingPongService_setClientName: new mojom_types.MojomMethod()
820 ..declData = (new mojom_types.DeclarationData()
821 ..shortName = 'SetClient')
822 ..ordinal = _PingPongService_setClientName
823 ..parameters = _pingpongServicePingPongServiceSetClientParams(),
824 _PingPongService_pingName: new mojom_types.MojomMethod()
825 ..declData = (new mojom_types.DeclarationData()
826 ..shortName = 'Ping')
827 ..ordinal = _PingPongService_pingName
828 ..parameters = _pingpongServicePingPongServicePingParams(),
829 _PingPongService_pingTargetUrlName: new mojom_types.MojomMethod()
830 ..declData = (new mojom_types.DeclarationData()
831 ..shortName = 'PingTargetUrl')
832 ..ordinal = _PingPongService_pingTargetUrlName
833 ..responseParams = _pingpongServicePingPongServicePingTargetUrlResponseP arams()
834 ..parameters = _pingpongServicePingPongServicePingTargetUrlParams(),
835 _PingPongService_pingTargetServiceName: new mojom_types.MojomMethod()
836 ..declData = (new mojom_types.DeclarationData()
837 ..shortName = 'PingTargetService')
838 ..ordinal = _PingPongService_pingTargetServiceName
839 ..responseParams = _pingpongServicePingPongServicePingTargetServiceRespo nseParams()
840 ..parameters = _pingpongServicePingPongServicePingTargetServiceParams(),
841 _PingPongService_getPingPongServiceName: new mojom_types.MojomMethod()
842 ..declData = (new mojom_types.DeclarationData()
843 ..shortName = 'GetPingPongService')
844 ..ordinal = _PingPongService_getPingPongServiceName
845 ..parameters = _pingpongServicePingPongServiceGetPingPongServiceParams() ,
846 _PingPongService_quitName: new mojom_types.MojomMethod()
847 ..declData = (new mojom_types.DeclarationData()
848 ..shortName = 'Quit')
849 ..ordinal = _PingPongService_quitName
850 ..parameters = _pingpongServicePingPongServiceQuitParams(),
851 };
852 }
853
854 class _PingPongServiceServiceDescription implements service_describer.ServiceDes cription { 680 class _PingPongServiceServiceDescription implements service_describer.ServiceDes cription {
855 dynamic getTopLevelInterface([Function responseFactory]) => 681 dynamic getTopLevelInterface([Function responseFactory]){
856 responseFactory(_pingpongServicePingPongService()); 682 var interfaceTypeKey = getRuntimeTypeInfo().servicesByName["test::PingPongSe rvice"].topLevelInterface;
683 var userDefinedType = getAllMojomTypeDefinitions()[interfaceTypeKey];
684 return responseFactory(userDefinedType.interfaceType);
685 }
857 686
858 dynamic getTypeDefinition(String typeKey, [Function responseFactory]) => 687 dynamic getTypeDefinition(String typeKey, [Function responseFactory]) =>
859 responseFactory(getAllMojomTypeDefinitions()[typeKey]); 688 responseFactory(getAllMojomTypeDefinitions()[typeKey]);
860 689
861 dynamic getAllTypeDefinitions([Function responseFactory]) => 690 dynamic getAllTypeDefinitions([Function responseFactory]) =>
862 responseFactory(getAllMojomTypeDefinitions()); 691 responseFactory(getAllMojomTypeDefinitions());
863 } 692 }
864 693
865 abstract class PingPongService { 694 abstract class PingPongService {
866 static const String serviceName = "test::PingPongService"; 695 static const String serviceName = "test::PingPongService";
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after
1192 static service_describer.ServiceDescription get serviceDescription { 1021 static service_describer.ServiceDescription get serviceDescription {
1193 if (_cachedServiceDescription == null) { 1022 if (_cachedServiceDescription == null) {
1194 _cachedServiceDescription = new _PingPongServiceServiceDescription(); 1023 _cachedServiceDescription = new _PingPongServiceServiceDescription();
1195 } 1024 }
1196 return _cachedServiceDescription; 1025 return _cachedServiceDescription;
1197 } 1026 }
1198 } 1027 }
1199 1028
1200 const int _PingPongClient_pongName = 0; 1029 const int _PingPongClient_pongName = 0;
1201 1030
1202 mojom_types.MojomInterface _pingpongServicePingPongClient() {
1203 return new mojom_types.MojomInterface()
1204 ..declData = (new mojom_types.DeclarationData()
1205 ..shortName = 'PingPongClient'
1206 ..fullIdentifier = 'test.PingPongClient')
1207 ..serviceName_ = 'PingPongClient'
1208 ..methods = <int, mojom_types.MojomMethod>{
1209 _PingPongClient_pongName: new mojom_types.MojomMethod()
1210 ..declData = (new mojom_types.DeclarationData()
1211 ..shortName = 'Pong')
1212 ..ordinal = _PingPongClient_pongName
1213 ..parameters = _pingpongServicePingPongClientPongParams(),
1214 };
1215 }
1216
1217 class _PingPongClientServiceDescription implements service_describer.ServiceDesc ription { 1031 class _PingPongClientServiceDescription implements service_describer.ServiceDesc ription {
1218 dynamic getTopLevelInterface([Function responseFactory]) => 1032 dynamic getTopLevelInterface([Function responseFactory]) =>
1219 responseFactory(_pingpongServicePingPongClient()); 1033 responseFactory(null);
1220 1034
1221 dynamic getTypeDefinition(String typeKey, [Function responseFactory]) => 1035 dynamic getTypeDefinition(String typeKey, [Function responseFactory]) =>
1222 responseFactory(getAllMojomTypeDefinitions()[typeKey]); 1036 responseFactory(null);
1223 1037
1224 dynamic getAllTypeDefinitions([Function responseFactory]) => 1038 dynamic getAllTypeDefinitions([Function responseFactory]) =>
1225 responseFactory(getAllMojomTypeDefinitions()); 1039 responseFactory(null);
1226 } 1040 }
1227 1041
1228 abstract class PingPongClient { 1042 abstract class PingPongClient {
1229 static const String serviceName = null; 1043 static const String serviceName = null;
1230 void pong(int pongValue); 1044 void pong(int pongValue);
1231 } 1045 }
1232 1046
1233 1047
1234 class _PingPongClientProxyImpl extends bindings.Proxy { 1048 class _PingPongClientProxyImpl extends bindings.Proxy {
1235 _PingPongClientProxyImpl.fromEndpoint( 1049 _PingPongClientProxyImpl.fromEndpoint(
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
1396 static service_describer.ServiceDescription _cachedServiceDescription; 1210 static service_describer.ServiceDescription _cachedServiceDescription;
1397 static service_describer.ServiceDescription get serviceDescription { 1211 static service_describer.ServiceDescription get serviceDescription {
1398 if (_cachedServiceDescription == null) { 1212 if (_cachedServiceDescription == null) {
1399 _cachedServiceDescription = new _PingPongClientServiceDescription(); 1213 _cachedServiceDescription = new _PingPongClientServiceDescription();
1400 } 1214 }
1401 return _cachedServiceDescription; 1215 return _cachedServiceDescription;
1402 } 1216 }
1403 } 1217 }
1404 1218
1405 1219
1406 Map<String, mojom_types.UserDefinedType> _initDescriptions() { 1220 mojom_types.RuntimeTypeInfo getRuntimeTypeInfo() => _runtimeTypeInfo ??
1407 var map = new HashMap<String, mojom_types.UserDefinedType>(); 1221 _initRuntimeTypeInfo();
1408 map["pingpong_service_PingPongService_SetClient_Params__"] = 1222
1409 new mojom_types.UserDefinedType() 1223 Map<String, mojom_types.UserDefinedType> getAllMojomTypeDefinitions() {
1410 ..structType = _pingpongServicePingPongServiceSetClientParams(); 1224 return getRuntimeTypeInfo().typeMap;
1411 map["pingpong_service_PingPongService_Ping_Params__"] =
1412 new mojom_types.UserDefinedType()
1413 ..structType = _pingpongServicePingPongServicePingParams();
1414 map["pingpong_service_PingPongService_PingTargetURL_Params__"] =
1415 new mojom_types.UserDefinedType()
1416 ..structType = _pingpongServicePingPongServicePingTargetUrlParams();
1417 map["pingpong_service_PingPongService_PingTargetURL_ResponseParams__"] =
1418 new mojom_types.UserDefinedType()
1419 ..structType = _pingpongServicePingPongServicePingTargetUrlResponseParams( );
1420 map["pingpong_service_PingPongService_PingTargetService_Params__"] =
1421 new mojom_types.UserDefinedType()
1422 ..structType = _pingpongServicePingPongServicePingTargetServiceParams();
1423 map["pingpong_service_PingPongService_PingTargetService_ResponseParams__"] =
1424 new mojom_types.UserDefinedType()
1425 ..structType = _pingpongServicePingPongServicePingTargetServiceResponsePar ams();
1426 map["pingpong_service_PingPongService_GetPingPongService_Params__"] =
1427 new mojom_types.UserDefinedType()
1428 ..structType = _pingpongServicePingPongServiceGetPingPongServiceParams();
1429 map["pingpong_service_PingPongService_Quit_Params__"] =
1430 new mojom_types.UserDefinedType()
1431 ..structType = _pingpongServicePingPongServiceQuitParams();
1432 map["pingpong_service_PingPongClient_Pong_Params__"] =
1433 new mojom_types.UserDefinedType()
1434 ..structType = _pingpongServicePingPongClientPongParams();
1435 map["pingpong_service_PingPongService__"] =
1436 new mojom_types.UserDefinedType()
1437 ..interfaceType = _pingpongServicePingPongService();
1438 map["pingpong_service_PingPongClient__"] =
1439 new mojom_types.UserDefinedType()
1440 ..interfaceType = _pingpongServicePingPongClient();
1441 return map;
1442 } 1225 }
1443 1226
1444 var _mojomDesc; 1227 var _runtimeTypeInfo;
1445 Map<String, mojom_types.UserDefinedType> getAllMojomTypeDefinitions() { 1228 mojom_types.RuntimeTypeInfo _initRuntimeTypeInfo() {
1446 if (_mojomDesc == null) { 1229 // serializedRuntimeTypeInfo contains the bytes of the Mojo serialization of
1447 _mojomDesc = _initDescriptions(); 1230 // a mojom_types.RuntimeTypeInfo struct describing the Mojom types in this
1448 } 1231 // file.
1449 return _mojomDesc; 1232 var serializedRuntimeTypeInfo = new Uint8List.fromList(const [24,0,0,0,0,0,0,0 ,16,0,0,0,0,0,0,0,8,1,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,56,0,0,0,0,0 ,0,0,16,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,29,0,0,0,21,0,0,0,116,101,115,116,58,58,80 ,105,110,103,80,111,110,103,83,101,114,118,105,99,101,0,0,0,16,0,0,0,1,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,48,0,0,0,0,0,0,0,37,0,0,0,29,0,0, 0,84,89,80,69,95,75,69,89,58,116,101,115,116,46,80,105,110,103,80,111,110,103,83 ,101,114,118,105,99,101,0,0,0,24,0,0,0,2,0,0,0,16,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0 ,36,0,0,0,28,0,0,0,84,89,80,69,95,75,69,89,58,116,101,115,116,46,80,105,110,103, 80,111,110,103,67,108,105,101,110,116,0,0,0,0,37,0,0,0,29,0,0,0,84,89,80,69,95,7 5,69,89,58,116,101,115,116,46,80,105,110,103,80,111,110,103,83,101,114,118,105,9 9,101,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,112,0,0,0,0,0,0,0,24,0,0,0,2,0,0,0 ,16,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,37,0,0,0,29,0,0,0,84,89,80,69,95,75,69,89,58, 116,101,115,116,46,80,105,110,103,80,111,110,103,83,101,114,118,105,99,101,0,0,0 ,36,0,0,0,28,0,0,0,84,89,80,69,95,75,69,89,58,116,101,115,116,46,80,105,110,103, 80,111,110,103,67,108,105,101,110,116,0,0,0,0,40,0,0,0,2,0,0,0,16,0,0,0,3,0,0,0, 24,0,0,0,0,0,0,0,16,0,0,0,3,0,0,0,40,27,0,0,0,0,0,0,32,0,0,0,0,0,0,0,24,0,0,0,0, 0,0,0,112,1,0,0,0,0,0,0,136,1,0,0,0,0,0,0,72,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0, 0,0,255,255,255,255,152,0,0,0,0,0,0,0,168,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0, 184,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,1,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,16,0,0,0,7,0,0,0,32,0,0,0,0,0,0,0,19,0,0,0, 11,0,0,0,83,101,114,118,105,99,101,78,97,109,101,0,0,0,0,0,29,0,0,0,21,0,0,0,116 ,101,115,116,58,58,80,105,110,103,80,111,110,103,83,101,114,118,105,99,101,0,0,0 ,23,0,0,0,15,0,0,0,80,105,110,103,80,111,110,103,83,101,114,118,105,99,101,0,28, 0,0,0,20,0,0,0,116,101,115,116,46,80,105,110,103,80,111,110,103,83,101,114,118,1 05,99,101,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,8,0,0,0,10,0,0,0,95,0,0,0,87 ,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,100,97,114,116,47,97,112,112,116,101,115 ,116,115,47,116,101,115,116,95,97,112,112,115,47,105,110,116,101,114,102,97,99,1 01,115,47,112,105,110,103,112,111,110,103,95,115,101,114,118,105,99,101,46,109,1 11,106,111,109,0,29,0,0,0,21,0,0,0,116,101,115,116,58,58,80,105,110,103,80,111,1 10,103,83,101,114,118,105,99,101,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,40,0,0, 0,0,0,0,0,32,0,0,0,6,0,0,0,3,0,0,0,4,0,0,0,5,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,56,0, 0,0,6,0,0,0,48,0,0,0,0,0,0,0,224,6,0,0,0,0,0,0,96,10,0,0,0,0,0,0,80,12,0,0,0,0,0 ,0,192,15,0,0,0,0,0,0,200,18,0,0,0,0,0,0,40,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,248,0 ,0,0,0,0,0,0,
1233 128,4,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,2 55,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,25,0,0,0,17,0,0,0,80,105,110,103,84,97,114, 103,101,116,83,101,114,118,105,99,101,0,0,0,0,0,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,95,0,0,0,87,0,0,0,47,104,111,109,101,47,114,117,100,111,1 09,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,100,97 ,114,116,47,97,112,112,116,101,115,116,115,47,116,101,115,116,95,97,112,112,115, 47,105,110,116,101,114,102,97,99,101,115,47,112,105,110,103,112,111,110,103,95,1 15,101,114,118,105,99,101,46,109,111,106,111,109,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,0,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,33,0,0,0,25,0,0,0,80,105,110,103,84,97 ,114,103,101,116,83,101,114,118,105,99,101,45,114,101,113,117,101,115,116,0,0,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,95,0,0,0,87,0,0,0,47,1 04,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,100,97,114,116,47,97,112,112,116,101,115,116,115,47 ,116,101,115,116,95,97,112,112,115,47,105,110,116,101,114,102,97,99,101,115,47,1 12,105,110,103,112,111,110,103,95,115,101,114,118,105,99,101,46,109,111,106,111, 109,0,24,0,0,0,2,0,0,0,16,0,0,0,0,0,0,0,112,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,5,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,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,15,0,0,0,7,0,0,0,115,101,114,118,105,99,101,0,24,0,0,0,0,0,0,0 ,16,0,0,0,0,0,0,0,21,0,0,0,36,0,0,0,95,0,0,0,87,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,100,97,114,116,47,97,112,112,116,101,115,116,115,47,116,101,115,116,95,97 ,112,112,115,47,105,110,116,101,114,102,97,99,101,115,47,112,105,110,103,112,111 ,110,103,95,115,101,114,118,105,99,101,46,109,111,106,111,109,0,32,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,23,0,0,0,15,0,0,0,80,105,110, 103,80,111,110,103,83,101,114,118,105,99,101,0,37,0,0,0,29,0,0,0,84,89,80,69,95, 75,69,89,58,116,101,115,116,46,80,105,110,103,80,111,110,103,83,101,114,118,105, 99,101,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,8,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,
1234 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,5,0,0,0,99,111,117,110,116,0,0,0,24,0,0 ,0,0,0,0,0,16,0,0,0,0,0,0,0,21,0,0,0,52,0,0,0,95,0,0,0,87,0,0,0,47,104,111,109,1 01,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,10 9,111,106,111,47,100,97,114,116,47,97,112,112,116,101,115,116,115,47,116,101,115 ,116,95,97,112,112,115,47,105,110,116,101,114,102,97,99,101,115,47,112,105,110,1 03,112,111,110,103,95,115,101,114,118,105,99,101,46,109,111,106,111,109,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,0,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,34,0,0,0,26,0,0 ,0,80,105,110,103,84,97,114,103,101,116,83,101,114,118,105,99,101,45,114,101,115 ,112,111,110,115,101,0,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,95,0,0,0,87,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,4 7,109,111,106,111,47,115,114,99,47,109,111,106,111,47,100,97,114,116,47,97,112,1 12,116,101,115,116,115,47,116,101,115,116,95,97,112,112,115,47,105,110,116,101,1 14,102,97,99,101,115,47,112,105,110,103,112,111,110,103,95,115,101,114,118,105,9 9,101,46,109,111,106,111,109,0,16,0,0,0,1,0,0,0,8,0,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,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,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,10,0,0,0,2,0,0,0,111,107,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0 ,0,0,0,0,0,0,21,0,0,0,68,0,0,0,95,0,0,0,87,0,0,0,47,104,111,109,101,47,114,117,1 00,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,4 7,100,97,114,116,47,97,112,112,116,101,115,116,115,47,116,101,115,116,95,97,112, 112,115,47,105,110,116,101,114,102,97,99,101,115,47,112,105,110,103,112,111,110, 103,95,115,101,114,118,105,99,101,46,109,111,106,111,109,0,40,0,0,0,0,0,0,0,32,0 ,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,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,26,0,0,0,18,0, 0,0,71,101,116,80,105,110,103,80,111,110,103,83,101,114,118,105,99,101,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,2,0,0,0,95,0,0,0,87,0,0,0,47,104,1 11,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,100,97,114,116,47,97,112,112,116,101,115,116,115,47,116 ,101,115,116,95,97,112,112,115,47,105,110,116,101,114,102,97,99,101,115,47,112,1 05,110,103,112,111,110,103,95,115,101,114,118,105,99,101,46,109,111,106,111,109, 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,
1235 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,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,26,0, 0,0,71,101,116,80,105,110,103,80,111,110,103,83,101,114,118,105,99,101,45,114,10 1,113,117,101,115,116,0,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,95,0,0,0,87,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,100,97,114,116,47,97,112, 112,116,101,115,116,115,47,116,101,115,116,95,97,112,112,115,47,105,110,116,101, 114,102,97,99,101,115,47,112,105,110,103,112,111,110,103,95,115,101,114,118,105, 99,101,46,109,111,106,111,109,0,16,0,0,0,1,0,0,0,8,0,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,5,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,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,4 8,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,15,0,0,0,7,0,0,0,115,101,114,118,105,99,101,0,24,0,0,0, 0,0,0,0,16,0,0,0,0,0,0,0,24,0,0,0,38,0,0,0,95,0,0,0,87,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,1 11,106,111,47,100,97,114,116,47,97,112,112,116,101,115,116,115,47,116,101,115,11 6,95,97,112,112,115,47,105,110,116,101,114,102,97,99,101,115,47,112,105,110,103, 112,111,110,103,95,115,101,114,118,105,99,101,46,109,111,106,111,109,0,32,0,0,0, 0,0,0,0,2,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,23,0,0,0,15,0,0,0,80,1 05,110,103,80,111,110,103,83,101,114,118,105,99,101,0,37,0,0,0,29,0,0,0,84,89,80 ,69,95,75,69,89,58,116,101,115,116,46,80,105,110,103,80,111,110,103,83,101,114,1 18,105,99,101,0,0,0,40,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,5,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,12,0,0,0,4,0,0,0,81,117,105,116,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,95,0,0,0,87,0,0,0,47,104,111,109,101,47,11 4,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,10 6,111,47,100,97,114,116,47,97,112,112,116,101,115,116,115,47,116,101,115,116,95, 97,112,112,115,47,105,110,116,101,114,102,97,99,101,115,47,112,105,110,103,112,1 11,110,103,95,115,101,114,118,105,99,101,46,109,111,106,111,109,0,32,0,0,0,0,0,0 ,0,24,0,0,0,0,0,0,0,232,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,20,0,0,0,12,0,0,0,81,11 7,105,116,45,114,101,113,117,101,115,116,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,
1236 95,0,0,0,87,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,1 09,111,106,111,47,115,114,99,47,109,111,106,111,47,100,97,114,116,47,97,112,112, 116,101,115,116,115,47,116,101,115,116,95,97,112,112,115,47,105,110,116,101,114, 102,97,99,101,115,47,112,105,110,103,112,111,110,103,95,115,101,114,118,105,99,1 01,46,109,111,106,111,109,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,24 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,48,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,83,101,116,6 7,108,105,101,110,116,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,10,0,0,0,2 ,0,0,0,95,0,0,0,87,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,1 14,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,100,97,114,116,47,97,1 12,112,116,101,115,116,115,47,116,101,115,116,95,97,112,112,115,47,105,110,116,1 01,114,102,97,99,101,115,47,112,105,110,103,112,111,110,103,95,115,101,114,118,1 05,99,101,46,109,111,106,111,109,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,25,0,0,0,17,0,0,0,83,101,116,67,108,105,101,110,116,45 ,114,101,113,117,101,115,116,0,0,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,95,0,0,0,87,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,100,97,114,116,4 7,97,112,112,116,101,115,116,115,47,116,101,115,116,95,97,112,112,115,47,105,110 ,116,101,114,102,97,99,101,115,47,112,105,110,103,112,111,110,103,95,115,101,114 ,118,105,99,101,46,109,111,106,111,109,0,16,0,0,0,1,0,0,0,8,0,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,5,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,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,14,0,0,0,6,0,0,0,99,108,105,101,110,116,0,0,24 ,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,10,0,0,0,27,0,0,0,95,0,0,0,87,0,0,0,47,104,111,1 09,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,4 7,109,111,106,111,47,100,97,114,116,47,97,112,112,116,101,115,116,115,47,116,101 ,115,116,95,97,112,112,115,47,105,110,116,101,114,102,97,99,101,115,47,112,105,1 10,103,112,111,110,103,95,115,101,114,118,105,99,101,46,109,111,106,111,109,0,32 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,22,0,0,0,14,0,0 ,0,80,105,110,103,80,111,110,103,67,108,105,101,110,116,0,0,36,0,0,0,28,0,0,0,84 ,89,80,69,95,75,69,89,58,116,101,115,116,46,80,105,110,103,80,111,110,103,67,108 ,105,101,110,116,0,0,0,0,40,0,0,0,0,0,0,0,
1237 32,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,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,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,12,0,0,0,4 ,0,0,0,80,105,110,103,0,0,0,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 ,95,0,0,0,87,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,100,97,114,116,47,97,112,112 ,116,101,115,116,115,47,116,101,115,116,95,97,112,112,115,47,105,110,116,101,114 ,102,97,99,101,115,47,112,105,110,103,112,111,110,103,95,115,101,114,118,105,99, 101,46,109,111,106,111,109,0,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,232,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,20,0,0,0,12,0,0,0,80,105,110,103,45,114,101,113,117,101,115, 116,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,95,0,0,0,87,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,100,97,114,116,47,97,112,112,116,101,115,116,11 5,47,116,101,115,116,95,97,112,112,115,47,105,110,116,101,114,102,97,99,101,115, 47,112,105,110,103,112,111,110,103,95,115,101,114,118,105,99,101,46,109,111,106, 111,109,0,16,0,0,0,1,0,0,0,8,0,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,8,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,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,18,0,0,0,10,0,0,0,112,105,110,103,95,118,97,108,117,101,0,0,0,0,0,0,24,0,0,0,0, 0,0,0,16,0,0,0,0,0,0,0,13,0,0,0,14,0,0,0,95,0,0,0,87,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,100,97,114,116,47,97,112,112,116,101,115,116,115,47,116,101,115,116, 95,97,112,112,115,47,105,110,116,101,114,102,97,99,101,115,47,112,105,110,103,11 2,111,110,103,95,115,101,114,118,105,99,101,46,109,111,106,111,109,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,32,4,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,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,21, 0,0,0,13,0,0,0,80,105,110,103,84,97,114,103,101,116,85,82,76,0,0,0,24,0,0,0,0,0, 0,0,16,0,0,0,0,0,0,0,17,0,0,0,2,0,0,0,95,0,0,0,87,0,0,0,47,104,111,109,101,47,11 4,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,10 6,111,47,100,97,114,116,47,97,112,112,116,101,115,116,115,47,116,101,115,116,95, 97,112,112,115,47,105,110,
1238 116,101,114,102,97,99,101,115,47,112,105,110,103,112,111,110,103,95,115,101,114, 118,105,99,101,46,109,111,106,111,109,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,29,0,0,0,21,0,0,0,80,105,110,103,84,97,114,103,10 1,116,85,82,76,45,114,101,113,117,101,115,116,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,95,0,0,0,87,0,0,0,47,104,111,109,101,47,114,117,100,111,10 9,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,100,97, 114,116,47,97,112,112,116,101,115,116,115,47,116,101,115,116,95,97,112,112,115,4 7,105,110,116,101,114,102,97,99,101,115,47,112,105,110,103,112,111,110,103,95,11 5,101,114,118,105,99,101,46,109,111,106,111,109,0,24,0,0,0,2,0,0,0,16,0,0,0,0,0, 0,0,32,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,1,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,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,11,0,0,0,3,0,0,0,11 7,114,108,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,17,0,0,0,23,0,0,0,95,0,0,0 ,87,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,1 06,111,47,115,114,99,47,109,111,106,111,47,100,97,114,116,47,97,112,112,116,101, 115,116,115,47,116,101,115,116,95,97,112,112,115,47,105,110,116,101,114,102,97,9 9,101,115,47,112,105,110,103,112,111,110,103,95,115,101,114,118,105,99,101,46,10 9,111,106,111,109,0,16,0,0,0,0,0,0,0,0,0,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,8,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,13,0,0,0,5,0,0,0,99,111,117,110,116,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0 ,0,0,0,17,0,0,0,35,0,0,0,95,0,0,0,87,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,100, 97,114,116,47,97,112,112,116,101,115,116,115,47,116,101,115,116,95,97,112,112,11 5,47,105,110,116,101,114,102,97,99,101,115,47,112,105,110,103,112,111,110,103,95 ,115,101,114,118,105,99,101,46,109,111,106,111,109,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,30,0,0,0,22,0,0,0,80,105,110,103,84, 97,114,103,101,116,85,82,76,45,114,101,115,112,111,110,115,101,0,0,24,0,0,0,0,0, 0,0,
1239 16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,87,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,100,97,114,116,47,97,112,112,116,101,115,116,115,47,116,101,115,116,95,97,11 2,112,115,47,105,110,116,101,114,102,97,99,101,115,47,112,105,110,103,112,111,11 0,103,95,115,101,114,118,105,99,101,46,109,111,106,111,109,0,16,0,0,0,1,0,0,0,8, 0,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,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,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,10,0,0,0,2,0,0,0,111,107,0,0 ,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,17,0,0,0,51,0,0,0,95,0,0,0,87,0,0,0,4 7,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,1 15,114,99,47,109,111,106,111,47,100,97,114,116,47,97,112,112,116,101,115,116,115 ,47,116,101,115,116,95,97,112,112,115,47,105,110,116,101,114,102,97,99,101,115,4 7,112,105,110,103,112,111,110,103,95,115,101,114,118,105,99,101,46,109,111,106,1 11,109,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,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,2 2,0,0,0,14,0,0,0,80,105,110,103,80,111,110,103,67,108,105,101,110,116,0,0,27,0,0 ,0,19,0,0,0,116,101,115,116,46,80,105,110,103,80,111,110,103,67,108,105,101,110, 116,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,30,0,0,0,10,0,0,0,95,0,0,0,87,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,100,97,114,116,47,97,112,112,116,101,115,11 6,115,47,116,101,115,116,95,97,112,112,115,47,105,110,116,101,114,102,97,99,101, 115,47,112,105,110,103,112,111,110,103,95,115,101,114,118,105,99,101,46,109,111, 106,111,109,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,232,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,12,0,0,0,4,0,0,0,80,11 1,110,103,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,31,0,0,0,2,0,0,0,95,0,0,0,87 ,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,100,97,114,116,47,97,112,112,116,101,115 ,116,115,47,116,101,115,116,95,97,112,112,115,47,105,110,116,101,114,102,97,99,1 01,115,47,112,105,110,103,112,111,110,103,95,115,101,114,118,105,99,101,46,109,1 11,106,111,109,0,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,
1240 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,20,0,0,0,12,0,0,0,80,111,110,103,45,114,101,113,117,101,115,1 16,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,95,0,0,0,87,0,0,0,4 7,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,1 15,114,99,47,109,111,106,111,47,100,97,114,116,47,97,112,112,116,101,115,116,115 ,47,116,101,115,116,95,97,112,112,115,47,105,110,116,101,114,102,97,99,101,115,4 7,112,105,110,103,112,111,110,103,95,115,101,114,118,105,99,101,46,109,111,106,1 11,109,0,16,0,0,0,1,0,0,0,8,0,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,8,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,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 18,0,0,0,10,0,0,0,112,111,110,103,95,118,97,108,117,101,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,14,0,0,0,95,0,0,0,87,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,100,97,114,116,47,97,112,112,116,101,115,116,115,47,116,101,115,116,9 5,97,112,112,115,47,105,110,116,101,114,102,97,99,101,115,47,112,105,110,103,112 ,111,110,103,95,115,101,114,118,105,99,101,46,109,111,106,111,109,0]);
1241
1242 // Deserialize RuntimeTypeInfo
1243 var bdata = new ByteData.view(serializedRuntimeTypeInfo.buffer);
1244 var message = new bindings.Message(bdata, null, serializedRuntimeTypeInfo.leng th, 0);
1245 _runtimeTypeInfo = mojom_types.RuntimeTypeInfo.deserialize(message);
1246 return _runtimeTypeInfo;
1450 } 1247 }
1451
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698