Chromium Code Reviews| Index: runtime/lib/string_patch.dart |
| diff --git a/runtime/lib/string_patch.dart b/runtime/lib/string_patch.dart |
| index df0393db3f40a345623dddd1bf941d3eabc94e35..2a33692bcb9a3df12578581e6ce56d13ba2e26e2 100644 |
| --- a/runtime/lib/string_patch.dart |
| +++ b/runtime/lib/string_patch.dart |
| @@ -3,8 +3,8 @@ |
| // BSD-style license that can be found in the LICENSE file. |
| patch class String { |
| - /* patch */ factory String.fromCharCodes(List<int> charCodes) { |
| - return _StringBase.createFromCharCodes(charCodes); |
| + /* patch */ factory String.fromCodeUnits(List<int> codeUnits) { |
| + return _StringBase.createFromCodeUnits(codeUnits); |
| } |
| } |