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

Unified Diff: chrome/browser/chromeos/file_system_provider/provided_file_system_info.cc

Issue 625463002: [fsp] Add support for observing entries and notifying about changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased. 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/provided_file_system_info.cc
diff --git a/chrome/browser/chromeos/file_system_provider/provided_file_system_info.cc b/chrome/browser/chromeos/file_system_provider/provided_file_system_info.cc
index 9335c625f6ba45836c36712f895129f8bf21cd93..58f8407bd31b86d52ebfd9f612fccc70e27e745c 100644
--- a/chrome/browser/chromeos/file_system_provider/provided_file_system_info.cc
+++ b/chrome/browser/chromeos/file_system_provider/provided_file_system_info.cc
@@ -14,11 +14,13 @@ ProvidedFileSystemInfo::ProvidedFileSystemInfo(
const std::string& file_system_id,
const std::string& display_name,
bool writable,
+ bool supports_notify_tag,
const base::FilePath& mount_path)
: extension_id_(extension_id),
file_system_id_(file_system_id),
display_name_(display_name),
writable_(writable),
+ supports_notify_tag_(supports_notify_tag),
mount_path_(mount_path) {
}

Powered by Google App Engine
This is Rietveld 408576698