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

Unified Diff: chrome/browser/platform_util_android.cc

Issue 352393002: Be explicit about target type in platform_util::OpenItem() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 5 years, 10 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_android.cc
diff --git a/chrome/browser/platform_util_android.cc b/chrome/browser/platform_util_android.cc
index 143d313cd39a571c87762b67c5239050294b48c6..2f94acc4d94dd1d4a1b7675d86d877b2ec58b73c 100644
--- a/chrome/browser/platform_util_android.cc
+++ b/chrome/browser/platform_util_android.cc
@@ -14,7 +14,15 @@ void ShowItemInFolder(Profile* profile, const base::FilePath& full_path) {
NOTIMPLEMENTED();
}
-void OpenItem(Profile* profile, const base::FilePath& full_path) {
+void OpenFile(Profile* profile,
+ const base::FilePath& full_path,
+ const OpenOperationCallback& callback) {
+ NOTIMPLEMENTED();
+}
+
+void OpenFolder(Profile* profile,
+ const base::FilePath& full_path,
+ const OpenOperationCallback& callback) {
NOTIMPLEMENTED();
}

Powered by Google App Engine
This is Rietveld 408576698