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

Unified Diff: chrome/browser/download/download_file_picker_chromeos.h

Issue 10804026: Fix open dialog not remembering last opened folder on drive (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 5 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_chromeos.h
diff --git a/chrome/browser/download/download_file_picker_chromeos.h b/chrome/browser/download/download_file_picker_chromeos.h
index 455521213d74e760aa3fcc3bd4e5e5b7e1489609..1c9104ee765f3088f4a61cb4bd0504563ac56e81 100644
--- a/chrome/browser/download/download_file_picker_chromeos.h
+++ b/chrome/browser/download/download_file_picker_chromeos.h
@@ -7,6 +7,10 @@
#include "chrome/browser/download/download_file_picker.h"
+namespace ui {
+struct SelectedFileInfo;
+}
+
class DownloadFilePickerChromeOS : public DownloadFilePicker {
public:
DownloadFilePickerChromeOS();
@@ -17,6 +21,10 @@ class DownloadFilePickerChromeOS : public DownloadFilePicker {
virtual void FileSelected(const FilePath& path,
int index,
void* params) OVERRIDE;
+ virtual void FileSelectedWithExtraInfo(
+ const ui::SelectedFileInfo& file_info,
+ int index,
+ void* params) OVERRIDE;
// DownloadFilePicker implementation.
// This looks up the gdata path instead of the temporary local path.

Powered by Google App Engine
This is Rietveld 408576698