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

Unified Diff: ipc/ipc_test_base.h

Issue 1397023002: ipc: Write end-to-end tests for SharedMemoryHandle brokering on Mac. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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
Index: ipc/ipc_test_base.h
diff --git a/ipc/ipc_test_base.h b/ipc/ipc_test_base.h
index 59f5b8654035b2e1d110501daae37fc810cd6865..372d12a9dfd11a8d0d7a0aeb232945e35d76e3dc 100644
--- a/ipc/ipc_test_base.h
+++ b/ipc/ipc_test_base.h
@@ -103,9 +103,6 @@ class IPCTestBase : public base::MultiProcessTest {
IPC::Channel* channel() { return channel_.get(); }
IPC::ChannelProxy* channel_proxy() { return channel_proxy_.get(); }
- void set_attachment_broker(IPC::AttachmentBroker* broker) {
- attachment_broker_ = broker;
- }
const base::Process& client_process() const { return client_process_; }
scoped_refptr<base::SequencedTaskRunner> task_runner();
@@ -124,10 +121,6 @@ class IPCTestBase : public base::MultiProcessTest {
scoped_ptr<IPC::Channel> channel_;
scoped_ptr<IPC::ChannelProxy> channel_proxy_;
- // The AttachmentBroker that should be passed to |channel_| when it is
- // created.
- IPC::AttachmentBroker* attachment_broker_;
-
base::Process client_process_;
DISALLOW_COPY_AND_ASSIGN(IPCTestBase);

Powered by Google App Engine
This is Rietveld 408576698