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

Unified Diff: chrome/browser/chromeos/file_manager/volume_manager.cc

Issue 1093383002: [WIP] Provided file system from NACL. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Various cleanups 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_manager/volume_manager.cc
diff --git a/chrome/browser/chromeos/file_manager/volume_manager.cc b/chrome/browser/chromeos/file_manager/volume_manager.cc
index 227cdc02b8b1a602e4ae6fef92138cfe908cd1a6..dae0d11768aa54ba593b4b07faf24fb0d2396a88 100644
--- a/chrome/browser/chromeos/file_manager/volume_manager.cc
+++ b/chrome/browser/chromeos/file_manager/volume_manager.cc
@@ -214,7 +214,8 @@ Volume* Volume::CreateForProvidedFileSystem(
MountContext mount_context) {
Volume* const volume = new Volume;
volume->file_system_id_ = file_system_info.file_system_id();
- volume->extension_id_ = file_system_info.extension_id();
+ // TODO(sabin): should change this
+ volume->extension_id_ = file_system_info.source_id();
switch (file_system_info.source()) {
case chromeos::file_system_provider::SOURCE_UNKNOWN:
volume->volume_source_ = VOLUME_SOURCE_UNKNOWN;

Powered by Google App Engine
This is Rietveld 408576698