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

Unified Diff: third_party/hunspell128/src/hunspell/filemgr.hxx

Issue 173468: The first step towards fixing valgrind errors in the new hunspell.... (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/deps/
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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/hunspell128/src/hunspell/affixmgr.cxx ('k') | third_party/hunspell128/src/hunspell/filemgr.cxx » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/hunspell128/src/hunspell/filemgr.hxx
===================================================================
--- third_party/hunspell128/src/hunspell/filemgr.hxx (revision 24436)
+++ third_party/hunspell128/src/hunspell/filemgr.hxx (working copy)
@@ -3,6 +3,30 @@
#define _FILEMGR_HXX_
#include "hunzip.hxx"
+#ifdef HUNSPELL_CHROME_CLIENT
+namespace hunspell {
+class LineIterator;
+} // namespace hunspell
+
+// A class which encapsulates operations of reading a BDICT file.
+// Chrome uses a BDICT file to compress hunspell dictionaries. A BDICT file is
+// a binary file converted from a DIC file and an AFF file. (See
+// "bdict_reader.h" for its format.)
+// This class encapsulates the operations of reading a BDICT file and emulates
+// the original FileMgr operations for AffixMgr so that it can read a BDICT
+// file without so many changes.
+class FileMgr {
+ public:
+ FileMgr(hunspell::LineIterator* iterator);
+ ~FileMgr();
+ char * getline();
+ int getlinenum();
+
+ protected:
+ hunspell::LineIterator* iterator_;
+ char line_[BUFSIZE + 50]; // input buffer
+};
+#else
class FileMgr
{
protected:
@@ -19,3 +43,5 @@
int getlinenum();
};
#endif
+
+#endif
« no previous file with comments | « third_party/hunspell128/src/hunspell/affixmgr.cxx ('k') | third_party/hunspell128/src/hunspell/filemgr.cxx » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698