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

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

Issue 486843004: Change base/file_utils.h includes to base/files/file_utils.h in chrome/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix bad merge Created 6 years, 4 months 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
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #include "chrome/tools/convert_dict/aff_reader.h" 5 #include "chrome/tools/convert_dict/aff_reader.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "base/file_util.h" 9 #include "base/files/file_util.h"
10 #include "base/i18n/icu_string_conversions.h" 10 #include "base/i18n/icu_string_conversions.h"
11 #include "base/strings/string_split.h" 11 #include "base/strings/string_split.h"
12 #include "base/strings/stringprintf.h" 12 #include "base/strings/stringprintf.h"
13 #include "base/strings/utf_string_conversions.h" 13 #include "base/strings/utf_string_conversions.h"
14 #include "chrome/tools/convert_dict/hunspell_reader.h" 14 #include "chrome/tools/convert_dict/hunspell_reader.h"
15 15
16 namespace convert_dict { 16 namespace convert_dict {
17 17
18 namespace { 18 namespace {
19 19
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after
327 } 327 }
328 328
329 void AffReader::HandleEncodedCommand(const std::string& line) { 329 void AffReader::HandleEncodedCommand(const std::string& line) {
330 std::string utf8; 330 std::string utf8;
331 if (!EncodingToUTF8(line, &utf8)) 331 if (!EncodingToUTF8(line, &utf8))
332 Panic("Cannot encode command '%s' to utf8.", line.c_str()); 332 Panic("Cannot encode command '%s' to utf8.", line.c_str());
333 other_commands_.push_back(utf8); 333 other_commands_.push_back(utf8);
334 } 334 }
335 335
336 } // namespace convert_dict 336 } // namespace convert_dict
OLDNEW
« no previous file with comments | « chrome/test/remoting/remote_desktop_browsertest.cc ('k') | chrome/tools/convert_dict/convert_dict.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698