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

Unified Diff: ipc/ipc_channel_win.cc

Issue 601563002: Remove IPC::Channel::TakePipeHandle() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed Nacl build error Created 6 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
« no previous file with comments | « ipc/ipc_channel_win.h ('k') | ipc/ipc_test_sink.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/ipc_channel_win.cc
diff --git a/ipc/ipc_channel_win.cc b/ipc/ipc_channel_win.cc
index cff6cd4335686c09007f18ce054608729b0b6659..1ca9616e6952a9c975d54a3382d6ba916af4bb20 100644
--- a/ipc/ipc_channel_win.cc
+++ b/ipc/ipc_channel_win.cc
@@ -144,12 +144,6 @@ base::ProcessId ChannelWin::GetSelfPID() const {
return GetCurrentProcessId();
}
-ChannelHandle ChannelWin::TakePipeHandle() {
- ChannelHandle handle = ChannelHandle(pipe_);
- pipe_ = INVALID_HANDLE_VALUE;
- return handle;
-}
-
// static
bool ChannelWin::IsNamedServerInitialized(
const std::string& channel_id) {
« no previous file with comments | « ipc/ipc_channel_win.h ('k') | ipc/ipc_test_sink.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698