OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_COMMON_SPELLCHECK_BDICT_LANGUAGE_H_ | 5 #ifndef COMPONENTS_SPELLCHECK_COMMON_SPELLCHECK_BDICT_LANGUAGE_H_ |
6 #define CHROME_COMMON_SPELLCHECK_BDICT_LANGUAGE_H_ | 6 #define COMPONENTS_SPELLCHECK_COMMON_SPELLCHECK_BDICT_LANGUAGE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "ipc/ipc_platform_file.h" | 10 #include "ipc/ipc_platform_file.h" |
11 | 11 |
12 struct SpellCheckBDictLanguage { | 12 struct SpellCheckBDictLanguage { |
13 IPC::PlatformFileForTransit file; | 13 IPC::PlatformFileForTransit file; |
14 std::string language; | 14 std::string language; |
15 }; | 15 }; |
16 | 16 |
17 #endif // CHROME_COMMON_SPELLCHECK_BDICT_LANGUAGE_H_ | 17 #endif // COMPONENTS_SPELLCHECK_COMMON_SPELLCHECK_BDICT_LANGUAGE_H_ |
OLD | NEW |