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

Unified Diff: chrome/renderer/spellchecker/spellcheck_language.h

Issue 105493002: Use base namespace for string16 in chrome/renderer. (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/renderer/spellchecker/spellcheck.cc ('k') | chrome/renderer/spellchecker/spellcheck_language.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/spellchecker/spellcheck_language.h
diff --git a/chrome/renderer/spellchecker/spellcheck_language.h b/chrome/renderer/spellchecker/spellcheck_language.h
index e99e96edad5634c8c12b4ae4905346f1ecd16312..acd58f48d513abbc448dce0e5809c6702d30c77e 100644
--- a/chrome/renderer/spellchecker/spellcheck_language.h
+++ b/chrome/renderer/spellchecker/spellcheck_language.h
@@ -39,7 +39,7 @@ class SpellcheckLanguage {
int tag,
int* misspelling_start,
int* misspelling_len,
- std::vector<string16>* optional_suggestions);
+ std::vector<base::string16>* optional_suggestions);
// Initialize |spellcheck_| if that hasn't happened yet.
bool InitializeIfNeeded();
@@ -52,7 +52,7 @@ class SpellcheckLanguage {
// Returns whether or not the given word is a contraction of valid words
// (e.g. "word:word").
- bool IsValidContraction(const string16& word, int tag);
+ bool IsValidContraction(const base::string16& word, int tag);
// Represents character attributes used for filtering out characters which
// are not supported by this SpellCheck object.
« no previous file with comments | « chrome/renderer/spellchecker/spellcheck.cc ('k') | chrome/renderer/spellchecker/spellcheck_language.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698