summaryrefslogtreecommitdiffstats
path: root/chrome/installer/util/work_item.cc
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-27 00:03:07 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-27 00:03:07 +0000
commitee1f3c133a452dfea8b405c0ac589e84be98f335 (patch)
tree8c75d7edf08705bd0cefad0e30b7048f04f0ccf1 /chrome/installer/util/work_item.cc
parentcd4312179c0f13b6b330c7a9e46a6347deb27668 (diff)
downloadchromium_src-ee1f3c133a452dfea8b405c0ac589e84be98f335.zip
chromium_src-ee1f3c133a452dfea8b405c0ac589e84be98f335.tar.gz
chromium_src-ee1f3c133a452dfea8b405c0ac589e84be98f335.tar.bz2
wstring: use a few more FilePaths to remove Hack functions
BUG=69467 Review URL: http://codereview.chromium.org/6377011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72728 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/installer/util/work_item.cc')
-rw-r--r--chrome/installer/util/work_item.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/installer/util/work_item.cc b/chrome/installer/util/work_item.cc
index 546b9ebc..c62a383 100644
--- a/chrome/installer/util/work_item.cc
+++ b/chrome/installer/util/work_item.cc
@@ -23,11 +23,11 @@ WorkItem::~WorkItem() {
}
CopyTreeWorkItem* WorkItem::CreateCopyTreeWorkItem(
- const std::wstring& source_path,
- const std::wstring& dest_path,
- const std::wstring& temp_dir,
+ const FilePath& source_path,
+ const FilePath& dest_path,
+ const FilePath& temp_dir,
CopyOverWriteOption overwrite_option,
- const std::wstring& alternative_path) {
+ const FilePath& alternative_path) {
return new CopyTreeWorkItem(source_path, dest_path, temp_dir,
overwrite_option, alternative_path);
}