| Index: chrome/browser/chromeos/base/file_flusher_unittest.cc
|
| diff --git a/chrome/browser/chromeos/base/file_flusher_unittest.cc b/chrome/browser/chromeos/base/file_flusher_unittest.cc
|
| index cfcff2a0787d8199d3806b5a985901bd75eff01e..4649d82e9493a7d90208075940cdac62bab6af2b 100644
|
| --- a/chrome/browser/chromeos/base/file_flusher_unittest.cc
|
| +++ b/chrome/browser/chromeos/base/file_flusher_unittest.cc
|
| @@ -51,7 +51,7 @@ class FileFlusherTest : public testing::Test {
|
| for (size_t j = 1; j <= kNumFiles; ++j) {
|
| const std::string path = base::StringPrintf("dir%zu/file%zu", i, j);
|
| const std::string content = base::StringPrintf("content %zu %zu", i, j);
|
| - WriteStringToFile(temp_dir_.path().AppendASCII(path), content);
|
| + WriteStringToFile(temp_dir_.GetPath().AppendASCII(path), content);
|
| }
|
| }
|
| }
|
| @@ -73,7 +73,7 @@ class FileFlusherTest : public testing::Test {
|
| if (path.IsAbsolute())
|
| return path;
|
|
|
| - return temp_dir_.path().Append(path);
|
| + return temp_dir_.GetPath().Append(path);
|
| }
|
|
|
| void OnFlush(const base::FilePath& path) { ++flush_counts_[path]; }
|
|
|