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

Unified Diff: third_party/WebKit/public/web/WebTextCheckingResult.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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/public/web/WebTextCheckingResult.h
diff --git a/third_party/WebKit/public/web/WebTextCheckingResult.h b/third_party/WebKit/public/web/WebTextCheckingResult.h
index 4becea1f17d88e9caca67becb50f281c3536e21d..9aac79400d63624c4efbd986bc103db046f45f55 100644
--- a/third_party/WebKit/public/web/WebTextCheckingResult.h
+++ b/third_party/WebKit/public/web/WebTextCheckingResult.h
@@ -45,16 +45,14 @@ struct WebTextCheckingResult {
: decoration(WebTextDecorationTypeSpelling)
, location(0)
, length(0)
- , hash(0)
{
}
- WebTextCheckingResult(WebTextDecorationType decoration, int location, int length, const WebString& replacement = WebString(), uint32_t hash = 0)
+ WebTextCheckingResult(WebTextDecorationType decoration, int location, int length, const WebString& replacement = WebString())
: decoration(decoration)
, location(location)
, length(length)
, replacement(replacement)
- , hash(hash)
{
}
@@ -66,7 +64,6 @@ struct WebTextCheckingResult {
int location;
int length;
WebString replacement;
- uint32_t hash;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/public/web/WebSpellCheckClient.h ('k') | third_party/WebKit/public/web/WebTextDecorationType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698