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

Side by Side Diff: chrome/tools/convert_dict/dic_reader.h

Issue 3179017: FBTF: Remove "obviously" unneeded standard C++ library #includes. (Closed)
Patch Set: fixed mac oopsie Created 10 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
« no previous file with comments | « chrome/test/test_launcher/test_runner.h ('k') | chrome/worker/webworkerclient_proxy.h » ('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) 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 #ifndef CHROME_TOOLS_CONVERT_DICT_DIC_READER_H__ 5 #ifndef CHROME_TOOLS_CONVERT_DICT_DIC_READER_H__
6 #define CHROME_TOOLS_CONVERT_DICT_DIC_READER_H__ 6 #define CHROME_TOOLS_CONVERT_DICT_DIC_READER_H__
7 #pragma once 7 #pragma once
8 8
9 #include <stdio.h> 9 #include <stdio.h>
10 #include <map> 10
11 #include <string> 11 #include <string>
12 #include <vector> 12 #include <vector>
13 13
14 class FilePath; 14 class FilePath;
15 15
16 namespace convert_dict { 16 namespace convert_dict {
17 17
18 class AffReader; 18 class AffReader;
19 19
20 // Reads Hunspell .dic files. 20 // Reads Hunspell .dic files.
(...skipping 19 matching lines...) Expand all
40 FILE* file_; 40 FILE* file_;
41 FILE* additional_words_file_; 41 FILE* additional_words_file_;
42 42
43 // Contains all words and their corresponding affix index. 43 // Contains all words and their corresponding affix index.
44 WordList words_; 44 WordList words_;
45 }; 45 };
46 46
47 } // namespace convert_dict 47 } // namespace convert_dict
48 48
49 #endif // CHROME_TOOLS_CONVERT_DICT_DIC_READER_H__ 49 #endif // CHROME_TOOLS_CONVERT_DICT_DIC_READER_H__
OLDNEW
« no previous file with comments | « chrome/test/test_launcher/test_runner.h ('k') | chrome/worker/webworkerclient_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698