Home
last modified time | relevance | path

Searched refs:FilePathWatcherImpl (Results 1 – 2 of 2) sorted by relevance

/external/libchrome/base/files/
Dfile_path_watcher_linux.cc45 class FilePathWatcherImpl;
72 Watch AddWatch(const FilePath& path, FilePathWatcherImpl* watcher);
75 void RemoveWatch(Watch watch, FilePathWatcherImpl* watcher);
83 typedef std::set<FilePathWatcherImpl*> WatcherSet;
111 class FilePathWatcherImpl : public FilePathWatcher::PlatformDelegate { class
113 FilePathWatcherImpl();
114 ~FilePathWatcherImpl() override;
212 WeakPtr<FilePathWatcherImpl> weak_ptr_;
214 WeakPtrFactory<FilePathWatcherImpl> weak_factory_;
216 DISALLOW_COPY_AND_ASSIGN(FilePathWatcherImpl);
[all …]
Dfile_path_watcher_stub.cc17 class FilePathWatcherImpl : public FilePathWatcher::PlatformDelegate { class
19 FilePathWatcherImpl() = default;
20 ~FilePathWatcherImpl() override = default;
31 DISALLOW_COPY_AND_ASSIGN(FilePathWatcherImpl);
38 impl_ = std::make_unique<FilePathWatcherImpl>(); in FilePathWatcher()