| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "base/files/file_path_watcher_kqueue.h" | 6 #include "base/files/file_path_watcher_kqueue.h" |
| 7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
| 8 | 8 |
| 9 #if !defined(OS_IOS) | 9 #if !defined(OS_IOS) |
| 10 #include "base/files/file_path_watcher_fsevents.h" | 10 #include "base/files/file_path_watcher_fsevents.h" |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 | 42 |
| 43 protected: | 43 protected: |
| 44 ~FilePathWatcherImpl() override {} | 44 ~FilePathWatcherImpl() override {} |
| 45 | 45 |
| 46 scoped_refptr<PlatformDelegate> impl_; | 46 scoped_refptr<PlatformDelegate> impl_; |
| 47 }; | 47 }; |
| 48 | 48 |
| 49 } // namespace | 49 } // namespace |
| 50 | 50 |
| 51 FilePathWatcher::FilePathWatcher() { | 51 FilePathWatcher::FilePathWatcher() { |
| 52 sequence_checker_.DetachFromSequence(); | |
| 53 impl_ = new FilePathWatcherImpl(); | 52 impl_ = new FilePathWatcherImpl(); |
| 54 } | 53 } |
| 55 | 54 |
| 56 } // namespace base | 55 } // namespace base |
| OLD | NEW |