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

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

Issue 8574054: Replace FileManagerUtil class with namespace file_manager_util. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: rebase Created 9 years, 1 month 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
« no previous file with comments | « no previous file | chrome/browser/chromeos/media/media_player.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/extensions/file_browser_event_router.cc
===================================================================
--- chrome/browser/chromeos/extensions/file_browser_event_router.cc (revision 110538)
+++ chrome/browser/chromeos/extensions/file_browser_event_router.cc (working copy)
@@ -299,9 +299,9 @@
if (mount_info.mount_type == chromeos::MOUNT_TYPE_ARCHIVE) {
GURL source_url;
- if (FileManagerUtil::ConvertFileToFileSystemUrl(profile_,
+ if (file_manager_util::ConvertFileToFileSystemUrl(profile_,
FilePath(mount_info.source_path),
- FileManagerUtil::GetFileBrowserExtensionUrl().GetOrigin(),
+ file_manager_util::GetFileBrowserExtensionUrl().GetOrigin(),
&source_url)) {
mount_info_value->SetString("sourceUrl", source_url.spec());
}
@@ -318,7 +318,7 @@
mount_info.mount_condition) {
// Convert mount point path to relative path with the external file system
// exposed within File API.
- if (FileManagerUtil::ConvertFileToRelativeFileSystemPath(profile_,
+ if (file_manager_util::ConvertFileToRelativeFileSystemPath(profile_,
FilePath(mount_info.mount_path),
&relative_mount_path)) {
mount_info_value->SetString("mountPath",
@@ -337,7 +337,7 @@
mount_info.mount_type == chromeos::MOUNT_TYPE_DEVICE &&
!mount_info.mount_condition &&
event == chromeos::disks::DiskMountManager::MOUNTING) {
- FileManagerUtil::ViewFolder(FilePath(mount_info.mount_path));
+ file_manager_util::ViewFolder(FilePath(mount_info.mount_path));
}
}
« no previous file with comments | « no previous file | chrome/browser/chromeos/media/media_player.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698