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

Unified Diff: ui/views/examples/text_example.cc

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/views/examples/table_example.cc ('k') | ui/views/examples/textfield_example.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/examples/text_example.cc
diff --git a/ui/views/examples/text_example.cc b/ui/views/examples/text_example.cc
index ec43ac15b995031d1364b3b8c45a5c7b423ebad4..63c51e16dab47354c138445a4e0142dd8a957dfc 100644
--- a/ui/views/examples/text_example.cc
+++ b/ui/views/examples/text_example.cc
@@ -108,8 +108,8 @@ class TextExample::TextExampleView : public View {
int text_flags() const { return text_flags_; }
void set_text_flags(int text_flags) { text_flags_ = text_flags; }
- const string16& text() const { return text_; }
- void set_text(const string16& text) { text_ = text; }
+ const base::string16& text() const { return text_; }
+ void set_text(const base::string16& text) { text_ = text; }
bool halo() const { return halo_; }
void set_halo(bool halo) { halo_ = halo; }
@@ -132,7 +132,7 @@ class TextExample::TextExampleView : public View {
gfx::FontList font_list_;
// The text to draw.
- string16 text_;
+ base::string16 text_;
// Text flags for passing to |DrawStringInt()|.
int text_flags_;
« no previous file with comments | « ui/views/examples/table_example.cc ('k') | ui/views/examples/textfield_example.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698