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

Unified Diff: chrome/browser/chromeos/input_method/ibus_controller_impl.cc

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/browser/chromeos/input_method/ibus_controller_impl.cc
diff --git a/chrome/browser/chromeos/input_method/ibus_controller_impl.cc b/chrome/browser/chromeos/input_method/ibus_controller_impl.cc
index 212d5fe7e9390500b1f467d40b2d50929de6301b..5c4bebf81de591a2b49a3959c0ddfc9bc6844c19 100644
--- a/chrome/browser/chromeos/input_method/ibus_controller_impl.cc
+++ b/chrome/browser/chromeos/input_method/ibus_controller_impl.cc
@@ -425,7 +425,7 @@ class IBusAddressWatcher {
// The |delegate| is owned by watcher.
IBusAddressFileWatcherDelegate* delegate =
new IBusAddressFileWatcherDelegate(ibus_address, controller, instance);
- bool result = instance->watcher_->Watch(FilePath(address_file_path),
+ bool result = instance->watcher_->Watch(FilePath(address_file_path), false,
delegate);
DCHECK(result);
}

Powered by Google App Engine
This is Rietveld 408576698