| Index: mojo/dart/packages/_mojo_for_test_only/lib/mojo/test/validation_test_interfaces.mojom.dart
|
| diff --git a/mojo/dart/packages/_mojo_for_test_only/lib/mojo/test/validation_test_interfaces.mojom.dart b/mojo/dart/packages/_mojo_for_test_only/lib/mojo/test/validation_test_interfaces.mojom.dart
|
| index f40876c85c89d29e7c0e4b0e0c4599cb381402ab..7fa9ed338f32bcbd64e4b7414093e370c3712563 100644
|
| --- a/mojo/dart/packages/_mojo_for_test_only/lib/mojo/test/validation_test_interfaces.mojom.dart
|
| +++ b/mojo/dart/packages/_mojo_for_test_only/lib/mojo/test/validation_test_interfaces.mojom.dart
|
| @@ -4159,13 +4159,13 @@ mojom_types.MojomInterface _validationTestInterfacesInterfaceA() {
|
|
|
| class _InterfaceAServiceDescription implements service_describer.ServiceDescription {
|
| dynamic getTopLevelInterface([Function responseFactory]) =>
|
| - _validationTestInterfacesInterfaceA();
|
| + responseFactory(_validationTestInterfacesInterfaceA());
|
|
|
| dynamic getTypeDefinition(String typeKey, [Function responseFactory]) =>
|
| - getAllMojomTypeDefinitions()[typeKey];
|
| + responseFactory(getAllMojomTypeDefinitions()[typeKey]);
|
|
|
| dynamic getAllTypeDefinitions([Function responseFactory]) =>
|
| - getAllMojomTypeDefinitions();
|
| + responseFactory(getAllMojomTypeDefinitions());
|
| }
|
|
|
| abstract class InterfaceA {
|
| @@ -4321,7 +4321,7 @@ class InterfaceAStub extends bindings.Stub {
|
|
|
| int get version => 0;
|
|
|
| - service_describer.ServiceDescription get serviceDescription =>
|
| + static service_describer.ServiceDescription get serviceDescription =>
|
| new _InterfaceAServiceDescription();
|
| }
|
|
|
| @@ -4351,13 +4351,13 @@ mojom_types.MojomInterface _validationTestInterfacesBoundsCheckTestInterface() {
|
|
|
| class _BoundsCheckTestInterfaceServiceDescription implements service_describer.ServiceDescription {
|
| dynamic getTopLevelInterface([Function responseFactory]) =>
|
| - _validationTestInterfacesBoundsCheckTestInterface();
|
| + responseFactory(_validationTestInterfacesBoundsCheckTestInterface());
|
|
|
| dynamic getTypeDefinition(String typeKey, [Function responseFactory]) =>
|
| - getAllMojomTypeDefinitions()[typeKey];
|
| + responseFactory(getAllMojomTypeDefinitions()[typeKey]);
|
|
|
| dynamic getAllTypeDefinitions([Function responseFactory]) =>
|
| - getAllMojomTypeDefinitions();
|
| + responseFactory(getAllMojomTypeDefinitions());
|
| }
|
|
|
| abstract class BoundsCheckTestInterface {
|
| @@ -4585,7 +4585,7 @@ class BoundsCheckTestInterfaceStub extends bindings.Stub {
|
|
|
| int get version => 0;
|
|
|
| - service_describer.ServiceDescription get serviceDescription =>
|
| + static service_describer.ServiceDescription get serviceDescription =>
|
| new _BoundsCheckTestInterfaceServiceDescription();
|
| }
|
|
|
| @@ -4699,13 +4699,13 @@ mojom_types.MojomInterface _validationTestInterfacesConformanceTestInterface() {
|
|
|
| class _ConformanceTestInterfaceServiceDescription implements service_describer.ServiceDescription {
|
| dynamic getTopLevelInterface([Function responseFactory]) =>
|
| - _validationTestInterfacesConformanceTestInterface();
|
| + responseFactory(_validationTestInterfacesConformanceTestInterface());
|
|
|
| dynamic getTypeDefinition(String typeKey, [Function responseFactory]) =>
|
| - getAllMojomTypeDefinitions()[typeKey];
|
| + responseFactory(getAllMojomTypeDefinitions()[typeKey]);
|
|
|
| dynamic getAllTypeDefinitions([Function responseFactory]) =>
|
| - getAllMojomTypeDefinitions();
|
| + responseFactory(getAllMojomTypeDefinitions());
|
| }
|
|
|
| abstract class ConformanceTestInterface {
|
| @@ -5149,7 +5149,7 @@ class ConformanceTestInterfaceStub extends bindings.Stub {
|
|
|
| int get version => 0;
|
|
|
| - service_describer.ServiceDescription get serviceDescription =>
|
| + static service_describer.ServiceDescription get serviceDescription =>
|
| new _ConformanceTestInterfaceServiceDescription();
|
| }
|
|
|
| @@ -5173,13 +5173,13 @@ mojom_types.MojomInterface _validationTestInterfacesIntegrationTestInterface() {
|
|
|
| class _IntegrationTestInterfaceServiceDescription implements service_describer.ServiceDescription {
|
| dynamic getTopLevelInterface([Function responseFactory]) =>
|
| - _validationTestInterfacesIntegrationTestInterface();
|
| + responseFactory(_validationTestInterfacesIntegrationTestInterface());
|
|
|
| dynamic getTypeDefinition(String typeKey, [Function responseFactory]) =>
|
| - getAllMojomTypeDefinitions()[typeKey];
|
| + responseFactory(getAllMojomTypeDefinitions()[typeKey]);
|
|
|
| dynamic getAllTypeDefinitions([Function responseFactory]) =>
|
| - getAllMojomTypeDefinitions();
|
| + responseFactory(getAllMojomTypeDefinitions());
|
| }
|
|
|
| abstract class IntegrationTestInterface {
|
| @@ -5392,7 +5392,7 @@ class IntegrationTestInterfaceStub extends bindings.Stub {
|
|
|
| int get version => 0;
|
|
|
| - service_describer.ServiceDescription get serviceDescription =>
|
| + static service_describer.ServiceDescription get serviceDescription =>
|
| new _IntegrationTestInterfaceServiceDescription();
|
| }
|
|
|
|
|