1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// An object to store user feedback to a single spellcheck suggestion.
//
// Stores the spellcheck suggestion, its uint32_t hash identifier, and user's
// feedback. The feedback is indirect, in the sense that we record user's
// |action| instead of asking them how they feel about a spellcheck suggestion.
// The object can serialize itself.
#ifndef COMPONENTS_SPELLCHECK_BROWSER_MISSPELLING_H_
#define COMPONENTS_SPELLCHECK_BROWSER_MISSPELLING_H_
#include <stddef.h>
#include <stdint.h>
#include <memory>
#include <vector>
#include "base/time/time.h"
#include "components/spellcheck/browser/spellcheck_action.h"
// Stores user feedback to a spellcheck suggestion. Sample usage:
// Misspelling misspelling.
// misspelling.context = base::ASCIIToUTF16("Helllo world");
// misspelling.location = 0;
// misspelling.length = 6;
// misspelling.suggestions =
// std::vector<base::string16>(1, base::ASCIIToUTF16("Hello"));
// misspelling.hash = GenerateRandomHash();
// misspelling.action.set_type(SpellcheckAction::TYPE_SELECT);
// misspelling.action.set_index(0);
// Process(SerializeMisspelling(misspelling));
struct Misspelling {
Misspelling();
Misspelling(const base::string16& context,
size_t location,
size_t length,
const std::vector<base::string16>& suggestions,
uint32_t hash);
Misspelling(const Misspelling& other);
~Misspelling();
// A several-word text snippet that immediately surrounds the misspelling.
base::string16 context;
// The number of characters between the beginning of |context| and the first
// misspelled character.
size_t location;
// The number of characters in the misspelling.
size_t length;
// Spelling suggestions.
std::vector<base::string16> suggestions;
// The hash that identifies the misspelling.
uint32_t hash;
// User action.
SpellcheckAction action;
// The time when the user applied the action.
base::Time timestamp;
};
// Serializes the data in this object into a dictionary value.
std::unique_ptr<base::DictionaryValue> SerializeMisspelling(
const Misspelling& misspelling);
// Returns the substring of |context| that begins at |location| and contains
// |length| characters.
base::string16 GetMisspelledString(const Misspelling& misspelling);
// Returns the approximate size of the misspelling when serialized.
size_t ApproximateSerializedSize(const Misspelling& misspelling);
#endif // COMPONENTS_SPELLCHECK_BROWSER_MISSPELLING_H_
|