OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // FilePathComponentWatcher is not currently implemented on Windows. |
| 6 |
| 7 #include "base/file_path_component_watcher.h" |
| 8 |
| 9 namespace base { |
| 10 |
| 11 namespace { |
| 12 |
| 13 class FilePathComponentWatcherImpl |
| 14 : public FilePathComponentWatcher::PlatformDelegate { |
| 15 public: |
| 16 virtual bool Watch(const FilePath& path, |
| 17 FilePathComponentWatcher::Delegate* delegate) { |
| 18 return false; |
| 19 } |
| 20 }; |
| 21 |
| 22 } // namespace |
| 23 |
| 24 FilePathComponentWatcher::FilePathComponentWatcher() { |
| 25 impl_ = new FilePathComponentWatcherImpl(); |
| 26 } |
| 27 |
| 28 } // namespace base |
OLD | NEW |