Chromium Code Reviews| 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 Linux. | |
| 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; | |
|
sanjeevr
2011/03/11 08:26:42
NOTIMPLEMENTED() here?
| |
| 19 } | |
| 20 }; | |
| 21 | |
| 22 } // namespace | |
|
Mark Mentovai
2011/03/11 20:13:52
} // namespace
(two spaces between } and //.)
| |
| 23 | |
| 24 FilePathComponentWatcher::FilePathComponentWatcher() { | |
| 25 impl_ = new FilePathComponentWatcherImpl(); | |
| 26 } | |
| 27 | |
| 28 } // namespace base | |
| OLD | NEW |