Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1085)

Unified Diff: chrome/browser/download/download_file_picker.cc

Issue 12850002: Move download filename determintion into a separate class. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments. Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/download/download_file_picker.cc
diff --git a/chrome/browser/download/download_file_picker.cc b/chrome/browser/download/download_file_picker.cc
index a968b06122193321e4f6c0133248610cc52561ce..61eb9cba1eb552b0ef033ee775c33a7201428fed 100644
--- a/chrome/browser/download/download_file_picker.cc
+++ b/chrome/browser/download/download_file_picker.cc
@@ -8,6 +8,7 @@
#include "chrome/browser/download/download_prefs.h"
#include "chrome/browser/platform_util.h"
#include "chrome/browser/ui/chrome_select_file_policy.h"
+#include "content/public/browser/browser_context.h"
#include "content/public/browser/download_item.h"
#include "content/public/browser/download_manager.h"
#include "content/public/browser/web_contents.h"
@@ -47,6 +48,8 @@ void RecordFilePickerResult(DownloadManager* manager,
FilePickerResult ComparePaths(const base::FilePath& suggested_path,
const base::FilePath& actual_path) {
+ if (actual_path.empty())
+ return FILE_PICKER_CANCEL;
if (suggested_path == actual_path)
return FILE_PICKER_SAME;
if (suggested_path.DirName() != actual_path.DirName())
@@ -56,19 +59,14 @@ FilePickerResult ComparePaths(const base::FilePath& suggested_path,
} // namespace
-DownloadFilePicker::DownloadFilePicker() : download_id_(0) {
-}
-
-void DownloadFilePicker::Init(
- DownloadManager* download_manager,
+DownloadFilePicker::DownloadFilePicker(
DownloadItem* item,
const base::FilePath& suggested_path,
- const ChromeDownloadManagerDelegate::FileSelectedCallback& callback) {
- download_manager_ = download_manager;
- download_id_ = item->GetId();
- file_selected_callback_ = callback;
- InitSuggestedPath(item, suggested_path);
-
+ const FileSelectedCallback& callback)
+ : suggested_path_(suggested_path),
+ file_selected_callback_(callback) {
+ download_manager_ =
+ content::BrowserContext::GetDownloadManager(item->GetBrowserContext());
DCHECK(download_manager_);
WebContents* web_contents = item->GetWebContents();
select_file_dialog_ = ui::SelectFileDialog::Create(
@@ -99,32 +97,29 @@ void DownloadFilePicker::Init(
DownloadFilePicker::~DownloadFilePicker() {
}
-void DownloadFilePicker::InitSuggestedPath(
- DownloadItem* item,
- const base::FilePath& suggested_path) {
- set_suggested_path(suggested_path);
-}
-
void DownloadFilePicker::OnFileSelected(const base::FilePath& path) {
- file_selected_callback_.Run(path);
- delete this;
-}
-
-void DownloadFilePicker::RecordFileSelected(const base::FilePath& path) {
FilePickerResult result = ComparePaths(suggested_path_, path);
RecordFilePickerResult(download_manager_, result);
+ file_selected_callback_.Run(path);
+ delete this;
}
void DownloadFilePicker::FileSelected(const base::FilePath& path,
int index,
void* params) {
- RecordFileSelected(path);
OnFileSelected(path);
// Deletes |this|
}
void DownloadFilePicker::FileSelectionCanceled(void* params) {
- RecordFilePickerResult(download_manager_, FILE_PICKER_CANCEL);
OnFileSelected(base::FilePath());
// Deletes |this|
}
+
+// static
+void DownloadFilePicker::ShowFilePicker(DownloadItem* item,
+ const base::FilePath& suggested_path,
+ const FileSelectedCallback& callback) {
+ new DownloadFilePicker(item, suggested_path, callback);
+ // DownloadFilePicker deletes itself.
+}

Powered by Google App Engine
This is Rietveld 408576698