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

Unified Diff: components/web_restrictions/browser/web_restrictions_mojo_implementation.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: components/web_restrictions/browser/web_restrictions_mojo_implementation.cc
diff --git a/components/web_restrictions/browser/web_restrictions_mojo_implementation.cc b/components/web_restrictions/browser/web_restrictions_mojo_implementation.cc
index 5a0af86ea614c6905ee47b289b794a5c09ae9368..c7046c651a6a9cc120b96b673f5e226f7be508de 100644
--- a/components/web_restrictions/browser/web_restrictions_mojo_implementation.cc
+++ b/components/web_restrictions/browser/web_restrictions_mojo_implementation.cc
@@ -31,7 +31,8 @@ WebRestrictionsMojoImplementation::~WebRestrictionsMojoImplementation() {}
void WebRestrictionsMojoImplementation::Create(
WebRestrictionsClient* client,
- mojo::InterfaceRequest<mojom::WebRestrictions> request) {
+ const service_manager::BindSourceInfo& source_info,
+ mojom::WebRestrictionsRequest request) {
mojo::MakeStrongBinding(
base::MakeUnique<WebRestrictionsMojoImplementation>(client),
std::move(request));

Powered by Google App Engine
This is Rietveld 408576698