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

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

Issue 3011703002: Update iOS FileSystemWatcher::WatchPath signature (Closed)
Patch Set: 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 | « no previous file | no next file » | 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) 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 #include "platform/globals.h" 5 #include "platform/globals.h"
6 #if defined(HOST_OS_MACOS) 6 #if defined(HOST_OS_MACOS)
7 7
8 #include "bin/file_system_watcher.h" 8 #include "bin/file_system_watcher.h"
9 9
10 #if !HOST_OS_IOS 10 #if !HOST_OS_IOS
(...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after
409 409
410 void FileSystemWatcher::UnwatchPath(intptr_t id, intptr_t path_id) {} 410 void FileSystemWatcher::UnwatchPath(intptr_t id, intptr_t path_id) {}
411 411
412 intptr_t FileSystemWatcher::Init() { 412 intptr_t FileSystemWatcher::Init() {
413 return -1; 413 return -1;
414 } 414 }
415 415
416 void FileSystemWatcher::Close(intptr_t id) {} 416 void FileSystemWatcher::Close(intptr_t id) {}
417 417
418 intptr_t FileSystemWatcher::WatchPath(intptr_t id, 418 intptr_t FileSystemWatcher::WatchPath(intptr_t id,
419 Namespace* namespc,
419 const char* path, 420 const char* path,
420 int events, 421 int events,
421 bool recursive) { 422 bool recursive) {
422 return -1; 423 return -1;
423 } 424 }
424 425
425 } // namespace bin 426 } // namespace bin
426 } // namespace dart 427 } // namespace dart
427 428
428 #endif // !HOST_OS_IOS 429 #endif // !HOST_OS_IOS
429 #endif // defined(HOST_OS_MACOS) 430 #endif // defined(HOST_OS_MACOS)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698