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

Unified Diff: chrome/browser/chromeos/power/idle_action_warning_dialog_view.cc

Issue 105193002: Replace string16 with base::string16. (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
Index: chrome/browser/chromeos/power/idle_action_warning_dialog_view.cc
diff --git a/chrome/browser/chromeos/power/idle_action_warning_dialog_view.cc b/chrome/browser/chromeos/power/idle_action_warning_dialog_view.cc
index 8cde2ddf3de6213bbe0b6720f666e32d88e0fbc3..3fc7e74cfa1d80c83bc2f03cdc3737aae7aaabb5 100644
--- a/chrome/browser/chromeos/power/idle_action_warning_dialog_view.cc
+++ b/chrome/browser/chromeos/power/idle_action_warning_dialog_view.cc
@@ -26,7 +26,7 @@ const int kIdleActionWarningContentWidth = 300;
class FixedWidthLabel : public views::Label {
public:
- FixedWidthLabel(const string16& text, int width);
+ FixedWidthLabel(const base::string16& text, int width);
virtual ~FixedWidthLabel();
virtual gfx::Size GetPreferredSize() OVERRIDE;
@@ -37,7 +37,7 @@ class FixedWidthLabel : public views::Label {
DISALLOW_COPY_AND_ASSIGN(FixedWidthLabel);
};
-FixedWidthLabel::FixedWidthLabel(const string16& text, int width)
+FixedWidthLabel::FixedWidthLabel(const base::string16& text, int width)
: Label(text),
width_(width) {
SetHorizontalAlignment(gfx::ALIGN_LEFT);

Powered by Google App Engine
This is Rietveld 408576698