| OLD | NEW |
| 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 #ifndef BIN_FILE_SYSTEM_WATCHER_H_ | 5 #ifndef BIN_FILE_SYSTEM_WATCHER_H_ |
| 6 #define BIN_FILE_SYSTEM_WATCHER_H_ | 6 #define BIN_FILE_SYSTEM_WATCHER_H_ |
| 7 | 7 |
| 8 #include <stdio.h> |
| 8 #include <stdlib.h> | 9 #include <stdlib.h> |
| 9 #include <string.h> | 10 #include <string.h> |
| 10 #include <stdio.h> | |
| 11 #include <sys/types.h> | 11 #include <sys/types.h> |
| 12 | 12 |
| 13 #include "bin/builtin.h" | 13 #include "bin/builtin.h" |
| 14 #include "bin/dartutils.h" | 14 #include "bin/dartutils.h" |
| 15 | 15 |
| 16 | |
| 17 namespace dart { | 16 namespace dart { |
| 18 namespace bin { | 17 namespace bin { |
| 19 | 18 |
| 20 class FileSystemWatcher { | 19 class FileSystemWatcher { |
| 21 public: | 20 public: |
| 22 enum EventType { | 21 enum EventType { |
| 23 kCreate = 1 << 0, | 22 kCreate = 1 << 0, |
| 24 kModifyContent = 1 << 1, | 23 kModifyContent = 1 << 1, |
| 25 kDelete = 1 << 2, | 24 kDelete = 1 << 2, |
| 26 kMove = 1 << 3, | 25 kMove = 1 << 3, |
| (...skipping 22 matching lines...) Expand all Loading... |
| 49 | 48 |
| 50 private: | 49 private: |
| 51 DISALLOW_COPY_AND_ASSIGN(FileSystemWatcher); | 50 DISALLOW_COPY_AND_ASSIGN(FileSystemWatcher); |
| 52 }; | 51 }; |
| 53 | 52 |
| 54 } // namespace bin | 53 } // namespace bin |
| 55 } // namespace dart | 54 } // namespace dart |
| 56 | 55 |
| 57 #endif // BIN_FILE_SYSTEM_WATCHER_H_ | 56 #endif // BIN_FILE_SYSTEM_WATCHER_H_ |
| 58 | 57 |
| OLD | NEW |