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

Unified Diff: chrome/common/spellcheck_result.h

Issue 105473003: Add explicit base namespace to string16 users. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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/common/time_format_browsertest.cc » ('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
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;
};
« no previous file with comments | « chrome/common/spellcheck_messages.h ('k') | chrome/common/time_format_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698