OLD | NEW |
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_DOWNLOAD_FILE_PICKER_CHROMEOS_H__ | 5 #ifndef CHROME_BROWSER_DOWNLOAD_DOWNLOAD_FILE_PICKER_CHROMEOS_H__ |
6 #define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_FILE_PICKER_CHROMEOS_H__ | 6 #define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_FILE_PICKER_CHROMEOS_H__ |
7 | 7 |
8 #include "chrome/browser/download/download_file_picker.h" | 8 #include "chrome/browser/download/download_file_picker.h" |
9 | 9 |
10 namespace ui { | 10 namespace ui { |
(...skipping 10 matching lines...) Expand all Loading... |
21 virtual void FileSelected(const FilePath& path, | 21 virtual void FileSelected(const FilePath& path, |
22 int index, | 22 int index, |
23 void* params) OVERRIDE; | 23 void* params) OVERRIDE; |
24 virtual void FileSelectedWithExtraInfo( | 24 virtual void FileSelectedWithExtraInfo( |
25 const ui::SelectedFileInfo& file_info, | 25 const ui::SelectedFileInfo& file_info, |
26 int index, | 26 int index, |
27 void* params) OVERRIDE; | 27 void* params) OVERRIDE; |
28 | 28 |
29 // DownloadFilePicker implementation. | 29 // DownloadFilePicker implementation. |
30 // This looks up the gdata path instead of the temporary local path. | 30 // This looks up the gdata path instead of the temporary local path. |
31 virtual void InitSuggestedPath(content::DownloadItem* item) OVERRIDE; | 31 virtual void InitSuggestedPath(content::DownloadItem* item, |
| 32 const FilePath& suggested_path) OVERRIDE; |
32 | 33 |
33 DISALLOW_COPY_AND_ASSIGN(DownloadFilePickerChromeOS); | 34 DISALLOW_COPY_AND_ASSIGN(DownloadFilePickerChromeOS); |
34 }; | 35 }; |
35 | 36 |
36 #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_FILE_PICKER_CHROMEOS_H__ | 37 #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_FILE_PICKER_CHROMEOS_H__ |
OLD | NEW |