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

Unified Diff: chrome/browser/spellchecker.h

Issue 155394: [chromium-reviews] For system-level installs, if the spellcheck dictionary fails to get download... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 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 | « no previous file | chrome/browser/spellchecker.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/spellchecker.h
===================================================================
--- chrome/browser/spellchecker.h (revision 20881)
+++ chrome/browser/spellchecker.h (working copy)
@@ -147,9 +147,16 @@
static std::string GetCorrespondingSpellCheckLanguage(
const std::string& language);
- // Path to the spellchecker file.
- FilePath bdict_file_name_;
+ // Start the dictionary download process in the file thread. On completion,
+ // this function calls on set_file_is_downloading() in the IO thread to notify
+ // that download has completed. This function has to be called in the IO
+ // thread.
+ void StartDictionaryDownloadInFileThread(const FilePath& file_name);
+ // The given path to the directory whether SpellChecker first tries to
+ // download the spellcheck bdic dictionary file.
+ FilePath given_dictionary_directory_;
+
// Path to the custom dictionary file.
FilePath custom_dictionary_file_name_;
@@ -167,6 +174,9 @@
// attempted initialiation, we won't retry to avoid failure loops.
bool tried_to_init_;
+ // The language that this spellchecker works in.
+ std::string language_;
+
#ifndef NDEBUG
// This object must only be used on the same thread. However, it is normally
// created on the UI thread. This checks calls to SpellCheckWord and the
@@ -177,9 +187,8 @@
MessageLoop* worker_loop_;
#endif
- // Flag indicating whether we've tried to download dictionary files. If we've
- // already attempted download, we won't retry to avoid failure loops.
- bool tried_to_download_;
+ // Flag indicating whether we tried to download the dictionary file.
+ bool tried_to_download_dictionary_file_;
// File Thread Message Loop.
MessageLoop* file_loop_;
« no previous file with comments | « no previous file | chrome/browser/spellchecker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698