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

Unified Diff: ipc/ipc_channel_win.h

Issue 7486007: Fix NamedProxyLauncher on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ... Created 9 years, 5 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.h
diff --git a/ipc/ipc_channel_win.h b/ipc/ipc_channel_win.h
index 358d6fa5072550e3562e26b00fbb9e878492955a..c0a4a2f7e88293214ae55aa63940133d7ae0f680 100644
--- a/ipc/ipc_channel_win.h
+++ b/ipc/ipc_channel_win.h
@@ -31,7 +31,6 @@ class Channel::ChannelImpl : public MessageLoopForIO::IOHandler {
void set_listener(Listener* listener) { listener_ = listener; }
bool Send(Message* message);
private:
- const std::wstring PipeName(const std::string& channel_id) const;
bool CreatePipe(const IPC::ChannelHandle &channel_handle, Mode mode);
bool ProcessConnection();
@@ -85,6 +84,8 @@ class Channel::ChannelImpl : public MessageLoopForIO::IOHandler {
DISALLOW_COPY_AND_ASSIGN(ChannelImpl);
};
+const std::wstring PipeNameFromChannelId(const std::string& channel_id);
+
} // namespace IPC
#endif // IPC_IPC_CHANNEL_WIN_H_

Powered by Google App Engine
This is Rietveld 408576698