| Index: chrome/browser/platform_util_linux.cc
|
| diff --git a/chrome/browser/platform_util_linux.cc b/chrome/browser/platform_util_linux.cc
|
| index a4f9ea9e352180b244a55abe143fbd8ec35027f8..14de7052e916ffb854d30258272769b59ca8462d 100644
|
| --- a/chrome/browser/platform_util_linux.cc
|
| +++ b/chrome/browser/platform_util_linux.cc
|
| @@ -155,9 +155,8 @@ void PlatformOpenVerifiedItem(const base::FilePath& path, OpenItemType type) {
|
| }
|
| }
|
|
|
| -} // namespace internal
|
| -
|
| -void ShowItemInFolder(Profile* profile, const base::FilePath& full_path) {
|
| +void PlatformShowItemInFolder(Profile* profile,
|
| + const base::FilePath& full_path) {
|
| DCHECK_CURRENTLY_ON(BrowserThread::UI);
|
| base::PostTaskAndReplyWithResult(content::BrowserThread::GetBlockingPool(),
|
| FROM_HERE,
|
| @@ -165,6 +164,8 @@ void ShowItemInFolder(Profile* profile, const base::FilePath& full_path) {
|
| base::Bind(&ShowItem, profile, full_path));
|
| }
|
|
|
| +} // namespace internal
|
| +
|
| void OpenExternal(Profile* profile, const GURL& url) {
|
| DCHECK_CURRENTLY_ON(BrowserThread::UI);
|
| if (url.SchemeIs("mailto"))
|
|
|