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

Unified Diff: chrome/browser/views/shell_dialogs_win.cc

Issue 63045: "Save page as..." disregarded the specified file path, because the result of ... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 11 years, 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/views/shell_dialogs_win.cc
===================================================================
--- chrome/browser/views/shell_dialogs_win.cc (revision 13174)
+++ chrome/browser/views/shell_dialogs_win.cc (working copy)
@@ -324,9 +324,13 @@
params.run_state.owner,
&path);
} else if (params.type == SELECT_SAVEAS_FILE) {
+ std::wstring path_as_wstring = path.ToWStringHack();
success = win_util::SaveFileAsWithFilter(params.run_state.owner,
params.default_path.ToWStringHack(), params.filter,
- params.default_extension, false, &filter_index, &path.ToWStringHack());
+ params.default_extension, false, &filter_index, &path_as_wstring);
+ if(success) {
+ path = FilePath::FromWStringHack(path_as_wstring);
+ }
DisableOwner(params.run_state.owner);
} else if (params.type == SELECT_OPEN_FILE) {
success = RunOpenFileDialog(params.title, params.filter,
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698