| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 module mojo.common.test; | 5 module mojo.common.test; |
| 6 | 6 |
| 7 import "mojo/common/file.mojom"; | 7 import "mojo/common/file.mojom"; |
| 8 import "mojo/common/file_path.mojom"; | 8 import "mojo/common/file_path.mojom"; |
| 9 import "mojo/common/string16.mojom"; | 9 import "mojo/common/string16.mojom"; |
| 10 import "mojo/common/text_direction.mojom"; |
| 10 import "mojo/common/time.mojom"; | 11 import "mojo/common/time.mojom"; |
| 11 import "mojo/common/unguessable_token.mojom"; | 12 import "mojo/common/unguessable_token.mojom"; |
| 12 import "mojo/common/values.mojom"; | 13 import "mojo/common/values.mojom"; |
| 13 | 14 |
| 14 interface TestFilePath { | 15 interface TestFilePath { |
| 15 BounceFilePath(mojo.common.mojom.FilePath in) | 16 BounceFilePath(mojo.common.mojom.FilePath in) |
| 16 => (mojo.common.mojom.FilePath out); | 17 => (mojo.common.mojom.FilePath out); |
| 17 }; | 18 }; |
| 18 | 19 |
| 19 interface TestUnguessableToken { | 20 interface TestUnguessableToken { |
| (...skipping 25 matching lines...) Expand all Loading... |
| 45 [Sync] | 46 [Sync] |
| 46 BounceString16(mojo.common.mojom.String16 in) | 47 BounceString16(mojo.common.mojom.String16 in) |
| 47 => (mojo.common.mojom.String16 out); | 48 => (mojo.common.mojom.String16 out); |
| 48 }; | 49 }; |
| 49 | 50 |
| 50 interface TestFile { | 51 interface TestFile { |
| 51 [Sync] | 52 [Sync] |
| 52 BounceFile(mojo.common.mojom.File? in) | 53 BounceFile(mojo.common.mojom.File? in) |
| 53 => (mojo.common.mojom.File? out); | 54 => (mojo.common.mojom.File? out); |
| 54 }; | 55 }; |
| 56 |
| 57 interface TestTextDirection { |
| 58 [Sync] |
| 59 BounceTextDirection(mojo.common.mojom.TextDirection in) |
| 60 => (mojo.common.mojom.TextDirection out); |
| 61 }; |
| OLD | NEW |