diff options
Diffstat (limited to 'chrome/browser/platform_util_chromeos.cc')
-rw-r--r-- | chrome/browser/platform_util_chromeos.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/platform_util_chromeos.cc b/chrome/browser/platform_util_chromeos.cc index cf860c5..de0bac4 100644 --- a/chrome/browser/platform_util_chromeos.cc +++ b/chrome/browser/platform_util_chromeos.cc @@ -59,7 +59,7 @@ void OpenItemOnFileThread(const FilePath& full_path) { if (file_util::DirectoryExists(full_path)) callback = base::Bind(&file_manager_util::ViewFolder, full_path); else - callback = base::Bind(&file_manager_util::ViewItem, full_path, false); + callback = base::Bind(&file_manager_util::ViewFile, full_path, false); BrowserThread::PostTask(BrowserThread::UI, FROM_HERE, callback); } |