| OLD | NEW |
| 1 **TODO(vtl)**: Reorganize this to be properly structured. |
| 2 |
| 1 # Mojom IDL | 3 # Mojom IDL |
| 2 | 4 |
| 3 The Mojom IDL (interface definition language) is primarily used to describe | 5 The Mojom IDL (interface definition language) is primarily used to describe |
| 4 *interfaces* to be used on [message pipes](message_pipes.md). Below, we describe | 6 *interfaces* to be used on [message pipes](message_pipes.md). Below, we describe |
| 5 practical aspects of the Mojom language. Elsewhere, we describe the [Mojom | 7 practical aspects of the Mojom language. Elsewhere, we describe the [Mojom |
| 6 protocol](mojom_protocol.md). (**TODO(vtl)**: Also, serialization format? | 8 protocol](mojom_protocol.md). (**TODO(vtl)**: Also, serialization format? |
| 7 Versioning?) | 9 Versioning?) |
| 8 | 10 |
| 9 Text files written in Mojom IDL are given the `.mojom` extension by convention | 11 Text files written in Mojom IDL are given the `.mojom` extension by convention |
| 10 (and are usually referred to as Mojom/mojom/`.mojom` files). The Mojom bindings | 12 (and are usually referred to as Mojom/mojom/`.mojom` files). The Mojom bindings |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 | 294 |
| 293 #### Raw handle types | 295 #### Raw handle types |
| 294 | 296 |
| 295 #### Interface types | 297 #### Interface types |
| 296 | 298 |
| 297 #### Interface request types | 299 #### Interface request types |
| 298 | 300 |
| 299 ## Annotations | 301 ## Annotations |
| 300 | 302 |
| 301 ## Pipelining | 303 ## Pipelining |
| OLD | NEW |