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

Unified Diff: content/browser/mime_registry_impl.cc

Issue 2851173004: Eliminate bind callback that doesn't take a BindSourceInfo parameter. (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: content/browser/mime_registry_impl.cc
diff --git a/content/browser/mime_registry_impl.cc b/content/browser/mime_registry_impl.cc
index e2dadbb0ca79af7872cc5705e88c3638cdf01d24..f46161e266c597828da30a1ab0a7f9e57b4baeea 100644
--- a/content/browser/mime_registry_impl.cc
+++ b/content/browser/mime_registry_impl.cc
@@ -17,7 +17,9 @@ MimeRegistryImpl::MimeRegistryImpl() = default;
MimeRegistryImpl::~MimeRegistryImpl() = default;
// static
-void MimeRegistryImpl::Create(blink::mojom::MimeRegistryRequest request) {
+void MimeRegistryImpl::Create(
+ const service_manager::BindSourceInfo& source_info,
+ blink::mojom::MimeRegistryRequest request) {
DCHECK_CURRENTLY_ON(BrowserThread::FILE);
mojo::MakeStrongBinding(base::MakeUnique<MimeRegistryImpl>(),
std::move(request));
« no previous file with comments | « content/browser/mime_registry_impl.h ('k') | content/browser/notifications/platform_notification_context_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698