summaryrefslogtreecommitdiffstats
path: root/chrome/browser/jumplist.cc
diff options
context:
space:
mode:
authorerikkay@chromium.org <erikkay@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-18 16:07:55 +0000
committererikkay@chromium.org <erikkay@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-18 16:07:55 +0000
commit33edeab42b851a5617a77caa1d65a3782a01ee7b (patch)
treed1baa44ff796c9f0c4881e9819e7e5b359489b1d /chrome/browser/jumplist.cc
parentf348b92e95dd67fef3a9a6109bc0465fb4078d6b (diff)
downloadchromium_src-33edeab42b851a5617a77caa1d65a3782a01ee7b.zip
chromium_src-33edeab42b851a5617a77caa1d65a3782a01ee7b.tar.gz
chromium_src-33edeab42b851a5617a77caa1d65a3782a01ee7b.tar.bz2
Renames the function CreateTemporaryFilename to CreateTemporaryFile and track down all callers, also removes the
deprecated function that uses std::wstring. BUG=3078 (http://crbug.com/3078) TEST=run base_unittests, installer_util_unittests, net_unittests, setup_unittests, and unit_tests. Review URL: http://codereview.chromium.org/164537 Patch from Thiago Farina. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23631 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/jumplist.cc')
-rw-r--r--chrome/browser/jumplist.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/jumplist.cc b/chrome/browser/jumplist.cc
index 81342aa..26b0e75 100644
--- a/chrome/browser/jumplist.cc
+++ b/chrome/browser/jumplist.cc
@@ -243,18 +243,18 @@ bool CreateIconFile(const SkBitmap& bitmap,
// Retrieve the path to a temporary file.
// We don't have to care about the extension of this temporary file because
// JumpList does not care about it.
- std::wstring path;
- if (!file_util::CreateTemporaryFileNameInDir(icon_dir, &path))
+ FilePath path;
+ if (!file_util::CreateTemporaryFileInDir(FilePath(icon_dir), &path))
return false;
// Create an icon file from the favicon attached to the given |page|, and
// save it as the temporary file.
- if (!IconUtil::CreateIconFileFromSkBitmap(bitmap, path))
+ if (!IconUtil::CreateIconFileFromSkBitmap(bitmap, path.value()))
return false;
// Add this icon file to the list and return its absolute path.
// The IShellLink::SetIcon() function needs the absolute path to an icon.
- icon_path->assign(path);
+ icon_path->assign(path.value());
return true;
}