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

Unified Diff: chrome/common/spellcheck_result.h

Issue 2177343002: Componentize spellcheck [2]: move common/ files to component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move message generator to component Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/spellcheck_messages.h ('k') | chrome/renderer/spellchecker/hunspell_engine.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/spellcheck_result.h
diff --git a/chrome/common/spellcheck_result.h b/chrome/common/spellcheck_result.h
deleted file mode 100644
index 33ff5d48bd2a7310d0697ef1c175a97287a105ff..0000000000000000000000000000000000000000
--- a/chrome/common/spellcheck_result.h
+++ /dev/null
@@ -1,43 +0,0 @@
-// Copyright (c) 2012 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.
-
-#ifndef CHROME_COMMON_SPELLCHECK_RESULT_H_
-#define CHROME_COMMON_SPELLCHECK_RESULT_H_
-
-#include <stdint.h>
-
-#include "base/strings/string16.h"
-
-// This class mirrors blink::WebTextCheckingResult which holds a
-// misspelled range inside the checked text. It also contains a
-// possible replacement of the misspelling if it is available.
-struct SpellCheckResult {
- enum Decoration {
- // Red underline for misspelled words.
- SPELLING = 1 << 1,
-
- // Gray underline for correctly spelled words that are incorrectly used in
- // their context.
- GRAMMAR = 1 << 2,
-
- // No underline for words that spellcheck needs to track. For example, a
- // word in the custom spellcheck dictionary.
- INVISIBLE = 1 << 3,
- };
-
- explicit SpellCheckResult(Decoration d = SPELLING,
- int loc = 0,
- int len = 0,
- const base::string16& rep = base::string16(),
- uint32_t h = 0)
- : decoration(d), location(loc), length(len), replacement(rep), hash(h) {}
-
- Decoration decoration;
- int location;
- int length;
- base::string16 replacement;
- uint32_t hash;
-};
-
-#endif // CHROME_COMMON_SPELLCHECK_RESULT_H_
« no previous file with comments | « chrome/common/spellcheck_messages.h ('k') | chrome/renderer/spellchecker/hunspell_engine.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698