chore: bump chromium to 133.0.6943.35 (35-x-y) (#45217)
* chore: bump chromium in DEPS to 133.0.6943.16
* chore: bump chromium in DEPS to 133.0.6943.27
* chore: bump chromium in DEPS to 133.0.6943.35
* chore: bump chromium to 134.0.6968.0
cherry picked from 75eac86506
---------
Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com>
Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
This commit is contained in:
parent
599030ea08
commit
49078100f4
122 changed files with 682 additions and 622 deletions
|
@ -96,18 +96,18 @@ void AutofillAgent::TextFieldDidEndEditing(const blink::WebInputElement&) {
|
|||
HidePopup();
|
||||
}
|
||||
|
||||
void AutofillAgent::TextFieldDidChange(
|
||||
void AutofillAgent::TextFieldValueChanged(
|
||||
const blink::WebFormControlElement& element) {
|
||||
if (!IsUserGesture() && !render_frame()->IsPasting())
|
||||
return;
|
||||
|
||||
weak_ptr_factory_.InvalidateWeakPtrs();
|
||||
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
|
||||
FROM_HERE, base::BindOnce(&AutofillAgent::TextFieldDidChangeImpl,
|
||||
FROM_HERE, base::BindOnce(&AutofillAgent::TextFieldValueChangedImpl,
|
||||
weak_ptr_factory_.GetWeakPtr(), element));
|
||||
}
|
||||
|
||||
void AutofillAgent::TextFieldDidChangeImpl(
|
||||
void AutofillAgent::TextFieldValueChangedImpl(
|
||||
const blink::WebFormControlElement& element) {
|
||||
ShowSuggestions(element, {.requires_caret_at_end = true});
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue