diff options
Diffstat (limited to 'chrome/browser/autocomplete_history_manager.cc')
-rw-r--r-- | chrome/browser/autocomplete_history_manager.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/autocomplete_history_manager.cc b/chrome/browser/autocomplete_history_manager.cc index 112e063..ace943db 100644 --- a/chrome/browser/autocomplete_history_manager.cc +++ b/chrome/browser/autocomplete_history_manager.cc @@ -183,7 +183,7 @@ void AutocompleteHistoryManager::OnWebDataServiceRequestDone( return; } - DCHECK(result->GetType() == AUTOFILL_VALUE_RESULT); + DCHECK_EQ(result->GetType(), AUTOFILL_VALUE_RESULT); const WDResult<std::vector<string16> >* autofill_result = static_cast<const WDResult<std::vector<string16> >*>(result); std::vector<string16> suggestions = autofill_result->GetValue(); |