Index: chrome/browser/spellchecker/spellcheck_action.cc |
diff --git a/chrome/browser/spellchecker/spellcheck_action.cc b/chrome/browser/spellchecker/spellcheck_action.cc |
index dfba4411c33e738b30aede685c1b5031489ab4f2..3373595719e37d024255c842742915104630d218 100644 |
--- a/chrome/browser/spellchecker/spellcheck_action.cc |
+++ b/chrome/browser/spellchecker/spellcheck_action.cc |
@@ -19,6 +19,7 @@ SpellcheckAction::~SpellcheckAction() {} |
bool SpellcheckAction::IsFinal() const { |
return type == TYPE_ADD_TO_DICT || |
type == TYPE_IGNORE || |
+ type == TYPE_IN_DICTIONARY || |
type == TYPE_MANUALLY_CORRECTED || |
type == TYPE_NO_ACTION || |
type == TYPE_SELECT; |
@@ -51,6 +52,9 @@ base::DictionaryValue* SpellcheckAction::Serialize() const { |
case TYPE_IGNORE: |
result->SetString("actionType", "IGNORE"); |
break; |
+ case TYPE_IN_DICTIONARY: |
+ result->SetString("actionType", "IN_DICTIONARY"); |
+ break; |
case TYPE_NO_ACTION: |
result->SetString("actionType", "NO_ACTION"); |
break; |