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

Unified Diff: chrome/utility/importer/firefox_importer_unittest_utils_mac.cc

Issue 2738853002: Connections now take a ConnectionParams instead of a pipe handle. (Closed)
Patch Set: Fix Win release build. Created 3 years, 9 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/test/base/mojo_test_connector.cc ('k') | components/arc/arc_session.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/utility/importer/firefox_importer_unittest_utils_mac.cc
diff --git a/chrome/utility/importer/firefox_importer_unittest_utils_mac.cc b/chrome/utility/importer/firefox_importer_unittest_utils_mac.cc
index e94d6711cb0f393a4f93d0e80103a13d105f3328..423e4f7597757623139f17eebbf1d5b79245b947 100644
--- a/chrome/utility/importer/firefox_importer_unittest_utils_mac.cc
+++ b/chrome/utility/importer/firefox_importer_unittest_utils_mac.cc
@@ -159,7 +159,9 @@ bool FFUnitTestDecryptorProxy::Setup(const base::FilePath& nss_path) {
child_process_ = LaunchNSSDecrypterChildProcess(
nss_path, channel_pair.PassClientHandle(), token);
if (child_process_.IsValid())
- process.Connect(child_process_.Handle(), channel_pair.PassServerHandle());
+ process.Connect(
+ child_process_.Handle(),
+ mojo::edk::ConnectionParams(channel_pair.PassServerHandle()));
return child_process_.IsValid();
}
« no previous file with comments | « chrome/test/base/mojo_test_connector.cc ('k') | components/arc/arc_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698