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

Unified Diff: components/rappor/rappor_recorder_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
« no previous file with comments | « components/rappor/rappor_recorder_impl.h ('k') | components/safe_json/utility/safe_json_parser_mojo_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/rappor/rappor_recorder_impl.cc
diff --git a/components/rappor/rappor_recorder_impl.cc b/components/rappor/rappor_recorder_impl.cc
index 805e2fdca9b19f8e324522983aad064cd0c09400..4a2a23d3d78c4d021aa67b850e99382dda238d04 100644
--- a/components/rappor/rappor_recorder_impl.cc
+++ b/components/rappor/rappor_recorder_impl.cc
@@ -17,8 +17,10 @@ RapporRecorderImpl::RapporRecorderImpl(RapporServiceImpl* rappor_service)
RapporRecorderImpl::~RapporRecorderImpl() = default;
// static
-void RapporRecorderImpl::Create(RapporServiceImpl* rappor_service,
- mojom::RapporRecorderRequest request) {
+void RapporRecorderImpl::Create(
+ RapporServiceImpl* rappor_service,
+ const service_manager::BindSourceInfo& source_info,
+ mojom::RapporRecorderRequest request) {
mojo::MakeStrongBinding(base::MakeUnique<RapporRecorderImpl>(rappor_service),
std::move(request));
}
« no previous file with comments | « components/rappor/rappor_recorder_impl.h ('k') | components/safe_json/utility/safe_json_parser_mojo_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698