Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(455)

Unified Diff: chrome/browser/plugins/chrome_plugin_service_filter_unittest.cc

Issue 2828663002: Rewrite base::Bind to base::BindOnce with base_bind_rewriters in //chrome/browser/{i,l,m,n,p,r}* (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/platform_util.cc ('k') | chrome/browser/plugins/plugin_info_message_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/plugins/chrome_plugin_service_filter_unittest.cc
diff --git a/chrome/browser/plugins/chrome_plugin_service_filter_unittest.cc b/chrome/browser/plugins/chrome_plugin_service_filter_unittest.cc
index c4812ff3df15255bfabd32057e4a0185d61329c1..63f263b72bb0fe914fa749875281bc3664de3e14 100644
--- a/chrome/browser/plugins/chrome_plugin_service_filter_unittest.cc
+++ b/chrome/browser/plugins/chrome_plugin_service_filter_unittest.cc
@@ -65,10 +65,10 @@ class ChromePluginServiceFilterTest : public ChromeRenderViewHostTestHarness {
base::RunLoop run_loop;
content::BrowserThread::PostTaskAndReply(
content::BrowserThread::IO, FROM_HERE,
- base::Bind(&ChromePluginServiceFilterTest::IsPluginAvailableOnIOThread,
- base::Unretained(this), plugin_content_url,
- main_frame_origin, resource_context, plugin_info,
- &is_available),
+ base::BindOnce(
+ &ChromePluginServiceFilterTest::IsPluginAvailableOnIOThread,
+ base::Unretained(this), plugin_content_url, main_frame_origin,
+ resource_context, plugin_info, &is_available),
run_loop.QuitClosure());
run_loop.Run();
« no previous file with comments | « chrome/browser/platform_util.cc ('k') | chrome/browser/plugins/plugin_info_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698