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

Unified Diff: chrome/browser/platform_util_chromeos.cc

Issue 9969204: Removed obsolete parameter from file_manager_util::ViewFile (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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/platform_util_chromeos.cc
diff --git a/chrome/browser/platform_util_chromeos.cc b/chrome/browser/platform_util_chromeos.cc
index 7e464046a7f89efb1dc83ca35fc3cfcb413a188e..eaebafd1c823924b69dcd06f5403c3c1aa22422a 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);
}
« no previous file with comments | « chrome/browser/chromeos/extensions/file_manager_util.cc ('k') | chrome/browser/ui/webui/chromeos/active_downloads_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698