| OLD | NEW |
| 1 // |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 2 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 3 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 4 // found in the LICENSE file. |
| 4 | 5 |
| 5 #include "ui/gfx/render_text_harfbuzz.h" | 6 #include "ui/gfx/render_text_harfbuzz.h" |
| 6 | 7 |
| 7 #include <limits> | 8 #include <limits> |
| 8 #include <set> | 9 #include <set> |
| 9 | 10 |
| 10 #include "base/i18n/bidi_line_iterator.h" | 11 #include "base/i18n/bidi_line_iterator.h" |
| (...skipping 1692 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1703 | 1704 |
| 1704 attribute.strike = run.strike; | 1705 attribute.strike = run.strike; |
| 1705 attribute.diagonal_strike = run.diagonal_strike; | 1706 attribute.diagonal_strike = run.diagonal_strike; |
| 1706 decorated_text->attributes.push_back(attribute); | 1707 decorated_text->attributes.push_back(attribute); |
| 1707 } | 1708 } |
| 1708 } | 1709 } |
| 1709 return true; | 1710 return true; |
| 1710 } | 1711 } |
| 1711 | 1712 |
| 1712 } // namespace gfx | 1713 } // namespace gfx |
| OLD | NEW |