diff options
author | hbono@chromium.org <hbono@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-03 03:32:31 +0000 |
---|---|---|
committer | hbono@chromium.org <hbono@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-03 03:32:31 +0000 |
commit | a0c30347181cc7e5a5a6dc26b00ecd6f0caf0e97 (patch) | |
tree | 51349f958b8ff095f725306f9ae0412fe7a60063 | |
parent | 15c5308c0936da6a3817fd36df2d29f1aa2ced5e (diff) | |
download | chromium_src-a0c30347181cc7e5a5a6dc26b00ecd6f0caf0e97.zip chromium_src-a0c30347181cc7e5a5a6dc26b00ecd6f0caf0e97.tar.gz chromium_src-a0c30347181cc7e5a5a6dc26b00ecd6f0caf0e97.tar.bz2 |
Pulls the hunspell dictionaries to "third_party/hunspell_dictionaries".
This change just pulls the hunspell dictionaries moved by my r48011.
TBR=estade
BUG=44543
TEST=none
Review URL: http://codereview.chromium.org/2074023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48807 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | DEPS | 5 | ||||
-rw-r--r-- | chrome/renderer/spellchecker/spellcheck_unittest.cc | 3 |
2 files changed, 5 insertions, 3 deletions
@@ -36,7 +36,10 @@ deps = { "/trunk/deps/third_party/icu42@47106", "src/third_party/hunspell": - "/trunk/deps/third_party/hunspell128@46230", + "/trunk/deps/third_party/hunspell128@48011", + + "src/third_party/hunspell_dictionaries": + "/trunk/deps/third_party/hunspell_dictionaries@48011", "src/third_party/protobuf2/src": "http://protobuf.googlecode.com/svn/trunk@327", diff --git a/chrome/renderer/spellchecker/spellcheck_unittest.cc b/chrome/renderer/spellchecker/spellcheck_unittest.cc index 2b956ee..bb5b2f5 100644 --- a/chrome/renderer/spellchecker/spellcheck_unittest.cc +++ b/chrome/renderer/spellchecker/spellcheck_unittest.cc @@ -28,8 +28,7 @@ FilePath GetHunspellDirectory() { return FilePath(); hunspell_directory = hunspell_directory.AppendASCII("third_party"); - hunspell_directory = hunspell_directory.AppendASCII("hunspell"); - hunspell_directory = hunspell_directory.AppendASCII("dictionaries"); + hunspell_directory = hunspell_directory.AppendASCII("hunspell_dictionaries"); return hunspell_directory; } |