| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/files/file_path_watcher.h" | 5 #include "base/files/file_path_watcher.h" |
| 6 | 6 |
| 7 #include <errno.h> | 7 #include <errno.h> |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <string.h> | 9 #include <string.h> |
| 10 #include <sys/inotify.h> | 10 #include <sys/inotify.h> |
| 11 #include <sys/ioctl.h> | 11 #include <sys/ioctl.h> |
| 12 #include <sys/select.h> | 12 #include <sys/select.h> |
| 13 #include <unistd.h> | 13 #include <unistd.h> |
| 14 | 14 |
| 15 #include <algorithm> | 15 #include <algorithm> |
| 16 #include <map> | 16 #include <map> |
| 17 #include <memory> |
| 17 #include <set> | 18 #include <set> |
| 18 #include <utility> | 19 #include <utility> |
| 19 #include <vector> | 20 #include <vector> |
| 20 | 21 |
| 21 #include "base/bind.h" | 22 #include "base/bind.h" |
| 22 #include "base/containers/hash_tables.h" | 23 #include "base/containers/hash_tables.h" |
| 23 #include "base/files/file_enumerator.h" | 24 #include "base/files/file_enumerator.h" |
| 24 #include "base/files/file_path.h" | 25 #include "base/files/file_path.h" |
| 25 #include "base/files/file_util.h" | 26 #include "base/files/file_util.h" |
| 26 #include "base/lazy_instance.h" | 27 #include "base/lazy_instance.h" |
| 27 #include "base/location.h" | 28 #include "base/location.h" |
| 28 #include "base/logging.h" | 29 #include "base/logging.h" |
| 29 #include "base/macros.h" | 30 #include "base/macros.h" |
| 30 #include "base/memory/scoped_ptr.h" | |
| 31 #include "base/posix/eintr_wrapper.h" | 31 #include "base/posix/eintr_wrapper.h" |
| 32 #include "base/single_thread_task_runner.h" | 32 #include "base/single_thread_task_runner.h" |
| 33 #include "base/stl_util.h" | 33 #include "base/stl_util.h" |
| 34 #include "base/synchronization/lock.h" | 34 #include "base/synchronization/lock.h" |
| 35 #include "base/thread_task_runner_handle.h" | 35 #include "base/thread_task_runner_handle.h" |
| 36 #include "base/threading/thread.h" | 36 #include "base/threading/thread.h" |
| 37 #include "base/trace_event/trace_event.h" | 37 #include "base/trace_event/trace_event.h" |
| 38 | 38 |
| 39 namespace base { | 39 namespace base { |
| 40 | 40 |
| (...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 680 return watches_[watches_.size() - 1].subdir.empty(); | 680 return watches_[watches_.size() - 1].subdir.empty(); |
| 681 } | 681 } |
| 682 | 682 |
| 683 } // namespace | 683 } // namespace |
| 684 | 684 |
| 685 FilePathWatcher::FilePathWatcher() { | 685 FilePathWatcher::FilePathWatcher() { |
| 686 impl_ = new FilePathWatcherImpl(); | 686 impl_ = new FilePathWatcherImpl(); |
| 687 } | 687 } |
| 688 | 688 |
| 689 } // namespace base | 689 } // namespace base |
| OLD | NEW |