Chromium Code Reviews| Index: ui/base/dialogs/selected_file_info.h |
| diff --git a/ui/base/dialogs/selected_file_info.h b/ui/base/dialogs/selected_file_info.h |
| index 005de6faecc88e73931ac02d54ded641b5cf70dd..1d086825c00084641a9ae1aa8717b98b248cf8b3 100644 |
| --- a/ui/base/dialogs/selected_file_info.h |
| +++ b/ui/base/dialogs/selected_file_info.h |
| @@ -15,9 +15,11 @@ namespace ui { |
| // Struct used for passing selected file info to WebKit. |
| struct UI_EXPORT SelectedFileInfo { |
| + FilePath file_path; |
|
achuithb
2012/07/24 20:13:05
Maybe add a comment here? What does file_path look
tbarzic
2012/07/25 02:02:54
yeah, I meant to add a comment here..
|
| + |
| // The real path to the selected file. This can be a snapshot file with a |
| // human unreadable name like /blah/.d41d8cd98f00b204e9800998ecf8427e. |
| - FilePath path; |
| + FilePath real_path; |
| // This field is optional. The display name contains only the base name |
| // portion of a file name (ex. no path separators), and used for displaying |
| @@ -26,8 +28,8 @@ struct UI_EXPORT SelectedFileInfo { |
| FilePath::StringType display_name; |
| SelectedFileInfo(); |
| - SelectedFileInfo(const FilePath& in_path, |
| - const FilePath::StringType& in_display_name); |
| + SelectedFileInfo(const FilePath& in_file_path, |
| + const FilePath& in_real_path); |
| ~SelectedFileInfo(); |
| }; |