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); |