| Index: base/files/file_path_watcher_browsertest.cc
|
| diff --git a/base/files/file_path_watcher_browsertest.cc b/base/files/file_path_watcher_browsertest.cc
|
| index aed409c78714ed9d2f3ce8d1c3ee6f678eef2286..cd3c048a837b50104259261ca6e92306684a2c3a 100644
|
| --- a/base/files/file_path_watcher_browsertest.cc
|
| +++ b/base/files/file_path_watcher_browsertest.cc
|
| @@ -172,8 +172,7 @@ class FilePathWatcherTest : public testing::Test {
|
|
|
| // Write |content| to |file|. Returns true on success.
|
| bool WriteFile(const FilePath& file, const std::string& content) {
|
| - int write_size = file_util::WriteFile(file, content.c_str(),
|
| - content.length());
|
| + int write_size = ::base::WriteFile(file, content.c_str(), content.length());
|
| return write_size == static_cast<int>(content.length());
|
| }
|
|
|
|
|