| Index: ui/gfx/render_text_unittest.cc
|
| diff --git a/ui/gfx/render_text_unittest.cc b/ui/gfx/render_text_unittest.cc
|
| index b3eea35cc7dc049904495ade61c4f8cf9e40edaa..6ee8250af2b415a8ccdbe9063f792af88f617394 100644
|
| --- a/ui/gfx/render_text_unittest.cc
|
| +++ b/ui/gfx/render_text_unittest.cc
|
| @@ -3193,7 +3193,7 @@ TEST_F(RenderTextTest, MAYBE_TextDoesntClip) {
|
| render_text->SetHorizontalAlignment(ALIGN_LEFT);
|
| render_text->SetColor(SK_ColorBLACK);
|
|
|
| - for (auto string : kTestStrings) {
|
| + for (auto* string : kTestStrings) {
|
| surface->getCanvas()->clear(SK_ColorWHITE);
|
| render_text->SetText(WideToUTF16(string));
|
| const Size string_size = render_text->GetStringSize();
|
| @@ -3285,7 +3285,7 @@ TEST_F(RenderTextTest, TextDoesClip) {
|
| render_text->SetHorizontalAlignment(ALIGN_LEFT);
|
| render_text->SetColor(SK_ColorBLACK);
|
|
|
| - for (auto string : kTestStrings) {
|
| + for (auto* string : kTestStrings) {
|
| surface->getCanvas()->clear(SK_ColorWHITE);
|
| render_text->SetText(WideToUTF16(string));
|
| const Size string_size = render_text->GetStringSize();
|
|
|