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

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

Issue 1184523003: attachment broker wip (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Minor comments. Created 5 years, 6 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/service/service_ipc_server.cc ('k') | components/nacl/broker/nacl_broker_listener.h » ('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 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());
« no previous file with comments | « chrome/service/service_ipc_server.cc ('k') | components/nacl/broker/nacl_broker_listener.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698