| Index: chrome/common/spellcheck_result.h
|
| diff --git a/chrome/common/spellcheck_result.h b/chrome/common/spellcheck_result.h
|
| index 2ef3fa76f060c82c8c74c5818ef67e15caf1786e..cbd4a8b8d95e454e7fb33a54783268debabef72e 100644
|
| --- a/chrome/common/spellcheck_result.h
|
| +++ b/chrome/common/spellcheck_result.h
|
| @@ -28,7 +28,7 @@ struct SpellCheckResult {
|
| Decoration d = SPELLING,
|
| int loc = 0,
|
| int len = 0,
|
| - const string16& rep = string16(),
|
| + const base::string16& rep = base::string16(),
|
| uint32 h = 0)
|
| : decoration(d), location(loc), length(len), replacement(rep), hash(h) {
|
| }
|
| @@ -36,7 +36,7 @@ struct SpellCheckResult {
|
| Decoration decoration;
|
| int location;
|
| int length;
|
| - string16 replacement;
|
| + base::string16 replacement;
|
| uint32 hash;
|
| };
|
|
|
|
|