Searched defs:FilePathWatcher (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/base/files/
H A Dfile_path_watcher_stub.cc14 class FilePathWatcherImpl : public FilePathWatcher::PlatformDelegate {
18 const FilePathWatcher::Callback& callback) OVERRIDE {
32 FilePathWatcher::FilePathWatcher() { function in class:base::FilePathWatcher
H A Dfile_path_watcher_mac.cc16 class FilePathWatcherImpl : public FilePathWatcher::PlatformDelegate {
20 const FilePathWatcher::Callback& callback) OVERRIDE {
24 if (!FilePathWatcher::RecursiveWatchAvailable())
56 FilePathWatcher::FilePathWatcher() { function in class:base::FilePathWatcher
H A Dfile_path_watcher.cc5 // Cross platform methods for FilePathWatcher. See the various platform
19 FilePathWatcher::~FilePathWatcher() {
24 void FilePathWatcher::CancelWatch(
30 bool FilePathWatcher::RecursiveWatchAvailable() {
42 FilePathWatcher::PlatformDelegate::PlatformDelegate(): cancelled_(false) {
45 FilePathWatcher::PlatformDelegate::~PlatformDelegate() {
49 bool FilePathWatcher::Watch(const FilePath& path,
H A Dfile_path_watcher.h22 // 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 BASE_EXPORT FilePathWatcher { class in namespace:base
45 // Stop watching. This is called from FilePathWatcher's dtor in order to
52 friend class FilePathWatcher;
83 FilePathWatcher();
84 virtual ~FilePathWatcher();
106 DISALLOW_COPY_AND_ASSIGN(FilePathWatcher);
H A Dfile_path_watcher_win.cc21 class FilePathWatcherImpl : public FilePathWatcher::PlatformDelegate,
29 // FilePathWatcher::PlatformDelegate overrides.
32 const FilePathWatcher::Callback& callback) OVERRIDE;
35 // Deletion of the FilePathWatcher will call Cancel() to dispose of this
64 FilePathWatcher::Callback callback_;
91 const FilePathWatcher::Callback& callback) {
124 Bind(&FilePathWatcher::CancelWatch,
297 FilePathWatcher::FilePathWatcher() { function in class:base::FilePathWatcher
H A Dfile_path_watcher_linux.cc89 class FilePathWatcherImpl : public FilePathWatcher::PlatformDelegate,
115 const FilePathWatcher::Callback& callback) OVERRIDE;
123 // Deletion of the FilePathWatcher will call Cancel() to dispose of this
174 FilePathWatcher::Callback callback_;
428 const FilePathWatcher::Callback& callback) {
458 Bind(&FilePathWatcher::CancelWatch,
665 FilePathWatcher::FilePathWatcher() { function in class:base::FilePathWatcher

Completed in 188 milliseconds