Chromium Code Reviews| Index: ui/gfx/render_text_unittest.cc |
| diff --git a/ui/gfx/render_text_unittest.cc b/ui/gfx/render_text_unittest.cc |
| index 70811227531791cf97872db9aa4a0ead4f82e685..a5fbd46be244009ee5922c9a3ce9dee6982841d0 100644 |
| --- a/ui/gfx/render_text_unittest.cc |
| +++ b/ui/gfx/render_text_unittest.cc |
| @@ -381,15 +381,6 @@ class TestSkiaTextRenderer : public internal::SkiaTextRenderer { |
| internal::SkiaTextRenderer::DrawPosText(pos, glyphs, glyph_count); |
| } |
|
cjgrant
2017/07/05 16:16:48
This was also unused I believe.
msw
2017/07/05 19:55:00
Acknowledged; please also remove |decoration_log_|
cjgrant
2017/07/05 20:44:43
Done (with the associated struct as well).
|
| - void DrawDecorations(int x, |
| - int y, |
| - int width, |
| - bool underline, |
| - bool strike) override { |
| - decoration_log_.push_back(DecorationLog(x, y, width, underline, strike)); |
| - internal::SkiaTextRenderer::DrawDecorations(x, y, width, underline, strike); |
| - } |
| - |
| std::vector<TextLog> text_log_; |
| std::vector<DecorationLog> decoration_log_; |