 Chromium Code Reviews
 Chromium Code Reviews Issue 2739683005:
  [dart:io] Adds Platform.ansiSupported  (Closed)
    
  
    Issue 2739683005:
  [dart:io] Adds Platform.ansiSupported  (Closed) 
  | Index: runtime/bin/platform_android.cc | 
| diff --git a/runtime/bin/platform_android.cc b/runtime/bin/platform_android.cc | 
| index 404f95df470238977c635ab3258b811fd9ea2b8d..6b051ac6c739b2959458a26ed70cf567698d5230 100644 | 
| --- a/runtime/bin/platform_android.cc | 
| +++ b/runtime/bin/platform_android.cc | 
| @@ -85,6 +85,11 @@ const char* Platform::ResolveExecutablePath() { | 
| } | 
| +bool Platform::AnsiSupported() { | 
| + return true; | 
| +} | 
| + | 
| + | 
| void Platform::Exit(int exit_code) { | 
| exit(exit_code); | 
| } |