Index: chrome/browser/spellcheck_host.h |
=================================================================== |
--- chrome/browser/spellcheck_host.h (revision 32064) |
+++ chrome/browser/spellcheck_host.h (working copy) |
@@ -8,8 +8,8 @@ |
#include <string> |
#include <vector> |
+#include "base/file_descriptor_posix.h" |
#include "base/file_path.h" |
-#include "base/platform_file.h" |
#include "base/ref_counted.h" |
#include "chrome/browser/chrome_thread.h" |
#include "chrome/browser/net/url_fetcher.h" |
@@ -35,7 +35,7 @@ |
// update. |
void AddWord(const std::string& word); |
- const base::PlatformFile& bdict_file() const { return file_; } |
+ const base::FileDescriptor& bdict_fd() const { return fd_; }; |
const std::vector<std::string>& custom_words() const { return custom_words_; } |
@@ -50,14 +50,6 @@ |
virtual ~SpellCheckHost(); |
- // Figure out the location for the dictionary. This is only non-trivial for |
- // Windows: |
- // The default place whether the spellcheck dictionary can reside is |
- // chrome::DIR_APP_DICTIONARIES. However, for systemwide installations, |
- // this directory may not have permissions for download. In that case, the |
- // alternate directory for download is chrome::DIR_USER_DATA. |
- void InitializeDictionaryLocation(); |
- |
// Load and parse the custom words dictionary and open the bdic file. |
// Executed on the file thread. |
void Initialize(); |
@@ -84,7 +76,7 @@ |
Observer* observer_; |
// The desired location of the dictionary file (whether or not it exists yet). |
- FilePath bdict_file_path_; |
+ FilePath bdict_file_; |
// The location of the custom words file. |
FilePath custom_dictionary_file_; |
@@ -92,8 +84,8 @@ |
// The language of the dictionary file. |
std::string language_; |
- // The file descriptor/handle for the dictionary file. |
- base::PlatformFile file_; |
+ // On POSIX, the file descriptor for the dictionary file. |
+ base::FileDescriptor fd_; |
// In-memory cache of the custom words file. |
std::vector<std::string> custom_words_; |