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

Unified Diff: chrome/browser/importer/external_process_importer_client.cc

Issue 2592623002: mojo:: Introduce InterfaceRequest ctor that takes in InterfacePtr* (Closed)
Patch Set: Rebase + response to review Created 4 years 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 | « no previous file | chrome/browser/task_manager/providers/child_process_task.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/importer/external_process_importer_client.cc
diff --git a/chrome/browser/importer/external_process_importer_client.cc b/chrome/browser/importer/external_process_importer_client.cc
index c4894cf212f1ae780699412bf9c34743e4556d58..96ca1ed33924500563ac2927c65447af004fe229 100644
--- a/chrome/browser/importer/external_process_importer_client.cc
+++ b/chrome/browser/importer/external_process_importer_client.cc
@@ -44,8 +44,7 @@ ExternalProcessImporterClient::ExternalProcessImporterClient(
void ExternalProcessImporterClient::Start() {
AddRef(); // balanced in Cleanup.
- chrome::mojom::ProfileImportRequest request =
- mojo::MakeRequest(&profile_import_);
+ chrome::mojom::ProfileImportRequest request(&profile_import_);
BrowserThread::ID thread_id;
CHECK(BrowserThread::GetCurrentThreadIdentifier(&thread_id));
« no previous file with comments | « no previous file | chrome/browser/task_manager/providers/child_process_task.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698