-
Notifications
You must be signed in to change notification settings - Fork 878
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2003 from brave/pwd-autofill
Always waiting for user interaction to fill the password form in Brave
- Loading branch information
Showing
3 changed files
with
16 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
patches/components-password_manager-core-browser-password_form_filling.cc.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
diff --git a/components/password_manager/core/browser/password_form_filling.cc b/components/password_manager/core/browser/password_form_filling.cc | ||
index d234228194e800046f8db8ee90e8baa97af8dc0f..2cc1cd29e69a91f7fdd9c3e2d1b66a730c48a7ac 100644 | ||
--- a/components/password_manager/core/browser/password_form_filling.cc | ||
+++ b/components/password_manager/core/browser/password_form_filling.cc | ||
@@ -190,6 +190,9 @@ LikelyFormFilling SendFillInformationToRenderer( | ||
|
||
bool wait_for_username = | ||
wait_for_username_reason != WaitForUsernameReason::kDontWait; | ||
+#if defined(BRAVE_CHROMIUM_BUILD) | ||
+ wait_for_username = true; | ||
+#endif | ||
|
||
if (wait_for_username) { | ||
metrics_recorder->SetManagerAction( |