| Index: chrome/browser/ui/webui/options/browser_options_handler.cc
|
| diff --git a/chrome/browser/ui/webui/options/browser_options_handler.cc b/chrome/browser/ui/webui/options/browser_options_handler.cc
|
| index 48f4f60e8c8644f302cf8aed667a978c77695a69..54c5c31c6ae23053b8fb39c718465f94f61c8353 100644
|
| --- a/chrome/browser/ui/webui/options/browser_options_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/browser_options_handler.cc
|
| @@ -1194,8 +1194,11 @@ void BrowserOptionsHandler::HandleSelectDownloadLocation(
|
| ui::SelectFileDialog::SELECT_FOLDER,
|
| l10n_util::GetStringUTF16(IDS_OPTIONS_DOWNLOADLOCATION_BROWSE_TITLE),
|
| pref_service->GetFilePath(prefs::kDownloadDefaultDirectory),
|
| - &info, 0, FILE_PATH_LITERAL(""),
|
| - web_ui()->GetWebContents()->GetView()->GetTopLevelNativeWindow(), NULL);
|
| + &info,
|
| + 0,
|
| + base::FilePath::StringType(),
|
| + web_ui()->GetWebContents()->GetView()->GetTopLevelNativeWindow(),
|
| + NULL);
|
| }
|
|
|
| void BrowserOptionsHandler::FileSelected(const base::FilePath& path, int index,
|
|
|