summaryrefslogtreecommitdiffstats
path: root/chrome/browser
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser')
-rw-r--r--chrome/browser/spellcheck_unittest.cc1
-rw-r--r--chrome/browser/spellchecker.cc4
2 files changed, 2 insertions, 3 deletions
diff --git a/chrome/browser/spellcheck_unittest.cc b/chrome/browser/spellcheck_unittest.cc
index 7e817ec..8231e0d 100644
--- a/chrome/browser/spellcheck_unittest.cc
+++ b/chrome/browser/spellcheck_unittest.cc
@@ -31,7 +31,6 @@ FilePath GetHunspellDirectory() {
if (!PathService::Get(base::DIR_SOURCE_ROOT, &hunspell_directory))
return FilePath();
- hunspell_directory = hunspell_directory.AppendASCII("chrome");
hunspell_directory = hunspell_directory.AppendASCII("third_party");
hunspell_directory = hunspell_directory.AppendASCII("hunspell");
hunspell_directory = hunspell_directory.AppendASCII("dictionaries");
diff --git a/chrome/browser/spellchecker.cc b/chrome/browser/spellchecker.cc
index 8cb9dd7..b8bcc7f 100644
--- a/chrome/browser/spellchecker.cc
+++ b/chrome/browser/spellchecker.cc
@@ -23,7 +23,7 @@
#include "chrome/common/chrome_paths.h"
#include "chrome/common/pref_names.h"
#include "chrome/common/pref_service.h"
-#include "chrome/third_party/hunspell/src/hunspell/hunspell.hxx"
+#include "third_party/hunspell/src/hunspell/hunspell.hxx"
#include "grit/generated_resources.h"
#include "grit/locale_settings.h"
#include "net/url_request/url_request.h"
@@ -379,7 +379,7 @@ SpellChecker::SpellChecker(const FilePath& dict_dir,
url_request_context_(request_context),
obtaining_dictionary_(false),
auto_spell_correct_turned_on_(false),
- is_using_platform_spelling_engine_(false),
+ is_using_platform_spelling_engine_(false),
fetcher_(NULL),
ALLOW_THIS_IN_INITIALIZER_LIST(
on_dictionary_save_complete_callback_factory_(this)) {