Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(341)

Unified Diff: runtime/bin/process_patch.dart

Issue 13933021: Fix patch file return types (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | sdk/lib/_internal/compiler/implementation/lib/io_patch.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/process_patch.dart
diff --git a/runtime/bin/process_patch.dart b/runtime/bin/process_patch.dart
index 8de3d9b2fda8a05fd42f7530743e6dd1b642958a..775a08ea6addb9750634964b70b1b35cc7d5dab9 100644
--- a/runtime/bin/process_patch.dart
+++ b/runtime/bin/process_patch.dart
@@ -31,10 +31,11 @@ patch class Process {
patch class _ProcessUtils {
- /* patch */ static _exit(int status) native "Process_Exit";
- /* patch */ static _setExitCode(int status) native "Process_SetExitCode";
- /* patch */ static _sleep(int millis) native "Process_Sleep";
- /* patch */ static _pid(Process process) native "Process_Pid";
+ /* patch */ static void _exit(int status) native "Process_Exit";
+ /* patch */ static void _setExitCode(int status)
+ native "Process_SetExitCode";
+ /* patch */ static void _sleep(int millis) native "Process_Sleep";
+ /* patch */ static int _pid(Process process) native "Process_Pid";
}
« no previous file with comments | « no previous file | sdk/lib/_internal/compiler/implementation/lib/io_patch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698