| 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 a35c5c5cb558899e0d2e55b10f8ec27bb307fbdf..607133b49e0348404af7ffcd7dc7ba0eb22cd042 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
|
| @@ -28,6 +28,7 @@ ProvidedFileSystemInfo::ProvidedFileSystemInfo()
|
| : writable_(false),
|
| supports_notify_tag_(false),
|
| configurable_(false),
|
| + watchable_(false),
|
| source_(extensions::SOURCE_FILE) {
|
| }
|
|
|
| @@ -36,6 +37,7 @@ ProvidedFileSystemInfo::ProvidedFileSystemInfo(
|
| const MountOptions& mount_options,
|
| const base::FilePath& mount_path,
|
| bool configurable,
|
| + bool watchable,
|
| extensions::FileSystemProviderSource source)
|
| : extension_id_(extension_id),
|
| file_system_id_(mount_options.file_system_id),
|
| @@ -45,6 +47,7 @@ ProvidedFileSystemInfo::ProvidedFileSystemInfo(
|
| opened_files_limit_(mount_options.opened_files_limit),
|
| mount_path_(mount_path),
|
| configurable_(configurable),
|
| + watchable_(watchable),
|
| source_(source) {
|
| DCHECK_LE(0, mount_options.opened_files_limit);
|
| }
|
|
|