| Index: chrome/browser/download/download_file_picker.h
|
| diff --git a/chrome/browser/download/download_file_picker.h b/chrome/browser/download/download_file_picker.h
|
| index a7ea2a01e3a0939709f03d451d06d63687366b02..dafb80c716dfb4e25d59344dcf7f8b8f91cf1375 100644
|
| --- a/chrome/browser/download/download_file_picker.h
|
| +++ b/chrome/browser/download/download_file_picker.h
|
| @@ -6,7 +6,7 @@
|
| #define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_FILE_PICKER_H_
|
|
|
| #include "chrome/browser/download/chrome_download_manager_delegate.h"
|
| -#include "chrome/browser/ui/select_file_dialog.h"
|
| +#include "ui/base/dialogs/select_file_dialog.h"
|
|
|
| class FilePath;
|
|
|
| @@ -17,7 +17,7 @@ class WebContents;
|
| }
|
|
|
| // Handles showing a dialog to the user to ask for the filename for a download.
|
| -class DownloadFilePicker : public SelectFileDialog::Listener {
|
| +class DownloadFilePicker : public ui::SelectFileDialog::Listener {
|
| public:
|
| DownloadFilePicker();
|
| virtual ~DownloadFilePicker();
|
| @@ -59,7 +59,7 @@ class DownloadFilePicker : public SelectFileDialog::Listener {
|
| ChromeDownloadManagerDelegate::FileSelectedCallback file_selected_callback_;
|
|
|
| // For managing select file dialogs.
|
| - scoped_refptr<SelectFileDialog> select_file_dialog_;
|
| + scoped_refptr<ui::SelectFileDialog> select_file_dialog_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(DownloadFilePicker);
|
| };
|
|
|