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

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

Issue 2159283003: [WIP][DO NOT LAND] Componentize spellcheck Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 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 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 <stdint.h> 8 #include <stdint.h>
9 9
10 #include "base/strings/string16.h" 10 #include "base/strings/string16.h"
(...skipping 23 matching lines...) Expand all
34 : decoration(d), location(loc), length(len), replacement(rep), hash(h) {} 34 : decoration(d), location(loc), length(len), replacement(rep), hash(h) {}
35 35
36 Decoration decoration; 36 Decoration decoration;
37 int location; 37 int location;
38 int length; 38 int length;
39 base::string16 replacement; 39 base::string16 replacement;
40 uint32_t hash; 40 uint32_t 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 | « components/spellcheck/common/spellcheck_messages.h ('k') | components/spellcheck/renderer/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698