Home
last modified time | relevance | path

Searched refs:SpellcheckAction (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/chrome/browser/spellchecker/
Dspellcheck_action_unittest.cc14 static const SpellcheckAction::SpellcheckActionType kFinalActions[] = { in TEST()
15 SpellcheckAction::TYPE_ADD_TO_DICT, in TEST()
16 SpellcheckAction::TYPE_IGNORE, in TEST()
17 SpellcheckAction::TYPE_IN_DICTIONARY, in TEST()
18 SpellcheckAction::TYPE_MANUALLY_CORRECTED, in TEST()
19 SpellcheckAction::TYPE_NO_ACTION, in TEST()
20 SpellcheckAction::TYPE_SELECT, in TEST()
22 SpellcheckAction action; in TEST()
30 static const SpellcheckAction::SpellcheckActionType kPendingActions[] = { in TEST()
31 SpellcheckAction::TYPE_PENDING, in TEST()
[all …]
Dspellcheck_action.cc10 SpellcheckAction::SpellcheckAction() : type(TYPE_PENDING), index(-1) {} in SpellcheckAction() function in SpellcheckAction
12 SpellcheckAction::SpellcheckAction(SpellcheckActionType type, in SpellcheckAction() function in SpellcheckAction
17 SpellcheckAction::~SpellcheckAction() {} in ~SpellcheckAction()
19 bool SpellcheckAction::IsFinal() const { in IsFinal()
28 void SpellcheckAction::Finalize() { in Finalize()
42 base::DictionaryValue* SpellcheckAction::Serialize() const { in Serialize()
Dspellcheck_action.h15 class SpellcheckAction {
48 SpellcheckAction();
49 SpellcheckAction(SpellcheckActionType type, int index, base::string16 value);
50 ~SpellcheckAction();
Dfeedback_sender.cc187 misspelling->action.type = SpellcheckAction::TYPE_SELECT; in SelectedSuggestion()
198 misspelling->action.type = SpellcheckAction::TYPE_ADD_TO_DICT; in AddedToDictionary()
208 duplicate_misspelling->action.type = SpellcheckAction::TYPE_ADD_TO_DICT; in AddedToDictionary()
219 misspelling->action.type = SpellcheckAction::TYPE_IN_DICTIONARY; in RecordInDictionary()
228 misspelling->action.type = SpellcheckAction::TYPE_PENDING_IGNORE; in IgnoredSuggestions()
239 misspelling->action.type = SpellcheckAction::TYPE_MANUALLY_CORRECTED; in ManuallyCorrected()
Dmisspelling.h66 SpellcheckAction action;
Dmisspelling.cc26 base::Value* BuildUserActionValue(const SpellcheckAction& action) { in BuildUserActionValue()