Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(50)

Side by Side Diff: base/file_path_component_watcher_win.cc

Issue 6660001: Getting service process on Mac to handle having things moved/changed underneath it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed up phajdan's comments, got things working properly Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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;
sanjeevr 2011/03/11 08:26:42 NOTIMPLEMENTED()
19 }
20 };
21
22 } // namespace
23
24 FilePathComponentWatcher::FilePathComponentWatcher() {
25 impl_ = new FilePathComponentWatcherImpl();
26 }
27
28 } // namespace base
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698