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 <string.h> | 8 #include <string.h> |
9 #include <sys/inotify.h> | 9 #include <sys/inotify.h> |
10 #include <sys/ioctl.h> | 10 #include <sys/ioctl.h> |
11 #include <sys/select.h> | 11 #include <sys/select.h> |
12 #include <unistd.h> | 12 #include <unistd.h> |
13 | 13 |
14 #include <algorithm> | 14 #include <algorithm> |
15 #include <set> | 15 #include <set> |
16 #include <utility> | 16 #include <utility> |
17 #include <vector> | 17 #include <vector> |
18 | 18 |
19 #include "base/bind.h" | 19 #include "base/bind.h" |
| 20 #include "base/containers/hash_tables.h" |
20 #include "base/file_util.h" | 21 #include "base/file_util.h" |
21 #include "base/files/file_path.h" | 22 #include "base/files/file_path.h" |
22 #include "base/hash_tables.h" | |
23 #include "base/lazy_instance.h" | 23 #include "base/lazy_instance.h" |
24 #include "base/location.h" | 24 #include "base/location.h" |
25 #include "base/logging.h" | 25 #include "base/logging.h" |
26 #include "base/memory/scoped_ptr.h" | 26 #include "base/memory/scoped_ptr.h" |
27 #include "base/message_loop.h" | 27 #include "base/message_loop.h" |
28 #include "base/message_loop/message_loop_proxy.h" | 28 #include "base/message_loop/message_loop_proxy.h" |
29 #include "base/posix/eintr_wrapper.h" | 29 #include "base/posix/eintr_wrapper.h" |
30 #include "base/synchronization/lock.h" | 30 #include "base/synchronization/lock.h" |
31 #include "base/threading/thread.h" | 31 #include "base/threading/thread.h" |
32 | 32 |
(...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
478 return true; | 478 return true; |
479 } | 479 } |
480 | 480 |
481 } // namespace | 481 } // namespace |
482 | 482 |
483 FilePathWatcher::FilePathWatcher() { | 483 FilePathWatcher::FilePathWatcher() { |
484 impl_ = new FilePathWatcherImpl(); | 484 impl_ = new FilePathWatcherImpl(); |
485 } | 485 } |
486 | 486 |
487 } // namespace base | 487 } // namespace base |
OLD | NEW |