Skip to content

Commit

Permalink
[ios] ios/web_view base::Bind -> base::BindRepeating
Browse files Browse the repository at this point in the history
Updating base::Bind calls to base::BindRepeating for ios/web_view folder
as part of code health improvements

Bug: 1007796
Change-Id: I266da5b514b6734dfb0c884a749237dd1ce6ab0a
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2238370
Reviewed-by: Eugene But <eugenebut@chromium.org>
Commit-Queue: Jeff Yoon <jeffyoon@chromium.org>
Cr-Commit-Position: refs/heads/master@{#776990}
  • Loading branch information
Jeff Yoon authored and Commit Bot committed Jun 10, 2020
1 parent c1a1ef1 commit 49dfdf7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@
password_feature_manager_(pref_service, sync_service),
credentials_filter_(
this,
base::Bind(&WebViewPasswordManagerClient::GetSyncService,
base::Unretained(this))),
base::BindRepeating(&WebViewPasswordManagerClient::GetSyncService,
base::Unretained(this))),
helper_(this) {
saving_passwords_enabled_.Init(
password_manager::prefs::kCredentialsEnableService, GetPrefs());
Expand Down

0 comments on commit 49dfdf7

Please sign in to comment.