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

Side by Side Diff: deps/third_party/hunspell/src/hunspell/hunspell.hxx

Issue 174130: Update hunspell imports to use deps location instead of previous location.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/
Patch Set: Created 11 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
« no previous file with comments | « deps/third_party/hunspell/src/hunspell/hashmgr.hxx ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #include "license.hunspell" 1 #include "license.hunspell"
2 #include "license.myspell" 2 #include "license.myspell"
3 3
4 #include "hashmgr.hxx" 4 #include "hashmgr.hxx"
5 #include "affixmgr.hxx" 5 #include "affixmgr.hxx"
6 #include "suggestmgr.hxx" 6 #include "suggestmgr.hxx"
7 #include "csutil.hxx" 7 #include "csutil.hxx"
8 #include "langnum.hxx" 8 #include "langnum.hxx"
9 9
10 #define SPELL_COMPOUND (1 << 0) 10 #define SPELL_COMPOUND (1 << 0)
(...skipping 11 matching lines...) Expand all
22 #if defined(W32) && defined(LIBRARY) 22 #if defined(W32) && defined(LIBRARY)
23 #define DLLTEST2_API __declspec(dllexport) 23 #define DLLTEST2_API __declspec(dllexport)
24 #else 24 #else
25 #define DLLTEST2_API 25 #define DLLTEST2_API
26 #endif 26 #endif
27 27
28 #ifndef _MYSPELLMGR_HXX_ 28 #ifndef _MYSPELLMGR_HXX_
29 #define _MYSPELLMGR_HXX_ 29 #define _MYSPELLMGR_HXX_
30 30
31 #ifdef HUNSPELL_CHROME_CLIENT 31 #ifdef HUNSPELL_CHROME_CLIENT
32 #include "chrome/third_party/hunspell/google/bdict_reader.h" 32 #include "third_party/hunspell/google/bdict_reader.h"
33 #endif 33 #endif
34 34
35 #ifdef W32 35 #ifdef W32
36 class DLLTEST2_API Hunspell 36 class DLLTEST2_API Hunspell
37 #else 37 #else
38 class Hunspell 38 class Hunspell
39 #endif 39 #endif
40 { 40 {
41 AffixMgr* pAMgr; 41 AffixMgr* pAMgr;
42 HashMgr* pHMgr; 42 HashMgr* pHMgr;
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 struct hentry * checkword(const char *, int * info, char **root); 145 struct hentry * checkword(const char *, int * info, char **root);
146 char * sharps_u8_l1(char * dest, char * source); 146 char * sharps_u8_l1(char * dest, char * source);
147 hentry * spellsharps(char * base, char *, int, int, char * tmp, int * info, c har **root); 147 hentry * spellsharps(char * base, char *, int, int, char * tmp, int * info, c har **root);
148 int is_keepcase(const hentry * rv); 148 int is_keepcase(const hentry * rv);
149 int insert_sug(char ***slst, char * word, int *ns); 149 int insert_sug(char ***slst, char * word, int *ns);
150 150
151 151
152 }; 152 };
153 153
154 #endif 154 #endif
OLDNEW
« no previous file with comments | « deps/third_party/hunspell/src/hunspell/hashmgr.hxx ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698