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

Unified Diff: mojo/dart/packages/mojo_services/lib/authentication/authentication.mojom.dart

Issue 1983453002: Dart: Refactor Stubs (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Merge Created 4 years, 7 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_services/lib/authentication/authentication.mojom.dart
diff --git a/mojo/dart/packages/mojo_services/lib/authentication/authentication.mojom.dart b/mojo/dart/packages/mojo_services/lib/authentication/authentication.mojom.dart
index 7aea7ff8ec01698d4572bf314b62d44388240b96..6692be8a3106e9025d3e674cf4f51076ea4dc621 100644
--- a/mojo/dart/packages/mojo_services/lib/authentication/authentication.mojom.dart
+++ b/mojo/dart/packages/mojo_services/lib/authentication/authentication.mojom.dart
@@ -811,9 +811,9 @@ abstract class AuthenticationService {
dynamic addAccount(String deviceCode,[Function responseFactory = null]);
}
-
-class _AuthenticationServiceProxyControl extends bindings.ProxyMessageHandler
- implements bindings.ProxyControl {
+class _AuthenticationServiceProxyControl
+ extends bindings.ProxyMessageHandler
+ implements bindings.ProxyControl {
_AuthenticationServiceProxyControl.fromEndpoint(
core.MojoMessagePipeEndpoint endpoint) : super.fromEndpoint(endpoint);
@@ -827,7 +827,6 @@ class _AuthenticationServiceProxyControl extends bindings.ProxyMessageHandler
String get serviceName => AuthenticationService.serviceName;
- @override
void handleResponse(bindings.ServiceMessage message) {
switch (message.header.type) {
case _authenticationServiceMethodSelectAccountName:
@@ -924,9 +923,9 @@ class _AuthenticationServiceProxyControl extends bindings.ProxyMessageHandler
}
}
-
-class AuthenticationServiceProxy extends bindings.Proxy
- implements AuthenticationService {
+class AuthenticationServiceProxy
+ extends bindings.Proxy
+ implements AuthenticationService {
AuthenticationServiceProxy.fromEndpoint(
core.MojoMessagePipeEndpoint endpoint)
: super(new _AuthenticationServiceProxyControl.fromEndpoint(endpoint));
@@ -1000,29 +999,24 @@ class AuthenticationServiceProxy extends bindings.Proxy
}
}
-
-class AuthenticationServiceStub extends bindings.Stub {
+class _AuthenticationServiceStubControl
+ extends bindings.StubMessageHandler
+ implements bindings.StubControl<AuthenticationService> {
AuthenticationService _impl;
- AuthenticationServiceStub.fromEndpoint(
+ _AuthenticationServiceStubControl.fromEndpoint(
core.MojoMessagePipeEndpoint endpoint, [AuthenticationService impl])
: super.fromEndpoint(endpoint, autoBegin: impl != null) {
_impl = impl;
}
- AuthenticationServiceStub.fromHandle(
+ _AuthenticationServiceStubControl.fromHandle(
core.MojoHandle handle, [AuthenticationService impl])
: super.fromHandle(handle, autoBegin: impl != null) {
_impl = impl;
}
- AuthenticationServiceStub.unbound([this._impl]) : super.unbound();
-
- static AuthenticationServiceStub newFromEndpoint(
- core.MojoMessagePipeEndpoint endpoint) {
- assert(endpoint.setDescription("For AuthenticationServiceStub"));
- return new AuthenticationServiceStub.fromEndpoint(endpoint);
- }
+ _AuthenticationServiceStubControl.unbound([this._impl]) : super.unbound();
AuthenticationServiceSelectAccountResponseParams _authenticationServiceSelectAccountResponseParamsFactory(String username, String error) {
@@ -1181,9 +1175,10 @@ class AuthenticationServiceStub extends bindings.Stub {
}
}
+ @override
String toString() {
var superString = super.toString();
- return "AuthenticationServiceStub($superString)";
+ return "_AuthenticationServiceStubControl($superString)";
}
int get version => 0;
@@ -1197,5 +1192,46 @@ class AuthenticationServiceStub extends bindings.Stub {
}
}
+class AuthenticationServiceStub
+ extends bindings.Stub<AuthenticationService>
+ implements AuthenticationService {
+ AuthenticationServiceStub.fromEndpoint(
+ core.MojoMessagePipeEndpoint endpoint, [AuthenticationService impl])
+ : super(new _AuthenticationServiceStubControl.fromEndpoint(endpoint, impl));
+
+ AuthenticationServiceStub.fromHandle(
+ core.MojoHandle handle, [AuthenticationService impl])
+ : super(new _AuthenticationServiceStubControl.fromHandle(handle, impl));
+
+ AuthenticationServiceStub.unbound([AuthenticationService impl])
+ : super(new _AuthenticationServiceStubControl.unbound(impl));
+
+ static AuthenticationServiceStub newFromEndpoint(
+ core.MojoMessagePipeEndpoint endpoint) {
+ assert(endpoint.setDescription("For AuthenticationServiceStub"));
+ return new AuthenticationServiceStub.fromEndpoint(endpoint);
+ }
+
+ static service_describer.ServiceDescription get serviceDescription =>
+ _AuthenticationServiceStubControl.serviceDescription;
+
+
+ dynamic selectAccount(bool returnLastSelected,[Function responseFactory = null]) {
+ return impl.selectAccount(returnLastSelected,responseFactory);
+ }
+ dynamic getOAuth2Token(String username,List<String> scopes,[Function responseFactory = null]) {
+ return impl.getOAuth2Token(username,scopes,responseFactory);
+ }
+ void clearOAuth2Token(String token) {
+ return impl.clearOAuth2Token(token);
+ }
+ dynamic getOAuth2DeviceCode(List<String> scopes,[Function responseFactory = null]) {
+ return impl.getOAuth2DeviceCode(scopes,responseFactory);
+ }
+ dynamic addAccount(String deviceCode,[Function responseFactory = null]) {
+ return impl.addAccount(deviceCode,responseFactory);
+ }
+}
+

Powered by Google App Engine
This is Rietveld 408576698