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

Unified Diff: chrome/browser/chromeos/file_system_provider/operations/unobserve_entry.h

Issue 679573002: [fsp] Separate recursive and non-recursive watchers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed. Created 6 years, 2 months 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/file_system_provider/operations/unobserve_entry.h
diff --git a/chrome/browser/chromeos/file_system_provider/operations/unobserve_entry.h b/chrome/browser/chromeos/file_system_provider/operations/unobserve_entry.h
index cb521f3151750764c9c6b727689de78b0823f6dd..c1652e96162ea521f45b5e87ced6749cc6323b7d 100644
--- a/chrome/browser/chromeos/file_system_provider/operations/unobserve_entry.h
+++ b/chrome/browser/chromeos/file_system_provider/operations/unobserve_entry.h
@@ -31,6 +31,7 @@ class UnobserveEntry : public Operation {
UnobserveEntry(extensions::EventRouter* event_router,
const ProvidedFileSystemInfo& file_system_info,
const base::FilePath& entry_path,
+ bool recursive,
const storage::AsyncFileUtil::StatusCallback& callback);
virtual ~UnobserveEntry();
@@ -45,6 +46,7 @@ class UnobserveEntry : public Operation {
private:
const base::FilePath entry_path_;
+ bool recursive_;
const storage::AsyncFileUtil::StatusCallback callback_;
DISALLOW_COPY_AND_ASSIGN(UnobserveEntry);

Powered by Google App Engine
This is Rietveld 408576698