summaryrefslogtreecommitdiffstats
path: root/chrome/browser/platform_util_chromeos.cc
diff options
context:
space:
mode:
authorsatorux@chromium.org <satorux@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-22 08:42:19 +0000
committersatorux@chromium.org <satorux@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-22 08:42:19 +0000
commit42cee652ac72d5bd76ac0fbd79cb994b2bcccd3e (patch)
tree853a2866660752e3a2a9e758431d02e1bb808570 /chrome/browser/platform_util_chromeos.cc
parentff83da82a81cd90feebb5dd881937e10d4d715d7 (diff)
downloadchromium_src-42cee652ac72d5bd76ac0fbd79cb994b2bcccd3e.zip
chromium_src-42cee652ac72d5bd76ac0fbd79cb994b2bcccd3e.tar.gz
chromium_src-42cee652ac72d5bd76ac0fbd79cb994b2bcccd3e.tar.bz2
file_manager: Rename ViewItem() and ShowFileInFolder()
To be consistent with matching functions in platform_util BUG=270469 TEST=none Review URL: https://chromiumcodereview.appspot.com/23129025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@218959 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/platform_util_chromeos.cc')
-rw-r--r--chrome/browser/platform_util_chromeos.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/platform_util_chromeos.cc b/chrome/browser/platform_util_chromeos.cc
index 49df102..e803c69 100644
--- a/chrome/browser/platform_util_chromeos.cc
+++ b/chrome/browser/platform_util_chromeos.cc
@@ -39,12 +39,12 @@ namespace platform_util {
void ShowItemInFolder(const base::FilePath& full_path) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
- file_manager::util::ShowFileInFolder(full_path);
+ file_manager::util::ShowItemInFolder(full_path);
}
void OpenItem(const base::FilePath& full_path) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
- file_manager::util::ViewItem(full_path);
+ file_manager::util::OpenItem(full_path);
}
void OpenExternal(const GURL& url) {