| Index: chrome/tools/convert_dict/aff_reader.cc
|
| diff --git a/chrome/tools/convert_dict/aff_reader.cc b/chrome/tools/convert_dict/aff_reader.cc
|
| index b6ad12c25255109b6252e6b5c3f32efbe8860583..6ef94a8f2e8497fadfca23675d97dc868f60b972 100644
|
| --- a/chrome/tools/convert_dict/aff_reader.cc
|
| +++ b/chrome/tools/convert_dict/aff_reader.cc
|
| @@ -60,7 +60,7 @@ void Panic(const char* fmt, ...) {
|
|
|
| AffReader::AffReader(const base::FilePath& path)
|
| : has_indexed_affixes_(false) {
|
| - file_ = file_util::OpenFile(path, "r");
|
| + file_ = base::OpenFile(path, "r");
|
|
|
| // Default to Latin1 in case the file doesn't specify it.
|
| encoding_ = "ISO8859-1";
|
| @@ -68,7 +68,7 @@ AffReader::AffReader(const base::FilePath& path)
|
|
|
| AffReader::~AffReader() {
|
| if (file_)
|
| - file_util::CloseFile(file_);
|
| + base::CloseFile(file_);
|
| }
|
|
|
| bool AffReader::Read() {
|
|
|