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

Unified Diff: content/browser/plugin_service_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: content/browser/plugin_service_impl.cc
diff --git a/content/browser/plugin_service_impl.cc b/content/browser/plugin_service_impl.cc
index dabd26dfae7aedbaee98692c6f7ba9dca78dfc60..c2bb7326382090e8ff068e132df4623f8094f554 100644
--- a/content/browser/plugin_service_impl.cc
+++ b/content/browser/plugin_service_impl.cc
@@ -600,7 +600,7 @@ void PluginServiceImpl::RegisterFilePathWatcher(
FilePathWatcher* watcher,
const FilePath& path,
FilePathWatcher::Delegate* delegate) {
- bool result = watcher->Watch(path, delegate);
+ bool result = watcher->Watch(path, false, delegate);
DCHECK(result);
}
#endif

Powered by Google App Engine
This is Rietveld 408576698