| Index: chrome/browser/ui/webui/extensions/pack_extension_handler.h
|
| diff --git a/chrome/browser/ui/webui/extensions/pack_extension_handler.h b/chrome/browser/ui/webui/extensions/pack_extension_handler.h
|
| index c85d21221b652ff5399b70b104a1b67542c0e507..1ffe7d708d9c8f5d3852ec68906b3460e3bb85d7 100644
|
| --- a/chrome/browser/ui/webui/extensions/pack_extension_handler.h
|
| +++ b/chrome/browser/ui/webui/extensions/pack_extension_handler.h
|
| @@ -10,12 +10,12 @@
|
| #include "chrome/browser/browsing_data/browsing_data_remover.h"
|
| #include "chrome/browser/extensions/pack_extension_job.h"
|
| #include "chrome/browser/plugin_data_remover_helper.h"
|
| -#include "chrome/browser/ui/select_file_dialog.h"
|
| #include "content/public/browser/web_ui_message_handler.h"
|
| +#include "ui/base/dialogs/select_file_dialog.h"
|
|
|
| // Clear browser data handler page UI handler.
|
| class PackExtensionHandler : public content::WebUIMessageHandler,
|
| - public SelectFileDialog::Listener,
|
| + public ui::SelectFileDialog::Listener,
|
| public PackExtensionJob::Client {
|
| public:
|
| PackExtensionHandler();
|
| @@ -59,7 +59,7 @@ class PackExtensionHandler : public content::WebUIMessageHandler,
|
|
|
| // Returned by the SelectFileDialog machinery. Used to initiate the selection
|
| // dialog.
|
| - scoped_refptr<SelectFileDialog> load_extension_dialog_;
|
| + scoped_refptr<ui::SelectFileDialog> load_extension_dialog_;
|
|
|
| // Path to root directory of extension
|
| std::string extension_path_;
|
|
|