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

Side by Side Diff: chrome/browser/spellchecker/misspelling.cc

Issue 1665023002: Cheer up spell-checking code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More descriptive variable name Created 4 years, 10 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 // 4 //
5 // The |Misspelling| object stores the misspelling, a spellcheck suggestion for 5 // The |Misspelling| object stores the misspelling, a spellcheck suggestion for
6 // it, and user's action on it. The misspelling is stored as |context|, 6 // it, and user's action on it. The misspelling is stored as |context|,
7 // |location|, and |length| instead of only misspelled text, because the 7 // |location|, and |length| instead of only misspelled text, because the
8 // spellcheck algorithm uses the context. 8 // spellcheck algorithm uses the context.
9 9
10 #include "chrome/browser/spellchecker/misspelling.h" 10 #include "chrome/browser/spellchecker/misspelling.h"
11 11
12 #include "base/strings/string_number_conversions.h" 12 #include "base/strings/string_number_conversions.h"
13 #include "base/values.h" 13 #include "base/values.h"
14 14
15 namespace { 15 namespace {
16 16
17 // Builds a value from a list of spellcheck suggestions. The caller owns the 17 // Builds a value from a list of spellcheck suggestions.
18 // result. 18 scoped_ptr<base::Value> BuildSuggestionsValue(
19 base::Value* BuildSuggestionsValue(const std::vector<base::string16>& list) { 19 const std::vector<base::string16>& list) {
20 base::ListValue* result = new base::ListValue; 20 scoped_ptr<base::ListValue> result(new base::ListValue);
21 result->AppendStrings(list); 21 result->AppendStrings(list);
22 return result; 22 return std::move(result);
23 } 23 }
24 24
25 // Builds a value from a spellcheck action. The caller owns the result. 25 // Builds a value from a spellcheck action.
26 base::Value* BuildUserActionValue(const SpellcheckAction& action) { 26 scoped_ptr<base::Value> BuildUserActionValue(const SpellcheckAction& action) {
27 base::ListValue* result = new base::ListValue; 27 scoped_ptr<base::ListValue> result(new base::ListValue);
28 result->Append(action.Serialize()); 28 result->Append(action.Serialize());
29 return result; 29 return std::move(result);
30 } 30 }
31 31
32 } // namespace 32 } // namespace
33 33
34 Misspelling::Misspelling() 34 Misspelling::Misspelling()
35 : location(0), length(0), hash(0), timestamp(base::Time::Now()) {} 35 : location(0), length(0), hash(0), timestamp(base::Time::Now()) {}
36 36
37 Misspelling::Misspelling(const base::string16& context, 37 Misspelling::Misspelling(const base::string16& context,
38 size_t location, 38 size_t location,
39 size_t length, 39 size_t length,
40 const std::vector<base::string16>& suggestions, 40 const std::vector<base::string16>& suggestions,
41 uint32_t hash) 41 uint32_t hash)
42 : context(context), 42 : context(context),
43 location(location), 43 location(location),
44 length(length), 44 length(length),
45 suggestions(suggestions), 45 suggestions(suggestions),
46 hash(hash), 46 hash(hash),
47 timestamp(base::Time::Now()) {} 47 timestamp(base::Time::Now()) {}
48 48
49 Misspelling::~Misspelling() {} 49 Misspelling::~Misspelling() {}
50 50
51 base::DictionaryValue* SerializeMisspelling(const Misspelling& misspelling) { 51 scoped_ptr<base::DictionaryValue> SerializeMisspelling(
52 base::DictionaryValue* result = new base::DictionaryValue; 52 const Misspelling& misspelling) {
53 scoped_ptr<base::DictionaryValue> result(new base::DictionaryValue);
53 result->SetString( 54 result->SetString(
54 "timestamp", 55 "timestamp",
55 base::Int64ToString(static_cast<long>(misspelling.timestamp.ToJsTime()))); 56 base::Int64ToString(static_cast<long>(misspelling.timestamp.ToJsTime())));
56 result->SetInteger("misspelledLength", misspelling.length); 57 result->SetInteger("misspelledLength", misspelling.length);
57 result->SetInteger("misspelledStart", misspelling.location); 58 result->SetInteger("misspelledStart", misspelling.location);
58 result->SetString("originalText", misspelling.context); 59 result->SetString("originalText", misspelling.context);
59 result->SetString("suggestionId", base::UintToString(misspelling.hash)); 60 result->SetString("suggestionId", base::UintToString(misspelling.hash));
60 result->Set("suggestions", BuildSuggestionsValue(misspelling.suggestions)); 61 result->Set("suggestions",
61 result->Set("userActions", BuildUserActionValue(misspelling.action)); 62 BuildSuggestionsValue(misspelling.suggestions).release());
63 result->Set("userActions",
64 BuildUserActionValue(misspelling.action).release());
62 return result; 65 return result;
63 } 66 }
64 67
65 base::string16 GetMisspelledString(const Misspelling& misspelling) { 68 base::string16 GetMisspelledString(const Misspelling& misspelling) {
66 // Feedback sender does not create Misspelling objects for spellcheck results 69 // Feedback sender does not create Misspelling objects for spellcheck results
67 // that are out-of-bounds of checked text length. 70 // that are out-of-bounds of checked text length.
68 if (misspelling.location > misspelling.context.length()) 71 if (misspelling.location > misspelling.context.length())
69 return base::string16(); 72 return base::string16();
70 return misspelling.context.substr(misspelling.location, misspelling.length); 73 return misspelling.context.substr(misspelling.location, misspelling.length);
71 } 74 }
72 75
73 size_t ApproximateSerializedSize(const Misspelling& misspelling) { 76 size_t ApproximateSerializedSize(const Misspelling& misspelling) {
74 // Estimated by eyeballing JSON overhead. 77 // Estimated by eyeballing JSON overhead.
75 const size_t kNumberOfOverheadBytes = 180; 78 const size_t kNumberOfOverheadBytes = 180;
76 size_t result = misspelling.context.length() + kNumberOfOverheadBytes; 79 size_t result = misspelling.context.length() + kNumberOfOverheadBytes;
77 for (const base::string16& suggestion : misspelling.suggestions) 80 for (const base::string16& suggestion : misspelling.suggestions)
78 result += suggestion.size(); 81 result += suggestion.size();
79 return result; 82 return result;
80 } 83 }
OLDNEW
« no previous file with comments | « chrome/browser/spellchecker/misspelling.h ('k') | chrome/browser/spellchecker/spellcheck_custom_dictionary.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698