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 28568499d91430e9bef273fa8994adba668965d2..3d572be7934db3f42c2bcfe4990860d1e04530cc 100644 |
--- a/chrome/utility/importer/firefox_importer_unittest_utils_mac.cc |
+++ b/chrome/utility/importer/firefox_importer_unittest_utils_mac.cc |
@@ -137,7 +137,8 @@ bool FFUnitTestDecryptorProxy::Setup(const base::FilePath& nss_path) { |
message_loop_.reset(new base::MessageLoopForIO()); |
listener_.reset(new FFDecryptorServerChannelListener()); |
- channel_ = IPC::Channel::CreateServer(kTestChannelID, listener_.get()); |
+ channel_ = |
+ IPC::Channel::CreateServer(kTestChannelID, listener_.get(), nullptr); |
CHECK(channel_->Connect()); |
listener_->SetSender(channel_.get()); |
@@ -284,8 +285,8 @@ MULTIPROCESS_IPC_TEST_MAIN(NSSDecrypterChildProcess) { |
base::MessageLoopForIO main_message_loop; |
FFDecryptorClientChannelListener listener; |
- scoped_ptr<IPC::Channel> channel = IPC::Channel::CreateClient( |
- kTestChannelID, &listener); |
+ scoped_ptr<IPC::Channel> channel = |
+ IPC::Channel::CreateClient(kTestChannelID, &listener, nullptr); |
CHECK(channel->Connect()); |
listener.SetSender(channel.get()); |