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

Unified Diff: ipc/ipc_channel_proxy.cc

Issue 1279863004: Complete SyncMessageFilter initialization after SyncChannel initialization (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: eh, vector instead of list Created 5 years, 4 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_proxy.h ('k') | ipc/ipc_sync_channel.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/ipc_channel_proxy.cc
diff --git a/ipc/ipc_channel_proxy.cc b/ipc/ipc_channel_proxy.cc
index adb3d674ea3b82d8157ab615830a0b57baa053e6..2398b516419ac265c523863c13ad6ca0e696ef07 100644
--- a/ipc/ipc_channel_proxy.cc
+++ b/ipc/ipc_channel_proxy.cc
@@ -430,6 +430,7 @@ void ChannelProxy::Init(scoped_ptr<ChannelFactory> factory,
FROM_HERE, base::Bind(&Context::OnChannelOpened, context_.get()));
did_init_ = true;
+ OnChannelInit();
}
void ChannelProxy::Close() {
@@ -514,6 +515,9 @@ void ChannelProxy::SetAttachmentBrokerEndpoint(bool is_endpoint) {
context()->set_attachment_broker_endpoint(is_endpoint);
}
+void ChannelProxy::OnChannelInit() {
+}
+
//-----------------------------------------------------------------------------
} // namespace IPC
« no previous file with comments | « ipc/ipc_channel_proxy.h ('k') | ipc/ipc_sync_channel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698