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

Side by Side Diff: chrome/tools/convert_dict/convert_dict_unittest.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, 3 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
« no previous file with comments | « chrome/tools/convert_dict/convert_dict.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 <map> 5 #include <map>
6 #include <string> 6 #include <string>
7 7
8 #include "base/file_util.h" 8 #include "base/files/file_util.h"
9 #include "base/format_macros.h" 9 #include "base/format_macros.h"
10 #include "base/i18n/icu_string_conversions.h" 10 #include "base/i18n/icu_string_conversions.h"
11 #include "base/strings/stringprintf.h" 11 #include "base/strings/stringprintf.h"
12 #include "base/strings/utf_string_conversions.h" 12 #include "base/strings/utf_string_conversions.h"
13 #include "chrome/tools/convert_dict/aff_reader.h" 13 #include "chrome/tools/convert_dict/aff_reader.h"
14 #include "chrome/tools/convert_dict/dic_reader.h" 14 #include "chrome/tools/convert_dict/dic_reader.h"
15 #include "testing/gtest/include/gtest/gtest.h" 15 #include "testing/gtest/include/gtest/gtest.h"
16 #include "third_party/hunspell/google/bdict_reader.h" 16 #include "third_party/hunspell/google/bdict_reader.h"
17 #include "third_party/hunspell/google/bdict_writer.h" 17 #include "third_party/hunspell/google/bdict_writer.h"
18 18
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 }; 198 };
199 199
200 std::map<base::string16, bool> word_list; 200 std::map<base::string16, bool> word_list;
201 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(kWords); ++i) 201 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(kWords); ++i)
202 word_list.insert( 202 word_list.insert(
203 std::make_pair<base::string16, bool>(base::WideToUTF16(kWords[i]), 203 std::make_pair<base::string16, bool>(base::WideToUTF16(kWords[i]),
204 true)); 204 true));
205 205
206 RunDictionaryTest(kCodepage, word_list); 206 RunDictionaryTest(kCodepage, word_list);
207 } 207 }
OLDNEW
« no previous file with comments | « chrome/tools/convert_dict/convert_dict.cc ('k') | chrome/tools/convert_dict/dic_reader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698