HomeSort by relevance Sort by last modified time
    Searched defs:FilePathWatcher (Results 1 - 6 of 6) sorted by null

  /external/chromium/base/files/
file_path_watcher_stub.cc 15 class FilePathWatcherImpl : public FilePathWatcher::PlatformDelegate {
26 FilePathWatcher::FilePathWatcher() {
file_path_watcher.cc 5 // Cross platform methods for FilePathWatcher. See the various platform
16 FilePathWatcher::~FilePathWatcher() {
20 bool FilePathWatcher::Watch(const FilePath& path, Delegate* delegate) {
25 FilePathWatcher::PlatformDelegate::PlatformDelegate(): cancelled_(false) {
28 FilePathWatcher::PlatformDelegate::~PlatformDelegate() {
file_path_watcher.h 22 // underlying OS APIs, FilePathWatcher has slightly different semantics on OS X
23 // than on Windows or Linux. FilePathWatcher on Linux and Windows will detect
24 // modifications to files in a watched directory. FilePathWatcher on Mac will
28 class FilePathWatcher {
42 FilePathWatcher();
43 ~FilePathWatcher();
81 // Stop watching. This is called from FilePathWatcher's dtor in order to
122 DISALLOW_COPY_AND_ASSIGN(FilePathWatcher);
file_path_watcher_win.cc 20 class FilePathWatcherImpl : public FilePathWatcher::PlatformDelegate,
26 // FilePathWatcher::PlatformDelegate overrides.
28 FilePathWatcher::Delegate* delegate) OVERRIDE;
31 // Deletion of the FilePathWatcher will call Cancel() to dispose of this
58 scoped_refptr<FilePathWatcher::Delegate> delegate_;
81 FilePathWatcher::Delegate* delegate) {
107 new FilePathWatcher::CancelTask(this));
276 FilePathWatcher::FilePathWatcher() {
file_path_watcher_linux.cc 86 class FilePathWatcherImpl : public FilePathWatcher::PlatformDelegate,
104 FilePathWatcher::Delegate* delegate) OVERRIDE;
109 // Deletion of the FilePathWatcher will call Cancel() to dispose of this
138 scoped_refptr<FilePathWatcher::Delegate> delegate_;
369 FilePathWatcher::Delegate* delegate) {
400 new FilePathWatcher::CancelTask(this));
457 FilePathWatcher::FilePathWatcher() {
file_path_watcher_mac.cc 43 class FilePathWatcherImpl : public FilePathWatcher::PlatformDelegate,
57 // FilePathWatcher::PlatformDelegate overrides.
59 FilePathWatcher::Delegate* delegate) OVERRIDE;
131 scoped_refptr<FilePathWatcher::Delegate> delegate_;
420 FilePathWatcher::Delegate* delegate) {
488 FilePathWatcher::FilePathWatcher() {

Completed in 45 milliseconds