Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(368)

Side by Side Diff: runtime/bin/file_system_watcher_fuchsia.cc

Issue 3001963002: [dart:io] Namespaces for file IO (Closed)
Patch Set: Fuchsia fix Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « runtime/bin/file_system_watcher_android.cc ('k') | runtime/bin/file_system_watcher_linux.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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)
OLDNEW
« no previous file with comments | « runtime/bin/file_system_watcher_android.cc ('k') | runtime/bin/file_system_watcher_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698