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

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

Issue 294073007: [fsp] Let extensions decide about the file system id. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased. Created 6 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 ff98eda064b1728d54aa3f0012f18696b45d711c..bd41084dd1f776717d160bd8aee5af1282d0af48 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
@@ -11,13 +11,14 @@ ProvidedFileSystemInfo::ProvidedFileSystemInfo() {}
ProvidedFileSystemInfo::ProvidedFileSystemInfo(
const std::string& extension_id,
- int file_system_id,
+ const std::string& file_system_id,
const std::string& file_system_name,
const base::FilePath& mount_path)
: extension_id_(extension_id),
file_system_id_(file_system_id),
file_system_name_(file_system_name),
- mount_path_(mount_path) {}
+ mount_path_(mount_path) {
+}
ProvidedFileSystemInfo::~ProvidedFileSystemInfo() {}

Powered by Google App Engine
This is Rietveld 408576698