Index: views/controls/label_unittest.cc |
=================================================================== |
--- views/controls/label_unittest.cc (revision 86083) |
+++ views/controls/label_unittest.cc (working copy) |
@@ -195,7 +195,7 @@ |
TEST(LabelTest, MultiLineSizing) { |
Label label; |
- label.SetFocusable(false); |
+ label.set_focusable(false); |
std::wstring test_text(L"A random string\nwith multiple lines\nand returns!"); |
label.SetText(test_text); |
label.SetMultiLine(true); |
@@ -278,7 +278,7 @@ |
TEST(LabelTest, DrawSingleLineString) { |
Label label; |
- label.SetFocusable(false); |
+ label.set_focusable(false); |
// Turn off mirroring so that we don't need to figure out if |
// align right really means align left. |
@@ -396,7 +396,7 @@ |
// multiline lables to not ellide in Linux only. |
TEST(LabelTest, DrawMultiLineString) { |
Label label; |
- label.SetFocusable(false); |
+ label.set_focusable(false); |
// Turn off mirroring so that we don't need to figure out if |
// align right really means align left. |
@@ -543,7 +543,7 @@ |
TEST(LabelTest, DrawSingleLineStringInRTL) { |
Label label; |
- label.SetFocusable(false); |
+ label.set_focusable(false); |
std::string locale = l10n_util::GetApplicationLocale(""); |
base::i18n::SetICUDefaultLocale("he"); |
@@ -664,7 +664,7 @@ |
// multiline lables to not ellide in Linux only. |
TEST(LabelTest, DrawMultiLineStringInRTL) { |
Label label; |
- label.SetFocusable(false); |
+ label.set_focusable(false); |
// Test for RTL. |
std::string locale = l10n_util::GetApplicationLocale(""); |