OLD | NEW |
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, 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 #include "platform/globals.h" | 5 #include "platform/globals.h" |
6 #if defined(HOST_OS_FUCHSIA) | 6 #if defined(HOST_OS_FUCHSIA) |
7 | 7 |
8 #include "bin/file_system_watcher.h" | 8 #include "bin/file_system_watcher.h" |
9 | 9 |
10 namespace dart { | 10 namespace dart { |
(...skipping 19 matching lines...) Expand all Loading... |
30 | 30 |
31 intptr_t FileSystemWatcher::Init() { | 31 intptr_t FileSystemWatcher::Init() { |
32 return 0; | 32 return 0; |
33 } | 33 } |
34 | 34 |
35 void FileSystemWatcher::Close(intptr_t id) { | 35 void FileSystemWatcher::Close(intptr_t id) { |
36 UNIMPLEMENTED(); | 36 UNIMPLEMENTED(); |
37 } | 37 } |
38 | 38 |
39 intptr_t FileSystemWatcher::WatchPath(intptr_t id, | 39 intptr_t FileSystemWatcher::WatchPath(intptr_t id, |
| 40 Namespace* namespc, |
40 const char* path, | 41 const char* path, |
41 int events, | 42 int events, |
42 bool recursive) { | 43 bool recursive) { |
43 UNIMPLEMENTED(); | 44 UNIMPLEMENTED(); |
44 return -1; | 45 return -1; |
45 } | 46 } |
46 | 47 |
47 } // namespace bin | 48 } // namespace bin |
48 } // namespace dart | 49 } // namespace dart |
49 | 50 |
50 #endif // defined(HOST_OS_FUCHSIA) | 51 #endif // defined(HOST_OS_FUCHSIA) |
OLD | NEW |