| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 library bindings; | 5 library bindings; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 import 'dart:collection'; | 8 import 'dart:collection'; |
| 9 import 'dart:convert'; | 9 import 'dart:convert'; |
| 10 import 'dart:typed_data'; | 10 import 'dart:typed_data'; |
| 11 | 11 |
| 12 import 'package:mojo/core.dart' as core; | 12 import 'package:mojo/core.dart' as core; |
| 13 import 'package:mojo/mojo/interface_control_messages.mojom.dart' as icm; | 13 import 'package:mojo/mojo/interface_control_messages.mojom.dart' as icm; |
| 14 import 'package:mojo/mojo/bindings/types/service_describer.mojom.dart' |
| 15 as service_describer; |
| 14 | 16 |
| 15 part 'src/control_message.dart'; | 17 part 'src/control_message.dart'; |
| 16 part 'src/codec.dart'; | 18 part 'src/codec.dart'; |
| 17 part 'src/enum.dart'; | 19 part 'src/enum.dart'; |
| 18 part 'src/message.dart'; | 20 part 'src/message.dart'; |
| 19 part 'src/proxy.dart'; | 21 part 'src/proxy.dart'; |
| 20 part 'src/struct.dart'; | 22 part 'src/struct.dart'; |
| 21 part 'src/stub.dart'; | 23 part 'src/stub.dart'; |
| 22 part 'src/union.dart'; | 24 part 'src/union.dart'; |
| OLD | NEW |