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

Side by Side Diff: sdk/lib/io/io_service.dart

Issue 2973823002: Revert "Remaining private libs" (Closed)
Patch Set: Created 3 years, 5 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 unified diff | Download patch
« no previous file with comments | « sdk/lib/io/io_resource_info.dart ('k') | sdk/lib/io/io_sink.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 part of "dart:io"; 5 part of "io.dart";
6 6
7 // This list must be kept in sync with the list in runtime/bin/io_service.h 7 // This list must be kept in sync with the list in runtime/bin/io_service.h
8 const int _FILE_EXISTS = 0; 8 const int _FILE_EXISTS = 0;
9 const int _FILE_CREATE = 1; 9 const int _FILE_CREATE = 1;
10 const int _FILE_DELETE = 2; 10 const int _FILE_DELETE = 2;
11 const int _FILE_RENAME = 3; 11 const int _FILE_RENAME = 3;
12 const int _FILE_COPY = 4; 12 const int _FILE_COPY = 4;
13 const int _FILE_OPEN = 5; 13 const int _FILE_OPEN = 5;
14 const int _FILE_RESOLVE_SYMBOLIC_LINKS = 6; 14 const int _FILE_RESOLVE_SYMBOLIC_LINKS = 6;
15 const int _FILE_CLOSE = 7; 15 const int _FILE_CLOSE = 7;
(...skipping 29 matching lines...) Expand all
45 const int _DIRECTORY_CREATE_TEMP = 37; 45 const int _DIRECTORY_CREATE_TEMP = 37;
46 const int _DIRECTORY_LIST_START = 38; 46 const int _DIRECTORY_LIST_START = 38;
47 const int _DIRECTORY_LIST_NEXT = 39; 47 const int _DIRECTORY_LIST_NEXT = 39;
48 const int _DIRECTORY_LIST_STOP = 40; 48 const int _DIRECTORY_LIST_STOP = 40;
49 const int _DIRECTORY_RENAME = 41; 49 const int _DIRECTORY_RENAME = 41;
50 const int _SSL_PROCESS_FILTER = 42; 50 const int _SSL_PROCESS_FILTER = 42;
51 51
52 class _IOService { 52 class _IOService {
53 external static Future _dispatch(int request, List data); 53 external static Future _dispatch(int request, List data);
54 } 54 }
OLDNEW
« no previous file with comments | « sdk/lib/io/io_resource_info.dart ('k') | sdk/lib/io/io_sink.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698