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

Unified Diff: sdk/lib/io/file_system_entity.dart

Issue 897703002: Make _FileSystemWatcher.watch private. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 11 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 | « sdk/lib/_internal/compiler/js_lib/io_patch.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/io/file_system_entity.dart
diff --git a/sdk/lib/io/file_system_entity.dart b/sdk/lib/io/file_system_entity.dart
index 5c15c1c8c87d99906fe76572e1474861de86d72f..f3923273adc63c205a3b4b254c2939b51b2a7e55 100644
--- a/sdk/lib/io/file_system_entity.dart
+++ b/sdk/lib/io/file_system_entity.dart
@@ -439,7 +439,7 @@ abstract class FileSystemEntity {
*/
Stream<FileSystemEvent> watch({int events: FileSystemEvent.ALL,
bool recursive: false})
- => _FileSystemWatcher.watch(_trimTrailingPathSeparators(path),
+ => _FileSystemWatcher._watch(_trimTrailingPathSeparators(path),
events,
recursive);
@@ -827,7 +827,7 @@ class FileSystemMoveEvent extends FileSystemEvent {
class _FileSystemWatcher {
- external static Stream<FileSystemEvent> watch(
+ external static Stream<FileSystemEvent> _watch(
String path, int events, bool recursive);
external static bool get isSupported;
}
« no previous file with comments | « sdk/lib/_internal/compiler/js_lib/io_patch.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698