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

Unified Diff: ui/shell_dialogs/select_file_dialog_android.cc

Issue 12217101: Replace FilePath with base::FilePath in some more top level directories. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
« no previous file with comments | « ui/shell_dialogs/select_file_dialog_android.h ('k') | ui/shell_dialogs/select_file_dialog_mac.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/shell_dialogs/select_file_dialog_android.cc
diff --git a/ui/shell_dialogs/select_file_dialog_android.cc b/ui/shell_dialogs/select_file_dialog_android.cc
index 993eb58ff16185bb188c4864163d5e0dda4e1ee5..d46e37e361049680c7fb3ef1ead3a27dd16de3af 100644
--- a/ui/shell_dialogs/select_file_dialog_android.cc
+++ b/ui/shell_dialogs/select_file_dialog_android.cc
@@ -28,7 +28,7 @@ void SelectFileDialogImpl::OnFileSelected(JNIEnv* env,
jstring filepath) {
if (listener_) {
std::string path = base::android::ConvertJavaStringToUTF8(env, filepath);
- listener_->FileSelected(FilePath(path), 0, NULL);
+ listener_->FileSelected(base::FilePath(path), 0, NULL);
}
is_running_ = false;
@@ -54,7 +54,7 @@ void SelectFileDialogImpl::ListenerDestroyed() {
void SelectFileDialogImpl::SelectFileImpl(
ui::SelectFileDialog::Type type,
const string16& title,
- const FilePath& default_path,
+ const base::FilePath& default_path,
const SelectFileDialog::FileTypeInfo* file_types,
int file_type_index,
const std::string& default_extension,
« no previous file with comments | « ui/shell_dialogs/select_file_dialog_android.h ('k') | ui/shell_dialogs/select_file_dialog_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698