Chromium Code Reviews| Index: sdk/lib/html/dartium/html_dartium.dart |
| diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart |
| index 571032b69d701a779ff6cdc7db4e6ed8bc6d33b5..ce24c289d266bf39301eb2d56401ba363640099b 100644 |
| --- a/sdk/lib/html/dartium/html_dartium.dart |
| +++ b/sdk/lib/html/dartium/html_dartium.dart |
| @@ -35264,6 +35264,7 @@ class _Utils { |
| static window() native "Utils_window"; |
| static print(String message) native "Utils_print"; |
| + static forwardingPrint(String message) native "Utils_forwardingPrint"; |
|
Mads Ager (google)
2013/03/14 07:49:02
This file is auto-generated and should not be edit
Anton Muhin
2013/03/14 08:08:45
Chances are I just forgot to run go.sh and Lasse d
|
| static SendPort spawnDomFunctionImpl(Function topLevelFunction) native "Utils_spawnDomFunction"; |
| static int _getNewIsolateId() native "Utils_getNewIsolateId"; |
| static bool shadowRootSupported(Document document) native "Utils_shadowRootSupported"; |
| @@ -35343,3 +35344,5 @@ get _printClosure => (s) { |
| _Utils.print(s); |
| } |
| }; |
| + |
| +final _forwardingPrintClosure = _Utils.forwardingPrint; |