| 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 | |
| 7 #include "platform/globals.h" | 5 #include "platform/globals.h" |
| 8 #if defined(HOST_OS_WINDOWS) | 6 #if defined(HOST_OS_WINDOWS) |
| 9 | 7 |
| 10 #include "bin/file_system_watcher.h" | 8 #include "bin/file_system_watcher.h" |
| 11 | 9 |
| 12 #include <WinIoCtl.h> // NOLINT | 10 #include <WinIoCtl.h> // NOLINT |
| 13 | 11 |
| 14 #include "bin/builtin.h" | 12 #include "bin/builtin.h" |
| 15 #include "bin/eventhandler.h" | 13 #include "bin/eventhandler.h" |
| 16 #include "bin/log.h" | 14 #include "bin/log.h" |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 } | 122 } |
| 125 offset += e->NextEntryOffset; | 123 offset += e->NextEntryOffset; |
| 126 } | 124 } |
| 127 return events; | 125 return events; |
| 128 } | 126 } |
| 129 | 127 |
| 130 } // namespace bin | 128 } // namespace bin |
| 131 } // namespace dart | 129 } // namespace dart |
| 132 | 130 |
| 133 #endif // defined(HOST_OS_WINDOWS) | 131 #endif // defined(HOST_OS_WINDOWS) |
| 134 | |
| 135 #endif // !defined(DART_IO_DISABLED) | |
| OLD | NEW |