summaryrefslogtreecommitdiffstats
path: root/third_party
diff options
context:
space:
mode:
authortfarina <tfarina@chromium.org>2015-05-06 23:15:44 -0700
committerCommit bot <commit-bot@chromium.org>2015-05-07 06:16:10 +0000
commit80a6b57b01ff8c24144ae6ec34f0eed7d310ce72 (patch)
treecdb1bf501805582499722d4e5af55f94abe3360e /third_party
parente7dd319feb17faed689d4ff8f20f0312b9eba5e2 (diff)
downloadchromium_src-80a6b57b01ff8c24144ae6ec34f0eed7d310ce72.zip
chromium_src-80a6b57b01ff8c24144ae6ec34f0eed7d310ce72.tar.gz
chromium_src-80a6b57b01ff8c24144ae6ec34f0eed7d310ce72.tar.bz2
Update Chromium to use hunspell from third_party/hunspell_new.
After this, the next step will be to stop pulling hunspell in third_party/hunspell through DEPS. Removed the dependency on hunspell from chrome/browser/chromeos and chrome/browser/ui. Nothing in those places include from third_party/hunspell, so this dependency is not necessary and thus dropped. BUG=472897 R=brettw@chromium.org TBR=phajdan.jr@chromium.org # for checklicenses Review URL: https://codereview.chromium.org/1121793003 Cr-Commit-Position: refs/heads/master@{#328719}
Diffstat (limited to 'third_party')
-rw-r--r--third_party/hunspell_new/BUILD.gn2
-rw-r--r--third_party/hunspell_new/google/bdict.cc2
-rw-r--r--third_party/hunspell_new/google/bdict_reader.cc2
-rw-r--r--third_party/hunspell_new/google/bdict_reader.h2
-rw-r--r--third_party/hunspell_new/google/bdict_writer.cc4
-rw-r--r--third_party/hunspell_new/src/hunspell/filemgr.cxx2
-rw-r--r--third_party/hunspell_new/src/hunspell/hashmgr.hxx2
-rw-r--r--third_party/hunspell_new/src/hunspell/hunspell.hxx2
8 files changed, 9 insertions, 9 deletions
diff --git a/third_party/hunspell_new/BUILD.gn b/third_party/hunspell_new/BUILD.gn
index 80a27c8..4d5a955 100644
--- a/third_party/hunspell_new/BUILD.gn
+++ b/third_party/hunspell_new/BUILD.gn
@@ -10,7 +10,7 @@ config("hunspell_config") {
]
}
-source_set("hunspell") {
+source_set("hunspell_new") {
sources = [
"google/bdict.cc",
"google/bdict.h",
diff --git a/third_party/hunspell_new/google/bdict.cc b/third_party/hunspell_new/google/bdict.cc
index 3756f35..638bf06 100644
--- a/third_party/hunspell_new/google/bdict.cc
+++ b/third_party/hunspell_new/google/bdict.cc
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "third_party/hunspell/google/bdict.h"
+#include "third_party/hunspell_new/google/bdict.h"
// static
bool hunspell::BDict::Verify(const char* bdict_data, size_t bdict_length) {
diff --git a/third_party/hunspell_new/google/bdict_reader.cc b/third_party/hunspell_new/google/bdict_reader.cc
index ddd3c88..2f15f08 100644
--- a/third_party/hunspell_new/google/bdict_reader.cc
+++ b/third_party/hunspell_new/google/bdict_reader.cc
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "third_party/hunspell/google/bdict_reader.h"
+#include "third_party/hunspell_new/google/bdict_reader.h"
#include "base/logging.h"
diff --git a/third_party/hunspell_new/google/bdict_reader.h b/third_party/hunspell_new/google/bdict_reader.h
index 997e600..d4cbbd0 100644
--- a/third_party/hunspell_new/google/bdict_reader.h
+++ b/third_party/hunspell_new/google/bdict_reader.h
@@ -9,7 +9,7 @@
#include <vector>
#include "base/basictypes.h"
-#include "third_party/hunspell/google/bdict.h"
+#include "third_party/hunspell_new/google/bdict.h"
namespace hunspell {
diff --git a/third_party/hunspell_new/google/bdict_writer.cc b/third_party/hunspell_new/google/bdict_writer.cc
index cd39f10..838a71d 100644
--- a/third_party/hunspell_new/google/bdict_writer.cc
+++ b/third_party/hunspell_new/google/bdict_writer.cc
@@ -2,11 +2,11 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "third_party/hunspell/google/bdict_writer.h"
+#include "third_party/hunspell_new/google/bdict_writer.h"
#include "base/logging.h"
#include "base/strings/stringprintf.h"
-#include "third_party/hunspell/google/bdict.h"
+#include "third_party/hunspell_new/google/bdict.h"
namespace hunspell {
diff --git a/third_party/hunspell_new/src/hunspell/filemgr.cxx b/third_party/hunspell_new/src/hunspell/filemgr.cxx
index 05fc307..16217c5 100644
--- a/third_party/hunspell_new/src/hunspell/filemgr.cxx
+++ b/third_party/hunspell_new/src/hunspell/filemgr.cxx
@@ -8,7 +8,7 @@
#include "filemgr.hxx"
#ifdef HUNSPELL_CHROME_CLIENT
-#include "third_party/hunspell/google/bdict_reader.h"
+#include "third_party/hunspell_new/google/bdict_reader.h"
FileMgr::FileMgr(hunspell::LineIterator* iterator) : iterator_(iterator) {
}
diff --git a/third_party/hunspell_new/src/hunspell/hashmgr.hxx b/third_party/hunspell_new/src/hunspell/hashmgr.hxx
index ea581ae..8ac226a 100644
--- a/third_party/hunspell_new/src/hunspell/hashmgr.hxx
+++ b/third_party/hunspell_new/src/hunspell/hashmgr.hxx
@@ -14,7 +14,7 @@
#include "base/stl_util.h"
#include "base/strings/string_piece.h"
-#include "third_party/hunspell/google/bdict_reader.h"
+#include "third_party/hunspell_new/google/bdict_reader.h"
#endif
enum flag { FLAG_CHAR, FLAG_LONG, FLAG_NUM, FLAG_UNI };
diff --git a/third_party/hunspell_new/src/hunspell/hunspell.hxx b/third_party/hunspell_new/src/hunspell/hunspell.hxx
index a6c367b..e0393c0 100644
--- a/third_party/hunspell_new/src/hunspell/hunspell.hxx
+++ b/third_party/hunspell_new/src/hunspell/hunspell.hxx
@@ -6,7 +6,7 @@
#include "langnum.hxx"
#ifdef HUNSPELL_CHROME_CLIENT
-#include "third_party/hunspell/google/bdict_reader.h"
+#include "third_party/hunspell_new/google/bdict_reader.h"
#endif
#define SPELL_XML "<?xml?>"