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

Unified Diff: chrome/browser/chromeos/extensions/file_browser_event_router.cc

Issue 10834115: Drive: Mount/Unmount GoogleDrive on Files App when the file system is mounted/unmounted. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: review fix Created 8 years, 4 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/extensions/file_browser_event_router.cc
diff --git a/chrome/browser/chromeos/extensions/file_browser_event_router.cc b/chrome/browser/chromeos/extensions/file_browser_event_router.cc
index ed931c3293be4707094799dfca2cedb6028d8a2a..269329073347f026edc4fb0df873e40ea7ce8433 100644
--- a/chrome/browser/chromeos/extensions/file_browser_event_router.cc
+++ b/chrome/browser/chromeos/extensions/file_browser_event_router.cc
@@ -226,6 +226,48 @@ void FileBrowserEventRouter::RemoveFileWatch(
}
}
+void FileBrowserEventRouter::MountDrive(
+ const base::Closure& callback) {
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
+
+ gdata::GDataSystemService* system_service =
+ gdata::GDataSystemServiceFactory::GetForProfile(profile_);
+ if (system_service) {
+ system_service->docs_service()->Authenticate(
+ base::Bind(&FileBrowserEventRouter::OnAuthenticated,
+ this,
+ callback));
+ }
+}
+
+void FileBrowserEventRouter::OnAuthenticated(
+ const base::Closure& callback,
+ gdata::GDataErrorCode error,
+ const std::string& token) {
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
+
+ chromeos::MountError error_code;
+ // For the file manager to work offline, GDATA_NO_CONNECTION is allowed.
+ if (error == gdata::HTTP_SUCCESS || error == gdata::GDATA_NO_CONNECTION)
+ error_code = chromeos::MOUNT_ERROR_NONE;
+ else
+ error_code = chromeos::MOUNT_ERROR_NOT_AUTHENTICATED;
+
+ // Pass back the gdata mount point path as source path.
+ const std::string& gdata_path = gdata::util::GetGDataMountPointPathAsString();
+ DiskMountManager::MountPointInfo mount_info(
+ gdata_path,
+ gdata_path,
+ chromeos::MOUNT_TYPE_GDATA,
+ chromeos::disks::MOUNT_CONDITION_NONE);
+
+ // Raise mount event.
+ MountCompleted(DiskMountManager::MOUNTING, error_code, mount_info);
+
+ if (!callback.is_null())
+ callback.Run();
+}
+
void FileBrowserEventRouter::HandleRemoteUpdateRequestOnUIThread(bool start) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
@@ -416,6 +458,26 @@ void FileBrowserEventRouter::OnDocumentFeedFetched(
NULL, GURL());
}
+void FileBrowserEventRouter::OnFileSystemMounted() {
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
+
+ MountDrive(base::Bind(&base::DoNothing)); // Callback does nothing.
+}
+
+void FileBrowserEventRouter::OnFileSystemUnmounting() {
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
+
+ // Raise a MountCompleted event to notify the File Manager.
+ const std::string& gdata_path = gdata::util::GetGDataMountPointPathAsString();
+ DiskMountManager::MountPointInfo mount_info(
+ gdata_path,
+ gdata_path,
+ chromeos::MOUNT_TYPE_GDATA,
+ chromeos::disks::MOUNT_CONDITION_NONE);
+ MountCompleted(DiskMountManager::UNMOUNTING, chromeos::MOUNT_ERROR_NONE,
+ mount_info);
+}
+
void FileBrowserEventRouter::OnAuthenticationFailed() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));

Powered by Google App Engine
This is Rietveld 408576698