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

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

Issue 1077823005: Declare providing extension capabilities in the manifest. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed tests. Created 5 years, 7 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 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) {

Powered by Google App Engine
This is Rietveld 408576698