| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 patch class _BufferUtils { | 5 patch class _BufferUtils { |
| 6 /* patch */ static bool _isBuiltinList(List buffer) | 6 /* patch */ static bool _isBuiltinList(List buffer) |
| 7 native "Common_IsBuiltinList"; | 7 native "Common_IsBuiltinList"; |
| 8 } | 8 } |
| 9 | 9 |
| 10 patch class _IOCrypto { | 10 patch class _IOCrypto { |
| 11 /* patch */ static Uint8List getRandomBytes(int count) | 11 /* patch */ static Uint8List getRandomBytes(int count) |
| 12 native "Crypto_GetRandomBytes"; | 12 native "Crypto_GetRandomBytes"; |
| 13 } | 13 } |
| 14 | |
| 15 patch class _OptionsImpl { | |
| 16 /* patch */ String get version native "Common_GetVersion"; | |
| 17 } | |
| OLD | NEW |