| Index: chrome/installer/util/move_tree_work_item_unittest.cc
|
| ===================================================================
|
| --- chrome/installer/util/move_tree_work_item_unittest.cc (revision 184354)
|
| +++ chrome/installer/util/move_tree_work_item_unittest.cc (working copy)
|
| @@ -33,7 +33,7 @@
|
| void CreateTextFile(const std::wstring& filename,
|
| const std::wstring& contents) {
|
| std::wofstream file;
|
| - file.open(base::WideToASCII(filename).c_str());
|
| + file.open(WideToASCII(filename).c_str());
|
| ASSERT_TRUE(file.is_open());
|
| file << contents;
|
| file.close();
|
| @@ -43,7 +43,7 @@
|
| std::wstring ReadTextFile(const base::FilePath& path) {
|
| WCHAR contents[64];
|
| std::wifstream file;
|
| - file.open(base::WideToASCII(path.value()).c_str());
|
| + file.open(WideToASCII(path.value()).c_str());
|
| EXPECT_TRUE(file.is_open());
|
| file.getline(contents, arraysize(contents));
|
| file.close();
|
|
|