diff options
Diffstat (limited to 'content/browser/renderer_host/browser_render_process_host.cc')
-rw-r--r-- | content/browser/renderer_host/browser_render_process_host.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/browser/renderer_host/browser_render_process_host.cc b/content/browser/renderer_host/browser_render_process_host.cc index 5fbb790..3b06191 100644 --- a/content/browser/renderer_host/browser_render_process_host.cc +++ b/content/browser/renderer_host/browser_render_process_host.cc @@ -938,7 +938,7 @@ void BrowserRenderProcessHost::OnUserMetricsRecordAction( void BrowserRenderProcessHost::OnRevealFolderInOS(const FilePath& path) { // Only honor the request if appropriate persmissions are granted. if (ChildProcessSecurityPolicy::GetInstance()->CanReadFile(id(), path)) - content::GetContentClient()->browser()->RevealFolderInOS(path); + content::GetContentClient()->browser()->OpenItem(path); } void BrowserRenderProcessHost::OnSavedPageAsMHTML(int job_id, bool success) { |