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

Unified Diff: ipc/ipc_channel_proxy.h

Issue 159366: Fix memory leak in IPC::ChannelProxy (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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
« no previous file with comments | « no previous file | ipc/ipc_channel_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/ipc_channel_proxy.h
===================================================================
--- ipc/ipc_channel_proxy.h (revision 21433)
+++ ipc/ipc_channel_proxy.h (working copy)
@@ -14,6 +14,8 @@
namespace IPC {
+class SendTask;
+
//-----------------------------------------------------------------------------
// IPC::ChannelProxy
//
@@ -174,6 +176,7 @@
private:
friend class ChannelProxy;
+ friend class SendTask;
// Create the Channel
void CreateChannel(const std::string& id, const Channel::Mode& mode);
@@ -199,6 +202,8 @@
Context* context() { return context_; }
private:
+ friend class SendTask;
+
void Init(const std::string& channel_id, Channel::Mode mode,
MessageLoop* ipc_thread_loop, bool create_pipe_now);
« no previous file with comments | « no previous file | ipc/ipc_channel_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698