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

Unified Diff: ui/shell_dialogs/selected_file_info.h

Issue 12217101: Replace FilePath with base::FilePath in some more top level directories. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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
« no previous file with comments | « ui/shell_dialogs/select_file_dialog_win.cc ('k') | ui/shell_dialogs/selected_file_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/shell_dialogs/selected_file_info.h
diff --git a/ui/shell_dialogs/selected_file_info.h b/ui/shell_dialogs/selected_file_info.h
index 3ace821ac7890fcc93ed04626f4eab489b776982..57228edd83382e3aa8c3b59fd9f38ab948d75615 100644
--- a/ui/shell_dialogs/selected_file_info.h
+++ b/ui/shell_dialogs/selected_file_info.h
@@ -16,7 +16,7 @@ namespace ui {
// Struct used for passing selected file info to WebKit.
struct SHELL_DIALOGS_EXPORT SelectedFileInfo {
// Selected file's user friendly path as seen in the UI.
- FilePath file_path;
+ base::FilePath file_path;
// The actual local path to the selected file. This can be a snapshot file
// with a human unreadable name like /blah/.d41d8cd98f00b204e9800998ecf8427e.
@@ -24,17 +24,17 @@ struct SHELL_DIALOGS_EXPORT SelectedFileInfo {
// /drive_cache/temporary/d41d8cd98f00b204e9800998ecf8427e vs.
// /special/drive/foo.txt).
// If not set, defaults to |file_path|.
- FilePath local_path;
+ base::FilePath local_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
// selected file names. If this field is empty, the base name portion of
// |path| is used for displaying.
- FilePath::StringType display_name;
+ base::FilePath::StringType display_name;
SelectedFileInfo();
- SelectedFileInfo(const FilePath& in_file_path,
- const FilePath& in_local_path);
+ SelectedFileInfo(const base::FilePath& in_file_path,
+ const base::FilePath& in_local_path);
~SelectedFileInfo();
};
« no previous file with comments | « ui/shell_dialogs/select_file_dialog_win.cc ('k') | ui/shell_dialogs/selected_file_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698