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

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

Issue 9839009: [filebrowser] Show progress indication, while files from GData are being downloaded. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 9 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_private_api.cc
===================================================================
--- chrome/browser/chromeos/extensions/file_browser_private_api.cc (revision 128203)
+++ chrome/browser/chromeos/extensions/file_browser_private_api.cc (working copy)
@@ -1373,6 +1373,7 @@
SET_STRING(IDS_FILE_BROWSER, ERROR_NEW_FOLDER_EMPTY_NAME);
SET_STRING(IDS_FILE_BROWSER, NEW_FOLDER_BUTTON_LABEL);
SET_STRING(IDS_FILE_BROWSER, FILENAME_LABEL);
+ SET_STRING(IDS_FILE_BROWSER, PREPARING_LABEL);
SET_STRING(IDS_FILE_BROWSER, DIMENSIONS_LABEL);
SET_STRING(IDS_FILE_BROWSER, DIMENSIONS_FORMAT);
@@ -1838,7 +1839,7 @@
result->SetBoolean("canceled", file_system->CancelOperation(file_path));
GURL file_url;
if (file_manager_util::ConvertFileToFileSystemUrl(profile_,
- FilePath("gdata").Append(file_path),
+ FilePath("/special/gdata").Append(file_path),
zel 2012/03/22 17:21:46 THis does not look right. Why do you need /special
dgozman 2012/03/23 12:44:05 This is no different from ProgessStatusToDictionar
source_url_.GetOrigin(),
&file_url)) {
result->SetString("fileUrl", file_url.spec());

Powered by Google App Engine
This is Rietveld 408576698