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

Unified Diff: content/browser/installedapp/installed_app_provider_impl_default.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/installedapp/installed_app_provider_impl_default.cc
diff --git a/content/browser/installedapp/installed_app_provider_impl_default.cc b/content/browser/installedapp/installed_app_provider_impl_default.cc
index 10e512a4024fe891c5661937da11ec1a364a0bab..ee5de2874c2ea9293b1f25ccf44904b7236f05f2 100644
--- a/content/browser/installedapp/installed_app_provider_impl_default.cc
+++ b/content/browser/installedapp/installed_app_provider_impl_default.cc
@@ -22,7 +22,8 @@ void InstalledAppProviderImplDefault::FilterInstalledApps(
// static
void InstalledAppProviderImplDefault::Create(
- mojo::InterfaceRequest<blink::mojom::InstalledAppProvider> request) {
+ const service_manager::BindSourceInfo& source_info,
+ blink::mojom::InstalledAppProviderRequest request) {
mojo::MakeStrongBinding(base::MakeUnique<InstalledAppProviderImplDefault>(),
std::move(request));
}

Powered by Google App Engine
This is Rietveld 408576698