| 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 e09e7809d7a21c678ca3f8180446a8e83fe39641..db8d82dd5a4cbeaaa1a7bf39f96d48c68143ebb2 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
|
| @@ -10,7 +10,6 @@ namespace file_system_provider {
|
|
|
| MountOptions::MountOptions()
|
| : writable(false),
|
| - source(SOURCE_UNKNOWN),
|
| supports_notify_tag(false),
|
| opened_files_limit(0) {
|
| }
|
| @@ -20,13 +19,12 @@ MountOptions::MountOptions(const std::string& file_system_id,
|
| : file_system_id(file_system_id),
|
| display_name(display_name),
|
| writable(false),
|
| - source(SOURCE_UNKNOWN),
|
| supports_notify_tag(false),
|
| opened_files_limit(0) {
|
| }
|
|
|
| ProvidedFileSystemInfo::ProvidedFileSystemInfo()
|
| - : writable_(false), source_(SOURCE_UNKNOWN), supports_notify_tag_(false) {
|
| + : writable_(false), supports_notify_tag_(false) {
|
| }
|
|
|
| ProvidedFileSystemInfo::ProvidedFileSystemInfo(
|
| @@ -37,7 +35,6 @@ ProvidedFileSystemInfo::ProvidedFileSystemInfo(
|
| file_system_id_(mount_options.file_system_id),
|
| display_name_(mount_options.display_name),
|
| writable_(mount_options.writable),
|
| - source_(mount_options.source),
|
| supports_notify_tag_(mount_options.supports_notify_tag),
|
| opened_files_limit_(mount_options.opened_files_limit),
|
| mount_path_(mount_path) {
|
|
|