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

Side by Side Diff: chrome/browser/download/save_package_file_picker_chromeos.h

Issue 12084075: SavePackageFilePickerChromeOS should only force MHTML when saving HTML, not when saving text/image/… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: @r185696 Created 7 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_DOWNLOAD_SAVE_PACKAGE_FILE_PICKER_CHROMEOS_H_ 5 #ifndef CHROME_BROWSER_DOWNLOAD_SAVE_PACKAGE_FILE_PICKER_CHROMEOS_H_
6 #define CHROME_BROWSER_DOWNLOAD_SAVE_PACKAGE_FILE_PICKER_CHROMEOS_H_ 6 #define CHROME_BROWSER_DOWNLOAD_SAVE_PACKAGE_FILE_PICKER_CHROMEOS_H_
7 7
8 #include "base/memory/ref_counted.h" 8 #include "base/memory/ref_counted.h"
9 #include "content/public/browser/download_manager_delegate.h" 9 #include "content/public/browser/download_manager_delegate.h"
10 #include "content/public/browser/web_contents_observer.h" 10 #include "content/public/browser/web_contents_observer.h"
11 #include "ui/shell_dialogs/select_file_dialog.h" 11 #include "ui/shell_dialogs/select_file_dialog.h"
12 12
13 namespace ui { 13 namespace ui {
14 struct SelectedFileInfo; 14 struct SelectedFileInfo;
15 } 15 }
16 16
17 // Handles showing a dialog to the user to ask for the filename to save a page 17 // Handles showing a dialog to the user to ask for the filename to save a page
18 // on ChromeOS. 18 // on ChromeOS.
19 class SavePackageFilePickerChromeOS : public ui::SelectFileDialog::Listener, 19 class SavePackageFilePickerChromeOS : public ui::SelectFileDialog::Listener,
20 public content::WebContentsObserver { 20 public content::WebContentsObserver {
21 public: 21 public:
22 SavePackageFilePickerChromeOS( 22 SavePackageFilePickerChromeOS(
23 content::WebContents* web_contents, 23 content::WebContents* web_contents,
24 const base::FilePath& suggested_path, 24 const base::FilePath& suggested_path,
25 bool is_html,
25 const content::SavePackagePathPickedCallback& callback); 26 const content::SavePackagePathPickedCallback& callback);
26 27
27 // Used to disable prompting the user for a directory/filename of the saved 28 // Used to disable prompting the user for a directory/filename of the saved
28 // web page. This is available for testing. 29 // web page. This is available for testing.
29 static void SetShouldPromptUser(bool should_prompt); 30 static void SetShouldPromptUser(bool should_prompt);
30 31
31 private: 32 private:
32 virtual ~SavePackageFilePickerChromeOS(); 33 virtual ~SavePackageFilePickerChromeOS();
33 34
34 // SelectFileDialog::Listener implementation. 35 // SelectFileDialog::Listener implementation.
35 virtual void FileSelected(const base::FilePath& selected_path, 36 virtual void FileSelected(const base::FilePath& selected_path,
36 int unused_index, 37 int unused_index,
37 void* unused_params) OVERRIDE; 38 void* unused_params) OVERRIDE;
38 virtual void FileSelectedWithExtraInfo( 39 virtual void FileSelectedWithExtraInfo(
39 const ui::SelectedFileInfo& selected_file_info, 40 const ui::SelectedFileInfo& selected_file_info,
40 int unused_index, 41 int unused_index,
41 void* unused_params) OVERRIDE; 42 void* unused_params) OVERRIDE;
42 virtual void FileSelectionCanceled(void* params) OVERRIDE; 43 virtual void FileSelectionCanceled(void* params) OVERRIDE;
43 44
44 content::SavePackagePathPickedCallback callback_; 45 content::SavePackagePathPickedCallback callback_;
46 bool is_html_;
45 47
46 // For managing select file dialogs. 48 // For managing select file dialogs.
47 scoped_refptr<ui::SelectFileDialog> select_file_dialog_; 49 scoped_refptr<ui::SelectFileDialog> select_file_dialog_;
48 base::FilePath selected_path_; 50 base::FilePath selected_path_;
49 51
50 DISALLOW_COPY_AND_ASSIGN(SavePackageFilePickerChromeOS); 52 DISALLOW_COPY_AND_ASSIGN(SavePackageFilePickerChromeOS);
51 }; 53 };
52 54
53 #endif // CHROME_BROWSER_DOWNLOAD_SAVE_PACKAGE_FILE_PICKER_CHROMEOS_H_ 55 #endif // CHROME_BROWSER_DOWNLOAD_SAVE_PACKAGE_FILE_PICKER_CHROMEOS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698