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

Unified Diff: runtime/bin/file_system_watcher.h

Issue 48613002: Add 'isDir' to FileSystemEvent. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merge with master Created 7 years, 2 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
Index: runtime/bin/file_system_watcher.h
diff --git a/runtime/bin/file_system_watcher.h b/runtime/bin/file_system_watcher.h
index 943467478f1ceed573f84519a0147fbf069bf43e..21c334f771f4b230ef35656e7bea510b93257b86 100644
--- a/runtime/bin/file_system_watcher.h
+++ b/runtime/bin/file_system_watcher.h
@@ -25,7 +25,8 @@ class FileSystemWatcher {
kDelete = 1 << 2,
kMove = 1 << 3,
kModefyAttribute = 1 << 4,
- kDeleteSelf = 1 << 5
+ kDeleteSelf = 1 << 5,
+ kIsDir = 1 << 6
};
struct Event {

Powered by Google App Engine
This is Rietveld 408576698