summaryrefslogtreecommitdiffstats
path: root/chrome/browser/platform_util_chromeos.cc
diff options
context:
space:
mode:
authorkaznacheev@chromium.org <kaznacheev@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-17 15:56:08 +0000
committerkaznacheev@chromium.org <kaznacheev@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-17 15:56:08 +0000
commitbea176645e8271b7649dbfc602e31ffe6460da24 (patch)
tree35b6e98507aae4b263737149e71b0673a0f58d5f /chrome/browser/platform_util_chromeos.cc
parent1645c556c53954f475e709140f0a4315841dd99b (diff)
downloadchromium_src-bea176645e8271b7649dbfc602e31ffe6460da24.zip
chromium_src-bea176645e8271b7649dbfc602e31ffe6460da24.tar.gz
chromium_src-bea176645e8271b7649dbfc602e31ffe6460da24.tar.bz2
Removed obsolete parameter from file_manager_util::ViewFile
BUG= TEST= Review URL: http://codereview.chromium.org/9969204 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132581 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/platform_util_chromeos.cc')
-rw-r--r--chrome/browser/platform_util_chromeos.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/platform_util_chromeos.cc b/chrome/browser/platform_util_chromeos.cc
index 7e46404..eaebafd 100644
--- a/chrome/browser/platform_util_chromeos.cc
+++ b/chrome/browser/platform_util_chromeos.cc
@@ -30,7 +30,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::ViewFile, full_path, false);
+ callback = base::Bind(&file_manager_util::ViewFile, full_path);
BrowserThread::PostTask(BrowserThread::UI, FROM_HERE, callback);
}