Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7336)

Unified Diff: chrome/renderer/spellchecker/hunspell_engine.cc

Issue 430583005: Make VEA test support videos with different coded size and visible size (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address review comments of patch set 12 Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/renderer/spellchecker/hunspell_engine.cc
diff --git a/chrome/renderer/spellchecker/hunspell_engine.cc b/chrome/renderer/spellchecker/hunspell_engine.cc
index f8071efc69d4823d4c67a3a15086af8662771c10..db6098b4d6eb606b4908f90bb4b08af0387bae8a 100644
--- a/chrome/renderer/spellchecker/hunspell_engine.cc
+++ b/chrome/renderer/spellchecker/hunspell_engine.cc
@@ -62,7 +62,7 @@ void HunspellEngine::InitializeHunspell() {
bdict_file_.reset(new base::MemoryMappedFile);
- if (bdict_file_->Initialize(file_.Pass())) {
+ if (bdict_file_->Initialize(file_.Pass(), false)) {
TimeTicks debug_start_time = base::Histogram::DebugNow();
hunspell_.reset(new Hunspell(bdict_file_->data(), bdict_file_->length()));

Powered by Google App Engine
This is Rietveld 408576698