| Index: base/file_path_component_watcher_win.cc
|
| diff --git a/base/file_path_component_watcher_win.cc b/base/file_path_component_watcher_win.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..7569f1c8a8c16780562987aae2bcf15a78659176
|
| --- /dev/null
|
| +++ b/base/file_path_component_watcher_win.cc
|
| @@ -0,0 +1,28 @@
|
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +// FilePathComponentWatcher is not currently implemented on Windows.
|
| +
|
| +#include "base/file_path_component_watcher.h"
|
| +
|
| +namespace base {
|
| +
|
| +namespace {
|
| +
|
| +class FilePathComponentWatcherImpl
|
| + : public FilePathComponentWatcher::PlatformDelegate {
|
| + public:
|
| + virtual bool Watch(const FilePath& path,
|
| + FilePathComponentWatcher::Delegate* delegate) {
|
| + return false;
|
| + }
|
| +};
|
| +
|
| +} // namespace
|
| +
|
| +FilePathComponentWatcher::FilePathComponentWatcher() {
|
| + impl_ = new FilePathComponentWatcherImpl();
|
| +}
|
| +
|
| +} // namespace base
|
|
|