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

Unified Diff: chrome/utility/profile_import_handler.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 | « chrome/utility/profile_import_handler.h ('k') | chrome/utility/shell_handler_impl_win.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/utility/profile_import_handler.cc
diff --git a/chrome/utility/profile_import_handler.cc b/chrome/utility/profile_import_handler.cc
index 0f6ea557c5081e28c7fbc0c3872a5c34a715edc7..f76f2ba0e6bb608098d77df9cddf05429c3d6e2e 100644
--- a/chrome/utility/profile_import_handler.cc
+++ b/chrome/utility/profile_import_handler.cc
@@ -26,7 +26,8 @@ ProfileImportHandler::~ProfileImportHandler() {}
// static
void ProfileImportHandler::Create(
- mojo::InterfaceRequest<chrome::mojom::ProfileImport> request) {
+ const service_manager::BindSourceInfo& source_info,
+ chrome::mojom::ProfileImportRequest request) {
mojo::MakeStrongBinding(base::MakeUnique<ProfileImportHandler>(),
std::move(request));
}
« no previous file with comments | « chrome/utility/profile_import_handler.h ('k') | chrome/utility/shell_handler_impl_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698