summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/editing/finder/find_buffer.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2020-07-16 11:45:35 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2020-07-17 08:59:23 +0000
commit552906b0f222c5d5dd11b9fd73829d510980461a (patch)
tree3a11e6ed0538a81dd83b20cf3a4783e297f26d91 /chromium/third_party/blink/renderer/core/editing/finder/find_buffer.h
parent1b05827804eaf047779b597718c03e7d38344261 (diff)
downloadqtwebengine-chromium-552906b0f222c5d5dd11b9fd73829d510980461a.tar.gz
BASELINE: Update Chromium to 83.0.4103.122
Change-Id: Ie3a82f5bb0076eec2a7c6a6162326b4301ee291e Reviewed-by: Michael BrĂ¼ning <michael.bruning@qt.io>
Diffstat (limited to 'chromium/third_party/blink/renderer/core/editing/finder/find_buffer.h')
-rw-r--r--chromium/third_party/blink/renderer/core/editing/finder/find_buffer.h16
1 files changed, 1 insertions, 15 deletions
diff --git a/chromium/third_party/blink/renderer/core/editing/finder/find_buffer.h b/chromium/third_party/blink/renderer/core/editing/finder/find_buffer.h
index bcb387c9097..97cb1ce114e 100644
--- a/chromium/third_party/blink/renderer/core/editing/finder/find_buffer.h
+++ b/chromium/third_party/blink/renderer/core/editing/finder/find_buffer.h
@@ -133,19 +133,6 @@ class CORE_EXPORT FindBuffer {
// another LayoutBlockFlow or after |end_position|) to |node_after_block_|.
void CollectTextUntilBlockBoundary(const EphemeralRangeInFlatTree& range);
- // Adds the ScopedForcedUpdate of |element|'s DisplayLockContext (if it's
- // there) to |scoped_forced_update_list_|. Returns true if we added a
- // ScopedForceUpdate.
- bool PushScopedForcedUpdateIfNeeded(const Element& element);
-
- // Collects all ScopedForceUpdates of any activatable-locked element
- // within the range of [start_node, search_range_end_node] or
- // [start_node, node_after_block) whichever is smaller, to
- // |scoped_forced_update_list_|.
- void CollectScopedForcedUpdates(Node& start_node,
- const Node* search_range_end_node,
- const Node* node_after_block);
-
// Mapping for position in buffer -> actual node where the text came from,
// along with the offset in the NGOffsetMapping of this find_buffer.
// This is needed because when we find a match in the buffer, we want to know
@@ -187,10 +174,9 @@ class CORE_EXPORT FindBuffer {
LayoutBlockFlow& block_flow,
const EphemeralRangeInFlatTree& range);
- Member<Node> node_after_block_;
+ Node* node_after_block_ = nullptr;
Vector<UChar> buffer_;
Vector<BufferNodeMapping> buffer_node_mappings_;
- Vector<DisplayLockContext::ScopedForcedUpdate> scoped_forced_update_list_;
TextSearcherICU text_searcher_;
const NGOffsetMapping* offset_mapping_ = nullptr;