| Index: chrome/browser/download/save_package_file_picker_chromeos.h
|
| diff --git a/chrome/browser/download/save_package_file_picker_chromeos.h b/chrome/browser/download/save_package_file_picker_chromeos.h
|
| index 10adf9634081d68ccf0715470cc93478bdd41951..840ac6dd24868184617ba72df0192173b454647c 100644
|
| --- a/chrome/browser/download/save_package_file_picker_chromeos.h
|
| +++ b/chrome/browser/download/save_package_file_picker_chromeos.h
|
| @@ -6,9 +6,9 @@
|
| #define CHROME_BROWSER_DOWNLOAD_SAVE_PACKAGE_FILE_PICKER_CHROMEOS_H_
|
|
|
| #include "base/memory/ref_counted.h"
|
| -#include "chrome/browser/ui/select_file_dialog.h"
|
| #include "content/public/browser/download_manager_delegate.h"
|
| #include "content/public/browser/web_contents_observer.h"
|
| +#include "ui/base/dialogs/select_file_dialog.h"
|
|
|
| namespace gdata {
|
| class GDataFileSystem;
|
| @@ -20,7 +20,7 @@ struct SelectedFileInfo;
|
|
|
| // Handles showing a dialog to the user to ask for the filename to save a page
|
| // on ChromeOS.
|
| -class SavePackageFilePickerChromeOS : public SelectFileDialog::Listener,
|
| +class SavePackageFilePickerChromeOS : public ui::SelectFileDialog::Listener,
|
| public content::WebContentsObserver {
|
| public:
|
| SavePackageFilePickerChromeOS(
|
| @@ -48,7 +48,7 @@ class SavePackageFilePickerChromeOS : public SelectFileDialog::Listener,
|
| content::SavePackagePathPickedCallback callback_;
|
|
|
| // For managing select file dialogs.
|
| - scoped_refptr<SelectFileDialog> select_file_dialog_;
|
| + scoped_refptr<ui::SelectFileDialog> select_file_dialog_;
|
| FilePath selected_path_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(SavePackageFilePickerChromeOS);
|
|
|