Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(987)

Unified Diff: trunk/src/chrome/tools/convert_dict/aff_reader.cc

Issue 105823009: Revert 239280 "Move more file_util functions to base namespace." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: trunk/src/chrome/tools/convert_dict/aff_reader.cc
===================================================================
--- trunk/src/chrome/tools/convert_dict/aff_reader.cc (revision 239399)
+++ trunk/src/chrome/tools/convert_dict/aff_reader.cc (working copy)
@@ -60,7 +60,7 @@
AffReader::AffReader(const base::FilePath& path)
: has_indexed_affixes_(false) {
- file_ = base::OpenFile(path, "r");
+ file_ = file_util::OpenFile(path, "r");
// Default to Latin1 in case the file doesn't specify it.
encoding_ = "ISO8859-1";
@@ -68,7 +68,7 @@
AffReader::~AffReader() {
if (file_)
- base::CloseFile(file_);
+ file_util::CloseFile(file_);
}
bool AffReader::Read() {
« no previous file with comments | « trunk/src/chrome/browser/web_applications/web_app_win.cc ('k') | trunk/src/chrome/tools/convert_dict/convert_dict.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698