Chromium Code Reviews| Index: mojo/public/interfaces/bindings/service_describer.mojom |
| diff --git a/mojo/public/interfaces/bindings/service_describer.mojom b/mojo/public/interfaces/bindings/service_describer.mojom |
| index 50bf08345f87cd211407cdb16af433e6921716dc..9cd9473e77af2c5f401dbdf13b627610c3e84900 100644 |
| --- a/mojo/public/interfaces/bindings/service_describer.mojom |
| +++ b/mojo/public/interfaces/bindings/service_describer.mojom |
| @@ -2,7 +2,8 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| -[DartPackage="mojo", JavaPackage="org.chromium.mojo.bindings"] |
| +[DartPackage="mojo", |
| +JavaPackage="org.chromium.mojo.bindings"] |
| // TODO(rudominer) Move this file into the module mojo.bindings when |
| // https://github.com/domokit/mojo/issues/435 is fixed. |
| module mojo.bindings.types; |
| @@ -21,8 +22,7 @@ interface ServiceDescriber { |
| // to ServiceProvider.ConnectToService() in order to request the service |
| // with the given name. If the host is not willing or able to describe the |
| // service with the given name it will close the |description_request| pipe. |
| - DescribeService(string interface_name, |
| - ServiceDescription& description_request); |
| + DescribeService(string interface_name, ServiceDescription& description_request); |
| }; |
| // A ServiceDescription allows a client to request information about the Mojom |
| @@ -47,8 +47,7 @@ interface ServiceDescription { |
| // Returns the |UserDefinedType| for the given |type_key|. Valid keys are |
| // those that are embedded in the structures returned from earlier queries |
| // of this ServiceDescription. If the key is invalid then |type| will be null. |
| - GetTypeDefinition(string type_key) => |
| - (mojo.bindings.types.UserDefinedType? type); |
| + GetTypeDefinition(string type_key) => (mojo.bindings.types.UserDefinedType? type); |
|
vtl
2016/02/29 23:41:59
We should also decide whether/how we prefer to bre
|
| // Returns all the data queryable via GetTypeDefinition in a single |
| // structure, or null if the implementation is not willing or not able to |