Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 836604
Collapse All | Expand All

(-)a/src/3rdparty/chromium/third_party/blink/renderer/platform/text/text_break_iterator_icu.cc (-2 / +2 lines)
Lines 119-129 enum TextContext { kNoContext, kPriorContext, kPrimary Link Here
119
119
120
const int kTextBufferCapacity = 16;
120
const int kTextBufferCapacity = 16;
121
121
122
typedef struct {
122
struct UTextWithBuffer {
123
  DISALLOW_NEW();
123
  DISALLOW_NEW();
124
  UText text;
124
  UText text;
125
  UChar buffer[kTextBufferCapacity];
125
  UChar buffer[kTextBufferCapacity];
126
} UTextWithBuffer;
126
};
127
127
128
static inline int64_t TextPinIndex(int64_t& index, int64_t limit) {
128
static inline int64_t TextPinIndex(int64_t& index, int64_t limit) {
129
  if (index < 0)
129
  if (index < 0)

Return to bug 836604