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

Unified Diff: ui/base/dialogs/selected_file_info.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: . 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: 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();
};

Powered by Google App Engine
This is Rietveld 408576698