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

Unified Diff: chrome/browser/extensions/extension_messages_apitest.cc

Issue 2825963003: Rewrite base::Bind to base::BindOnce with base_bind_rewriters in //chrome/browser/extensions (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
Index: chrome/browser/extensions/extension_messages_apitest.cc
diff --git a/chrome/browser/extensions/extension_messages_apitest.cc b/chrome/browser/extensions/extension_messages_apitest.cc
index e4bfe1c06ae50d5a00b5380bc2de7b5c649a089a..0842f9d340fff7e142ae7624384e086bbdf9beb4 100644
--- a/chrome/browser/extensions/extension_messages_apitest.cc
+++ b/chrome/browser/extensions/extension_messages_apitest.cc
@@ -1101,10 +1101,11 @@ class ExternallyConnectableMessagingWithTlsChannelIdTest :
net::ChannelIDService::Request request;
content::BrowserThread::PostTask(
content::BrowserThread::IO, FROM_HERE,
- base::Bind(&ExternallyConnectableMessagingWithTlsChannelIdTest::
- CreateDomainBoundCertOnIOThread,
- base::Unretained(this), base::Unretained(&channel_id_key),
- base::Unretained(&request), request_context_getter));
+ base::BindOnce(&ExternallyConnectableMessagingWithTlsChannelIdTest::
+ CreateDomainBoundCertOnIOThread,
+ base::Unretained(this),
+ base::Unretained(&channel_id_key),
+ base::Unretained(&request), request_context_getter));
tls_channel_id_created_.Wait();
// Create the expected value.
std::vector<uint8_t> spki_vector;
« no previous file with comments | « chrome/browser/extensions/extension_install_prompt.cc ('k') | chrome/browser/extensions/extension_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698