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

Side by Side Diff: chrome/common/spellcheck_result.h

Issue 63273002: Rename WebKit namespace to blink (part 4) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
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 CHROME_COMMON_SPELLCHECK_RESULT_H_ 5 #ifndef CHROME_COMMON_SPELLCHECK_RESULT_H_
6 #define CHROME_COMMON_SPELLCHECK_RESULT_H_ 6 #define CHROME_COMMON_SPELLCHECK_RESULT_H_
7 7
8 #include "base/strings/string16.h" 8 #include "base/strings/string16.h"
9 9
10 // This class mirrors WebKit::WebTextCheckingResult which holds a 10 // This class mirrors blink::WebTextCheckingResult which holds a
11 // misspelled range inside the checked text. It also contains a 11 // misspelled range inside the checked text. It also contains a
12 // possible replacement of the misspelling if it is available. 12 // possible replacement of the misspelling if it is available.
13 struct SpellCheckResult { 13 struct SpellCheckResult {
14 enum Decoration { 14 enum Decoration {
15 // Red underline for misspelled words. 15 // Red underline for misspelled words.
16 SPELLING = 1 << 1, 16 SPELLING = 1 << 1,
17 17
18 // Gray underline for correctly spelled words that are incorrectly used in 18 // Gray underline for correctly spelled words that are incorrectly used in
19 // their context. 19 // their context.
20 GRAMMAR = 1 << 2, 20 GRAMMAR = 1 << 2,
(...skipping 13 matching lines...) Expand all
34 } 34 }
35 35
36 Decoration decoration; 36 Decoration decoration;
37 int location; 37 int location;
38 int length; 38 int length;
39 string16 replacement; 39 string16 replacement;
40 uint32 hash; 40 uint32 hash;
41 }; 41 };
42 42
43 #endif // CHROME_COMMON_SPELLCHECK_RESULT_H_ 43 #endif // CHROME_COMMON_SPELLCHECK_RESULT_H_
OLDNEW
« no previous file with comments | « chrome/common/render_messages.h ('k') | chrome/renderer/autofill/autofill_renderer_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698