commit | d84121731ab98dd54fcc749727c99fd2a499b43a | [log] [tgz] |
---|---|---|
author | Mark Pilgrim <[email protected]> | Thu Mar 22 14:12:12 2018 |
committer | Commit Bot <[email protected]> | Thu Mar 22 14:12:12 2018 |
tree | 83dcd7019129626a4e81ca1a3c3a8d8e5d2d742a | |
parent | ed69d3f3ca83f1c408874203c842a76d372c119d [diff] [blame] |
Bind refactoring: guest_view Explicitly mark GuestCallback as a RepeatingCallback and use BindRepeating on all callers BUG=714018 [email protected] Change-Id: I5e1d7283b421872291fad9131fb6977d1ba8b3c0 Reviewed-on: https://chromium-review.googlesource.com/970904 Commit-Queue: Mark Pilgrim <[email protected]> Reviewed-by: Avi Drissman <[email protected]> Cr-Commit-Position: refs/heads/master@{#545061}
diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_contents_impl.cc index ce2f473..d6e1ece 100644 --- a/content/browser/web_contents/web_contents_impl.cc +++ b/content/browser/web_contents/web_contents_impl.cc
@@ -1160,7 +1160,7 @@ if (browser_plugin_embedder_) { std::vector<WebContentsImpl*> inner_contents; GetBrowserContext()->GetGuestManager()->ForEachGuest( - this, base::Bind(&GetInnerWebContentsHelper, &inner_contents)); + this, base::BindRepeating(&GetInnerWebContentsHelper, &inner_contents)); return inner_contents; }