chore: bump chromium to 128.0.6573.0 (main) (#42766)
* chore: bump chromium in DEPS to 128.0.6573.0
* chore: update patches
* 5665092: Remove default arguments on virtual functions in WebContents
5665092
---------
Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com>
Co-authored-by: PatchUp <73610968+patchup[bot]@users.noreply.github.com>
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
This commit is contained in:
parent
5bff883c40
commit
19e030a6e8
18 changed files with 47 additions and 46 deletions
|
@ -3279,7 +3279,8 @@ uint32_t WebContents::FindInPage(gin::Arguments* args) {
|
|||
dict.Get("findNext", &options->new_session);
|
||||
}
|
||||
|
||||
web_contents()->Find(request_id, search_text, std::move(options));
|
||||
web_contents()->Find(request_id, search_text, std::move(options),
|
||||
/*skip_delay=*/false);
|
||||
return request_id;
|
||||
}
|
||||
|
||||
|
@ -3473,7 +3474,7 @@ v8::Local<v8::Promise> WebContents::CapturePage(gin::Arguments* args) {
|
|||
}
|
||||
|
||||
auto capture_handle = web_contents()->IncrementCapturerCount(
|
||||
rect.size(), stay_hidden, stay_awake);
|
||||
rect.size(), stay_hidden, stay_awake, /*is_activity=*/true);
|
||||
|
||||
// Capture full page if user doesn't specify a |rect|.
|
||||
const gfx::Size view_size =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue