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

Unified Diff: chrome/common/service_process_util_mac.mm

Issue 11415066: FilePathWatcher::Watch() - Listen for sub directory changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix mac compile error. Created 8 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/service_process_util_mac.mm
diff --git a/chrome/common/service_process_util_mac.mm b/chrome/common/service_process_util_mac.mm
index 858beec7fb22e1673f1d598acec717157935b84b..929c248ebe3d542dd8586c616b2083711de9d379 100644
--- a/chrome/common/service_process_util_mac.mm
+++ b/chrome/common/service_process_util_mac.mm
@@ -325,7 +325,7 @@ bool ServiceProcessState::StateData::WatchExecutable() {
DLOG(ERROR) << "executable_watcher_.Init " << executable_path.value();
return false;
}
- if (!executable_watcher_.Watch(executable_path, delegate)) {
+ if (!executable_watcher_.Watch(executable_path, false, delegate)) {
DLOG(ERROR) << "executable_watcher_.watch " << executable_path.value();
return false;
}

Powered by Google App Engine
This is Rietveld 408576698