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

Unified Diff: ui/base/ime/chromeos/character_composer.h

Issue 117983002: Prefix string16 with base:: in ui/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge 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 | « ui/base/dragdrop/os_exchange_data_unittest.cc ('k') | ui/base/ime/chromeos/character_composer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/ime/chromeos/character_composer.h
diff --git a/ui/base/ime/chromeos/character_composer.h b/ui/base/ime/chromeos/character_composer.h
index 0624eb55c686a94edc0684c393cce26125102df9..6dffc18f8fe2c468bf7f8f3fb6a0bb081d7bfca5 100644
--- a/ui/base/ime/chromeos/character_composer.h
+++ b/ui/base/ime/chromeos/character_composer.h
@@ -30,10 +30,12 @@ class UI_EXPORT CharacterComposer {
// Returns a string consisting of composed character.
// Empty string is returned when there is no composition result.
- const string16& composed_character() const { return composed_character_; }
+ const base::string16& composed_character() const {
+ return composed_character_;
+ }
// Returns the preedit string.
- const string16& preedit_string() const { return preedit_string_; }
+ const base::string16& preedit_string() const { return preedit_string_; }
private:
friend class CharacterComposerTest;
@@ -85,10 +87,10 @@ class UI_EXPORT CharacterComposer {
std::vector<unsigned int> compose_buffer_;
// A string representing the composed character.
- string16 composed_character_;
+ base::string16 composed_character_;
// Preedit string.
- string16 preedit_string_;
+ base::string16 preedit_string_;
// Composition mode which this instance is in.
CompositionMode composition_mode_;
« no previous file with comments | « ui/base/dragdrop/os_exchange_data_unittest.cc ('k') | ui/base/ime/chromeos/character_composer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698