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

Unified Diff: content/child/url_loader_client_impl.cc

Issue 2695333002: Mojo C++ bindings: remove usage of AssociatedGroup from content/ (Closed)
Patch Set: . Created 3 years, 10 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 | « content/child/url_loader_client_impl.h ('k') | content/child/url_loader_client_impl_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/url_loader_client_impl.cc
diff --git a/content/child/url_loader_client_impl.cc b/content/child/url_loader_client_impl.cc
index bb5eeba4593f040301504e443611b5e68342a528..ab1e9309d93cd8d06da954d90ae32d3abfb859ef 100644
--- a/content/child/url_loader_client_impl.cc
+++ b/content/child/url_loader_client_impl.cc
@@ -9,7 +9,6 @@
#include "content/child/resource_dispatcher.h"
#include "content/child/url_response_body_consumer.h"
#include "content/common/resource_messages.h"
-#include "mojo/public/cpp/bindings/associated_group.h"
#include "net/url_request/redirect_info.h"
namespace content {
@@ -30,9 +29,8 @@ URLLoaderClientImpl::~URLLoaderClientImpl() {
}
void URLLoaderClientImpl::Bind(
- mojom::URLLoaderClientAssociatedPtrInfo* client_ptr_info,
- mojo::AssociatedGroup* associated_group) {
- binding_.Bind(client_ptr_info, associated_group);
+ mojom::URLLoaderClientAssociatedPtrInfo* client_ptr_info) {
+ binding_.Bind(client_ptr_info);
}
void URLLoaderClientImpl::SetDefersLoading() {
« no previous file with comments | « content/child/url_loader_client_impl.h ('k') | content/child/url_loader_client_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698