summaryrefslogtreecommitdiffstats
path: root/third_party/hunspell/google
diff options
context:
space:
mode:
authortfarina <tfarina@chromium.org>2015-08-03 12:55:35 -0700
committerCommit bot <commit-bot@chromium.org>2015-08-03 19:56:01 +0000
commit609249dfdaa7b099a90a83b151f88c86176689fb (patch)
tree3b082254a00589e5405de9bbad5e24c7db1e7527 /third_party/hunspell/google
parentdc962f63f85ee762253ad0354ce72fac72332ba5 (diff)
downloadchromium_src-609249dfdaa7b099a90a83b151f88c86176689fb.zip
chromium_src-609249dfdaa7b099a90a83b151f88c86176689fb.tar.gz
chromium_src-609249dfdaa7b099a90a83b151f88c86176689fb.tar.bz2
third_party/hunspell: Use DISALLOW_COPY_AND_ASSIGN macro.
The EVIL is deprecated and will be removed in future. BUG=None R=rouslan@chromium.org Review URL: https://codereview.chromium.org/1266103004 Cr-Commit-Position: refs/heads/master@{#341593}
Diffstat (limited to 'third_party/hunspell/google')
-rw-r--r--third_party/hunspell/google/bdict_reader.h4
-rw-r--r--third_party/hunspell/google/bdict_writer.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/third_party/hunspell/google/bdict_reader.h b/third_party/hunspell/google/bdict_reader.h
index 997e600..370391d 100644
--- a/third_party/hunspell/google/bdict_reader.h
+++ b/third_party/hunspell/google/bdict_reader.h
@@ -8,7 +8,7 @@
#include <string>
#include <vector>
-#include "base/basictypes.h"
+#include "base/macros.h"
#include "third_party/hunspell/google/bdict.h"
namespace hunspell {
@@ -145,7 +145,7 @@ class BDictReader {
const BDict::AffHeader* aff_header_;
- DISALLOW_EVIL_CONSTRUCTORS(BDictReader);
+ DISALLOW_COPY_AND_ASSIGN(BDictReader);
};
} // namespace hunspell
diff --git a/third_party/hunspell/google/bdict_writer.h b/third_party/hunspell/google/bdict_writer.h
index c341708..e4366d9 100644
--- a/third_party/hunspell/google/bdict_writer.h
+++ b/third_party/hunspell/google/bdict_writer.h
@@ -8,7 +8,7 @@
#include <string>
#include <vector>
-#include "base/basictypes.h"
+#include "base/macros.h"
namespace hunspell {
@@ -62,7 +62,7 @@ class BDictWriter {
// Root of the generated trie. Filled by SetWords.
DicNode* trie_root_;
- DISALLOW_EVIL_CONSTRUCTORS(BDictWriter);
+ DISALLOW_COPY_AND_ASSIGN(BDictWriter);
};
} // namespace hunspell