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

Unified Diff: content/browser/message_port_message_filter.h

Issue 324143002: Decouple IPC::MessageFilter from IPC::Channel (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixing compilation errors Created 6 years, 6 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: content/browser/message_port_message_filter.h
diff --git a/content/browser/message_port_message_filter.h b/content/browser/message_port_message_filter.h
index 64d07d6c328b3e3e5430dcecb19d6aca0759424b..54eddf9073edae5c603ae8caad93d6f829def4a8 100644
--- a/content/browser/message_port_message_filter.h
+++ b/content/browser/message_port_message_filter.h
@@ -22,7 +22,7 @@ class CONTENT_EXPORT MessagePortMessageFilter : public BrowserMessageFilter {
explicit MessagePortMessageFilter(const NextRoutingIDCallback& callback);
// BrowserMessageFilter implementation.
- virtual void OnChannelClosing() OVERRIDE;
+ virtual void OnSenderClosing() OVERRIDE;
virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
virtual void OnDestruct() const OVERRIDE;
@@ -45,7 +45,7 @@ class CONTENT_EXPORT MessagePortMessageFilter : public BrowserMessageFilter {
// Message handlers.
void OnCreateMessagePort(int* route_id, int* message_port_id);
- // This is guaranteed to be valid until OnChannelClosing is invoked, and it's
+ // This is guaranteed to be valid until OnSenderClosing is invoked, and it's
// not used after.
NextRoutingIDCallback next_routing_id_;

Powered by Google App Engine
This is Rietveld 408576698