diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-26 15:11:55 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-26 15:11:55 +0000 |
commit | 1840cfcf0da037741761abe2c04f73c354dff17a (patch) | |
tree | c4c457c2644b8878c3b6cea341cb152efad86d45 /printing | |
parent | 9e8554820f3b972d410ae9a96b837a65ab8d0333 (diff) | |
download | chromium_src-1840cfcf0da037741761abe2c04f73c354dff17a.zip chromium_src-1840cfcf0da037741761abe2c04f73c354dff17a.tar.gz chromium_src-1840cfcf0da037741761abe2c04f73c354dff17a.tar.bz2 |
Deprecate file_util::AppendToPath() on non-Windows.
We still have ~150 callers to AppendToPath in our code, but most of
them are in the installer and I'm reluctant to fiddle with that code
without having an easy way to test it.
BUG=24672
Review URL: http://codereview.chromium.org/654013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40120 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'printing')
-rw-r--r-- | printing/printed_document.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/printing/printed_document.cc b/printing/printed_document.cc index 7452e0e..6058968 100644 --- a/printing/printed_document.cc +++ b/printing/printed_document.cc @@ -270,10 +270,10 @@ void PrintedDocument::DebugDump(const PrintedPage& page) { file_util::ReplaceIllegalCharactersInPath(&narrow_filename, '_'); filename = UTF8ToWide(narrow_filename); #endif - std::wstring path(g_debug_dump_info->debug_dump_path); - file_util::AppendToPath(&path, filename); + FilePath path = FilePath::FromWStringHack( + g_debug_dump_info->debug_dump_path); #if defined(OS_WIN) - page.native_metafile()->SaveTo(path); + page.native_metafile()->SaveTo(path.Append(filename).ToWStringHack()); #else // OS_WIN NOTIMPLEMENTED(); #endif // OS_WIN |