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

Unified Diff: ipc/ipc_channel_posix.cc

Issue 1320783002: Make SharedMemoryHandle a class on windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ipc_global
Patch Set: Fix DCHECK. Created 5 years, 3 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_channel_posix.cc
diff --git a/ipc/ipc_channel_posix.cc b/ipc/ipc_channel_posix.cc
index b3aee8e06bb06de8be578098541037406be4937b..211cae6b1d14d62020c8c31fbc72159d5b3d0044 100644
--- a/ipc/ipc_channel_posix.cc
+++ b/ipc/ipc_channel_posix.cc
@@ -1021,8 +1021,7 @@ scoped_ptr<Channel> Channel::Create(const IPC::ChannelHandle& channel_handle,
Mode mode,
Listener* listener,
AttachmentBroker* broker) {
- return make_scoped_ptr(
- new ChannelPosix(channel_handle, mode, listener));
+ return make_scoped_ptr(new ChannelPosix(channel_handle, mode, listener));
}
// static

Powered by Google App Engine
This is Rietveld 408576698