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

Unified Diff: ipc/ipc_channel_win.cc

Issue 1320783002: Make SharedMemoryHandle a class on windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ipc_global
Patch Set: Add a safety check. 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_win.cc
diff --git a/ipc/ipc_channel_win.cc b/ipc/ipc_channel_win.cc
index 8cd7dde84f97f414082b5f89c6f90b7a92f1238d..be009cddb1020cdee844fcc62c660dc3e1dfd5f4 100644
--- a/ipc/ipc_channel_win.cc
+++ b/ipc/ipc_channel_win.cc
@@ -572,8 +572,7 @@ scoped_ptr<Channel> Channel::Create(const IPC::ChannelHandle& channel_handle,
Mode mode,
Listener* listener,
AttachmentBroker* broker) {
- return scoped_ptr<Channel>(
- new ChannelWin(channel_handle, mode, listener));
+ return scoped_ptr<Channel>(new ChannelWin(channel_handle, mode, listener));
}
// static

Powered by Google App Engine
This is Rietveld 408576698