Index: remoting/host/config_file_watcher.cc |
diff --git a/remoting/host/config_file_watcher.cc b/remoting/host/config_file_watcher.cc |
index 1f19900b311463c50a67cbf3d44539b463b9bc25..3c096a3dcf1e802d05662505d134b232776dc39d 100644 |
--- a/remoting/host/config_file_watcher.cc |
+++ b/remoting/host/config_file_watcher.cc |
@@ -122,8 +122,8 @@ void ConfigFileWatcherImpl::Watch(const FilePath& config_path) { |
config_watcher_.reset(new base::files::FilePathWatcher()); |
config_path_ = config_path; |
if (!config_watcher_->Watch( |
- config_path_, |
- base::Bind(&ConfigFileWatcherImpl::OnConfigUpdated, this))) { |
+ config_path_, false, |
+ base::Bind(&ConfigFileWatcherImpl::OnConfigUpdated, this))) { |
LOG(ERROR) << "Couldn't watch file '" << config_path_.value() << "'"; |
main_task_runner_->PostTask( |
FROM_HERE, |