From 493c8001f5011b3f0aacf06a57df7f523b09b23c Mon Sep 17 00:00:00 2001 From: "craig.schlenter@chromium.org" Date: Thu, 14 Apr 2011 16:56:01 +0000 Subject: Move FilePathWatcher to base/files. FilePathWatcher is going to be used in future for monitoring changes to /etc/resolv.conf so it needs live somewhere where various consumers can get at it without incurring the wrath of the layering gods. TEST=existing tests BUG=67734 Review URL: http://codereview.chromium.org/6793020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81606 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/common/service_process_util_posix.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'chrome/common/service_process_util_posix.h') diff --git a/chrome/common/service_process_util_posix.h b/chrome/common/service_process_util_posix.h index 08cca27..a0e8c67 100644 --- a/chrome/common/service_process_util_posix.h +++ b/chrome/common/service_process_util_posix.h @@ -20,8 +20,8 @@ MultiProcessLock* TakeServiceRunningLock(bool waiting); #endif // OS_LINUX #if defined(OS_MACOSX) +#include "base/files/file_path_watcher.h" #include "base/mac/scoped_cftyperef.h" -#include "content/common/file_path_watcher/file_path_watcher.h" class CommandLine; CFDictionaryRef CreateServiceProcessLaunchdPlist(CommandLine* cmd_line, @@ -70,7 +70,7 @@ struct ServiceProcessState::StateData bool WatchExecutable(); base::mac::ScopedCFTypeRef launchd_conf_; - FilePathWatcher executable_watcher_; + base::files::FilePathWatcher executable_watcher_; #endif // OS_MACOSX #if defined(OS_LINUX) scoped_ptr initializing_lock_; -- cgit v1.1