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

Side by Side Diff: components/spellcheck/common/spellcheck_result.h

Issue 2177023002: Remove spellchecker feedback. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compile Created 4 years, 4 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef COMPONENTS_SPELLCHECK_COMMON_SPELLCHECK_RESULT_H_ 5 #ifndef COMPONENTS_SPELLCHECK_COMMON_SPELLCHECK_RESULT_H_
6 #define COMPONENTS_SPELLCHECK_COMMON_SPELLCHECK_RESULT_H_ 6 #define COMPONENTS_SPELLCHECK_COMMON_SPELLCHECK_RESULT_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include "base/strings/string16.h" 10 #include "base/strings/string16.h"
11 11
12 // This class mirrors blink::WebTextCheckingResult which holds a 12 // This class mirrors blink::WebTextCheckingResult which holds a
13 // misspelled range inside the checked text. It also contains a 13 // misspelled range inside the checked text. It also contains a
14 // possible replacement of the misspelling if it is available. 14 // possible replacement of the misspelling if it is available.
15 struct SpellCheckResult { 15 struct SpellCheckResult {
16 enum Decoration { 16 enum Decoration {
17 // Red underline for misspelled words. 17 // Red underline for misspelled words.
18 SPELLING = 1 << 1, 18 SPELLING = 1 << 1,
19 19
20 // Gray underline for correctly spelled words that are incorrectly used in 20 // Gray underline for correctly spelled words that are incorrectly used in
21 // their context. 21 // their context.
22 GRAMMAR = 1 << 2, 22 GRAMMAR = 1 << 2,
23
24 // No underline for words that spellcheck needs to track. For example, a
25 // word in the custom spellcheck dictionary.
26 INVISIBLE = 1 << 3,
27 }; 23 };
28 24
29 explicit SpellCheckResult(Decoration d = SPELLING, 25 explicit SpellCheckResult(Decoration d = SPELLING,
30 int loc = 0, 26 int loc = 0,
31 int len = 0, 27 int len = 0,
32 const base::string16& rep = base::string16(), 28 const base::string16& rep = base::string16())
33 uint32_t h = 0) 29 : decoration(d), location(loc), length(len), replacement(rep) {}
34 : decoration(d), location(loc), length(len), replacement(rep), hash(h) {}
35 30
36 Decoration decoration; 31 Decoration decoration;
37 int location; 32 int location;
38 int length; 33 int length;
39 base::string16 replacement; 34 base::string16 replacement;
40 uint32_t hash;
41 }; 35 };
42 36
43 #endif // COMPONENTS_SPELLCHECK_COMMON_SPELLCHECK_RESULT_H_ 37 #endif // COMPONENTS_SPELLCHECK_COMMON_SPELLCHECK_RESULT_H_
OLDNEW
« no previous file with comments | « components/spellcheck/common/spellcheck_messages.h ('k') | components/spellcheck/common/spellcheck_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698