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

Unified Diff: chrome/browser/platform_util.cc

Issue 1391893003: NOT FOR REVIEW: Aura on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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.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

Powered by Google App Engine
This is Rietveld 408576698