Chromium Code Reviews| Index: runtime/bin/file_system_watcher_macos.cc |
| diff --git a/runtime/bin/file_system_watcher_macos.cc b/runtime/bin/file_system_watcher_macos.cc |
| index fbecffa5cfb9a1b5886a4d5360c4ca7837c3846d..8b0cc071f1c79d29199a72b5a69da07df61835cd 100644 |
| --- a/runtime/bin/file_system_watcher_macos.cc |
| +++ b/runtime/bin/file_system_watcher_macos.cc |
| @@ -7,7 +7,7 @@ |
| #include "bin/file_system_watcher.h" |
| -#if !defined(TARGET_OS_IOS) |
| +#if TARGET_OS_IOS |
|
butlermatt
2015/10/08 13:31:02
#if !TARGET_OS_IOS
Bill Hesse
2015/10/08 14:48:47
Done.
|
| #include <errno.h> // NOLINT |
| #include <fcntl.h> // NOLINT |
| @@ -394,7 +394,7 @@ Dart_Handle FileSystemWatcher::ReadEvents(intptr_t id, intptr_t path_id) { |
| } // namespace bin |
| } // namespace dart |
| -#else // !defined(TARGET_OS_IOS) |
| +#else // !TARGET_OS_IOS |
| namespace dart { |
| namespace bin { |
| @@ -432,6 +432,6 @@ intptr_t FileSystemWatcher::WatchPath(intptr_t id, |
| } // namespace bin |
| } // namespace dart |
| -#endif // !defined(TARGET_OS_IOS) |
| +#endif // !TARGET_OS_IOS |
| #endif // defined(TARGET_OS_MACOS) |