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

Side by Side Diff: sdk/lib/_internal/lib/io_patch.dart

Issue 119093007: Signal handling, take 2. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/bin/signal_blocker.h ('k') | sdk/lib/io/process.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 _Directory { 5 patch class _Directory {
6 patch static _current() { 6 patch static _current() {
7 throw new UnsupportedError("Directory._current"); 7 throw new UnsupportedError("Directory._current");
8 } 8 }
9 patch static _setCurrent(path) { 9 patch static _setCurrent(path) {
10 throw new UnsupportedError("Directory_SetCurrent"); 10 throw new UnsupportedError("Directory_SetCurrent");
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 } 178 }
179 patch static void _setExitCode(int status) { 179 patch static void _setExitCode(int status) {
180 throw new UnsupportedError("ProcessUtils._setExitCode"); 180 throw new UnsupportedError("ProcessUtils._setExitCode");
181 } 181 }
182 patch static void _sleep(int millis) { 182 patch static void _sleep(int millis) {
183 throw new UnsupportedError("ProcessUtils._sleep"); 183 throw new UnsupportedError("ProcessUtils._sleep");
184 } 184 }
185 patch static int _pid(Process process) { 185 patch static int _pid(Process process) {
186 throw new UnsupportedError("ProcessUtils._pid"); 186 throw new UnsupportedError("ProcessUtils._pid");
187 } 187 }
188 patch static Stream<ProcessSignal> _watchSignal(ProcessSignal signal) {
189 throw new UnsupportedError("ProcessUtils._watchSignal");
190 }
188 } 191 }
189 192
190 patch class Process { 193 patch class Process {
191 patch static Future<Process> start( 194 patch static Future<Process> start(
192 String executable, 195 String executable,
193 List<String> arguments, 196 List<String> arguments,
194 {String workingDirectory, 197 {String workingDirectory,
195 Map<String, String> environment, 198 Map<String, String> environment,
196 bool includeParentEnvironment: true, 199 bool includeParentEnvironment: true,
197 bool runInShell: false}) { 200 bool runInShell: false}) {
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 patch static bool get isSupported { 383 patch static bool get isSupported {
381 throw new UnsupportedError("_FileSystemWatcher.isSupported"); 384 throw new UnsupportedError("_FileSystemWatcher.isSupported");
382 } 385 }
383 } 386 }
384 387
385 patch class _IOService { 388 patch class _IOService {
386 patch static Future dispatch(int request, List data) { 389 patch static Future dispatch(int request, List data) {
387 throw new UnsupportedError("_IOService.dispatch"); 390 throw new UnsupportedError("_IOService.dispatch");
388 } 391 }
389 } 392 }
OLDNEW
« no previous file with comments | « runtime/bin/signal_blocker.h ('k') | sdk/lib/io/process.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698