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

Unified Diff: chrome/browser/chromeos/disks/disk_mount_manager.cc

Issue 10083067: gdata: Support opening zip file on Google Docs. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: gdata: Support opening zip file on Google Docs. Created 8 years, 8 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/disks/disk_mount_manager.cc
diff --git a/chrome/browser/chromeos/disks/disk_mount_manager.cc b/chrome/browser/chromeos/disks/disk_mount_manager.cc
index 38fbf02dd0151ab8abf6d48dc4df436d25afc542..55530541d0d2ca9d1c483e95f55f9c5c384244ea 100644
--- a/chrome/browser/chromeos/disks/disk_mount_manager.cc
+++ b/chrome/browser/chromeos/disks/disk_mount_manager.cc
@@ -58,6 +58,7 @@ class DiskMountManagerImpl : public DiskMountManager {
// DiskMountManager override.
virtual void MountPath(const std::string& source_path,
+ const std::string& source_format,
MountType type) OVERRIDE {
// Hidden and non-existent devices should not be mounted.
if (type == MOUNT_TYPE_DEVICE) {
@@ -70,6 +71,7 @@ class DiskMountManagerImpl : public DiskMountManager {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
cros_disks_client_->Mount(
source_path,
+ source_format,
type,
// When succeeds, OnMountCompleted will be called by
// "MountCompleted" signal instead.
« no previous file with comments | « chrome/browser/chromeos/disks/disk_mount_manager.h ('k') | chrome/browser/chromeos/disks/mock_disk_mount_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698