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

Unified Diff: third_party/hunspell_new/src/hunspell/replist.hxx

Issue 1135173004: Rename third_party/hunspell_new back to third_party/hunspell. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/hunspell_new/src/hunspell/phonet.cxx ('k') | third_party/hunspell_new/src/hunspell/replist.cxx » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/hunspell_new/src/hunspell/replist.hxx
diff --git a/third_party/hunspell_new/src/hunspell/replist.hxx b/third_party/hunspell_new/src/hunspell/replist.hxx
deleted file mode 100644
index 0dd9b6c1240070eaada8a879d15cff2f842d6f38..0000000000000000000000000000000000000000
--- a/third_party/hunspell_new/src/hunspell/replist.hxx
+++ /dev/null
@@ -1,33 +0,0 @@
-/* string replacement list class */
-#ifndef _REPLIST_HXX_
-#define _REPLIST_HXX_
-
-#ifdef HUNSPELL_CHROME_CLIENT
-// Compilation issues in spellchecker.cc think near is a macro, therefore
-// removing it here solves that problem.
-#undef near
-#endif
-
-#include "hunvisapi.h"
-
-#include "w_char.hxx"
-
-class LIBHUNSPELL_DLL_EXPORTED RepList
-{
-protected:
- replentry ** dat;
- int size;
- int pos;
-
-public:
- RepList(int n);
- ~RepList();
-
- int get_pos();
- int add(char * pat1, char * pat2);
- replentry * item(int n);
- int near(const char * word);
- int match(const char * word, int n);
- int conv(const char * word, char * dest);
-};
-#endif
« no previous file with comments | « third_party/hunspell_new/src/hunspell/phonet.cxx ('k') | third_party/hunspell_new/src/hunspell/replist.cxx » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698