aboutsummaryrefslogtreecommitdiff
path: root/www/chromium/files/patch-ui_gfx_render__text.cc
diff options
context:
space:
mode:
Diffstat (limited to 'www/chromium/files/patch-ui_gfx_render__text.cc')
-rw-r--r--www/chromium/files/patch-ui_gfx_render__text.cc41
1 files changed, 0 insertions, 41 deletions
diff --git a/www/chromium/files/patch-ui_gfx_render__text.cc b/www/chromium/files/patch-ui_gfx_render__text.cc
deleted file mode 100644
index 3595603996b3..000000000000
--- a/www/chromium/files/patch-ui_gfx_render__text.cc
+++ /dev/null
@@ -1,41 +0,0 @@
---- ui/gfx/render_text.cc.orig 2021-12-14 11:45:39 UTC
-+++ ui/gfx/render_text.cc
-@@ -1232,30 +1232,31 @@ void RenderText::SetDisplayOffset(Vector2d offset) {
- const int extra_content = GetContentWidth() - display_rect_.width();
- const int cursor_width = cursor_enabled_ ? 1 : 0;
-
-- int min_offset = 0;
-- int max_offset = 0;
-+ // avoid collisions with vm_map.h on FreeBSD --cmt
-+ int _min_offset = 0;
-+ int _max_offset = 0;
- if (extra_content > 0) {
- switch (GetCurrentHorizontalAlignment()) {
- case ALIGN_LEFT:
-- min_offset = -extra_content;
-+ _min_offset = -extra_content;
- break;
- case ALIGN_RIGHT:
-- max_offset = extra_content;
-+ _max_offset = extra_content;
- break;
- case ALIGN_CENTER:
- // The extra space reserved for cursor at the end of the text is ignored
- // when centering text. So, to calculate the valid range for offset, we
- // exclude that extra space, calculate the range, and add it back to the
- // range (if cursor is enabled).
-- min_offset = -(extra_content - cursor_width + 1) / 2 - cursor_width;
-- max_offset = (extra_content - cursor_width) / 2;
-+ _min_offset = -(extra_content - cursor_width + 1) / 2 - cursor_width;
-+ _max_offset = (extra_content - cursor_width) / 2;
- break;
- default:
- break;
- }
- }
-
-- const int horizontal_offset = base::clamp(offset.x(), min_offset, max_offset);
-+ const int horizontal_offset = base::clamp(offset.x(), _min_offset, _max_offset);
-
- // y-offset is set only when the vertical alignment is ALIGN_TOP.
- // TODO(jongkown.lee): Support other vertical alignments.