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

Unified Diff: chrome/common/ipc_channel.h

Issue 270: Adds missing virtual destructors on a couple of interface classes. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 12 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 | « no previous file | chrome/common/ipc_message.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/ipc_channel.h
===================================================================
--- chrome/common/ipc_channel.h (revision 1819)
+++ chrome/common/ipc_channel.h (working copy)
@@ -23,6 +23,8 @@
// Implemented by consumers of a Channel to receive messages.
class Listener {
public:
+ virtual ~Listener() {}
+
// Called when a message is received.
virtual void OnMessageReceived(const Message& message) = 0;
« no previous file with comments | « no previous file | chrome/common/ipc_message.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698