| Index: chrome/browser/platform_util.cc
|
| diff --git a/chrome/browser/platform_util.cc b/chrome/browser/platform_util.cc
|
| index 5cd2e45ef73213007c86668bb94730bee4517008..812b6c3c532a7103136c26ef308465d33fa34626 100644
|
| --- a/chrome/browser/platform_util.cc
|
| +++ b/chrome/browser/platform_util.cc
|
| @@ -35,11 +35,15 @@ void VerifyAndOpenItemOnBlockingThread(const base::FilePath& path,
|
| return;
|
| }
|
|
|
| +#if !defined(OS_ANDROID)
|
| if (shell_operations_allowed)
|
| internal::PlatformOpenVerifiedItem(path, type);
|
| if (!callback.is_null())
|
| BrowserThread::PostTask(BrowserThread::UI, FROM_HERE,
|
| base::Bind(callback, OPEN_SUCCEEDED));
|
| +#else
|
| + NOTIMPLEMENTED();
|
| +#endif
|
| }
|
|
|
| } // namespace
|
|
|