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

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

Issue 12662032: Merge SavePackageFilePicker{,ChromeOS} (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: @r198452 Created 7 years, 7 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_DOWNLOAD_SAVE_PACKAGE_FILE_PICKER_CHROMEOS_H_
6 #define CHROME_BROWSER_DOWNLOAD_SAVE_PACKAGE_FILE_PICKER_CHROMEOS_H_
7
8 #include "base/memory/ref_counted.h"
9 #include "content/public/browser/download_manager_delegate.h"
10 #include "content/public/browser/web_contents_observer.h"
11 #include "ui/shell_dialogs/select_file_dialog.h"
12
13 namespace ui {
14 struct SelectedFileInfo;
15 }
16
17 // Handles showing a dialog to the user to ask for the filename to save a page
18 // on ChromeOS.
19 class SavePackageFilePickerChromeOS : public ui::SelectFileDialog::Listener,
20 public content::WebContentsObserver {
21 public:
22 SavePackageFilePickerChromeOS(
23 content::WebContents* web_contents,
24 const base::FilePath& suggested_path,
25 bool is_html,
26 const content::SavePackagePathPickedCallback& callback);
27
28 // Used to disable prompting the user for a directory/filename of the saved
29 // web page. This is available for testing.
30 static void SetShouldPromptUser(bool should_prompt);
31
32 private:
33 virtual ~SavePackageFilePickerChromeOS();
34
35 // SelectFileDialog::Listener implementation.
36 virtual void FileSelected(const base::FilePath& selected_path,
37 int unused_index,
38 void* unused_params) OVERRIDE;
39 virtual void FileSelectedWithExtraInfo(
40 const ui::SelectedFileInfo& selected_file_info,
41 int unused_index,
42 void* unused_params) OVERRIDE;
43 virtual void FileSelectionCanceled(void* params) OVERRIDE;
44
45 content::SavePackagePathPickedCallback callback_;
46 bool is_html_;
47
48 // For managing select file dialogs.
49 scoped_refptr<ui::SelectFileDialog> select_file_dialog_;
50 base::FilePath selected_path_;
51
52 DISALLOW_COPY_AND_ASSIGN(SavePackageFilePickerChromeOS);
53 };
54
55 #endif // CHROME_BROWSER_DOWNLOAD_SAVE_PACKAGE_FILE_PICKER_CHROMEOS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698