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

Side by Side Diff: chrome/tools/convert_dict/convert_dict.cc

Issue 109043002: Move more file_util functions to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/tools/convert_dict/aff_reader.cc ('k') | chrome/tools/convert_dict/dic_reader.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This tool converts Hunspell .aff/.dic pairs to a combined binary dictionary 5 // This tool converts Hunspell .aff/.dic pairs to a combined binary dictionary
6 // format (.bdic). This format is more compact, and can be more efficiently 6 // format (.bdic). This format is more compact, and can be more efficiently
7 // read by the client application. 7 // read by the client application.
8 // 8 //
9 // We do this conversion manually before publishing dictionary files. It is not 9 // We do this conversion manually before publishing dictionary files. It is not
10 // part of any build process. 10 // part of any build process.
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 129
130 printf("Verifying...\n"); 130 printf("Verifying...\n");
131 if (!VerifyWords(dic_reader.words(), serialized)) { 131 if (!VerifyWords(dic_reader.words(), serialized)) {
132 printf("ERROR converting, the dictionary does not check out OK."); 132 printf("ERROR converting, the dictionary does not check out OK.");
133 return 1; 133 return 1;
134 } 134 }
135 135
136 base::FilePath out_path = 136 base::FilePath out_path =
137 file_base.ReplaceExtension(FILE_PATH_LITERAL(".bdic")); 137 file_base.ReplaceExtension(FILE_PATH_LITERAL(".bdic"));
138 printf("Writing %" PRFilePath " ...\n", out_path.value().c_str()); 138 printf("Writing %" PRFilePath " ...\n", out_path.value().c_str());
139 FILE* out_file = file_util::OpenFile(out_path, "wb"); 139 FILE* out_file = base::OpenFile(out_path, "wb");
140 if (!out_file) { 140 if (!out_file) {
141 printf("ERROR writing file\n"); 141 printf("ERROR writing file\n");
142 return 1; 142 return 1;
143 } 143 }
144 size_t written = fwrite(&serialized[0], 1, serialized.size(), out_file); 144 size_t written = fwrite(&serialized[0], 1, serialized.size(), out_file);
145 CHECK(written == serialized.size()); 145 CHECK(written == serialized.size());
146 file_util::CloseFile(out_file); 146 base::CloseFile(out_file);
147 147
148 return 0; 148 return 0;
149 } 149 }
OLDNEW
« no previous file with comments | « chrome/tools/convert_dict/aff_reader.cc ('k') | chrome/tools/convert_dict/dic_reader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698