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 define("mojo/public/js/codec", [ | 5 define("mojo/public/js/codec", [ |
6 "mojo/public/js/unicode", | 6 "mojo/public/js/unicode", |
7 "mojo/public/js/buffer", | 7 "mojo/public/js/buffer", |
8 ], function(unicode, buffer) { | 8 ], function(unicode, buffer) { |
9 | 9 |
10 var kErrorUnsigned = "Passing negative value to unsigned"; | 10 var kErrorUnsigned = "Passing negative value to unsigned"; |
(...skipping 859 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
870 exports.NullableArrayOf = NullableArrayOf; | 870 exports.NullableArrayOf = NullableArrayOf; |
871 exports.PackedBool = PackedBool; | 871 exports.PackedBool = PackedBool; |
872 exports.Handle = Handle; | 872 exports.Handle = Handle; |
873 exports.NullableHandle = NullableHandle; | 873 exports.NullableHandle = NullableHandle; |
874 exports.Interface = Interface; | 874 exports.Interface = Interface; |
875 exports.NullableInterface = NullableInterface; | 875 exports.NullableInterface = NullableInterface; |
876 exports.MapOf = MapOf; | 876 exports.MapOf = MapOf; |
877 exports.NullableMapOf = NullableMapOf; | 877 exports.NullableMapOf = NullableMapOf; |
878 return exports; | 878 return exports; |
879 }); | 879 }); |
OLD | NEW |