| 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,
|
|
|