| 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 #if !defined(DART_IO_DISABLED) |
| 6 |
| 5 #include "platform/globals.h" | 7 #include "platform/globals.h" |
| 6 #if defined(TARGET_OS_WINDOWS) | 8 #if defined(TARGET_OS_WINDOWS) |
| 7 | 9 |
| 8 #include "bin/file_system_watcher.h" | 10 #include "bin/file_system_watcher.h" |
| 9 | 11 |
| 10 #include <WinIoCtl.h> // NOLINT | 12 #include <WinIoCtl.h> // NOLINT |
| 11 | 13 |
| 12 #include "bin/builtin.h" | 14 #include "bin/builtin.h" |
| 13 #include "bin/eventhandler.h" | 15 #include "bin/eventhandler.h" |
| 14 #include "bin/log.h" | 16 #include "bin/log.h" |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 } | 134 } |
| 133 offset += e->NextEntryOffset; | 135 offset += e->NextEntryOffset; |
| 134 } | 136 } |
| 135 return events; | 137 return events; |
| 136 } | 138 } |
| 137 | 139 |
| 138 } // namespace bin | 140 } // namespace bin |
| 139 } // namespace dart | 141 } // namespace dart |
| 140 | 142 |
| 141 #endif // defined(TARGET_OS_WINDOWS) | 143 #endif // defined(TARGET_OS_WINDOWS) |
| 144 |
| 145 #endif // !defined(DART_IO_DISABLED) |
| OLD | NEW |