summaryrefslogtreecommitdiffstats
path: root/ipc
diff options
context:
space:
mode:
authorziadh@chromium.org <ziadh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-02 16:34:16 +0000
committerziadh@chromium.org <ziadh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-02 16:34:16 +0000
commit695092fd7614c257866347f049e28ec327d7a3d3 (patch)
treedfe6ab2c6c0deff9bb6aa82e808c93df57b5c96d /ipc
parent74d1397a6cd1d497fe27d6f0e27cd20d70e1ab85 (diff)
downloadchromium_src-695092fd7614c257866347f049e28ec327d7a3d3.zip
chromium_src-695092fd7614c257866347f049e28ec327d7a3d3.tar.gz
chromium_src-695092fd7614c257866347f049e28ec327d7a3d3.tar.bz2
Add undeclared virtual destructors part 5
Preventative maintenance for abstract classes that do not declare virtual destructors. Base classes that do not declare their destructors as virtual could potentially lead to memory leaks. These files were discovered using the -Wnon-virtual-dtor flag in g++. r=jar BUG=47469 Review URL: http://codereview.chromium.org/3080013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54540 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc')
-rw-r--r--ipc/ipc_fuzzing_tests.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/ipc/ipc_fuzzing_tests.cc b/ipc/ipc_fuzzing_tests.cc
index f94e170..f9340e6 100644
--- a/ipc/ipc_fuzzing_tests.cc
+++ b/ipc/ipc_fuzzing_tests.cc
@@ -374,6 +374,8 @@ class ServerMacroExTest {
public:
ServerMacroExTest() : unhandled_msgs_(0) {
}
+ virtual ~ServerMacroExTest() {
+ }
virtual bool OnMessageReceived(const IPC::Message& msg) {
bool msg_is_ok = false;
IPC_BEGIN_MESSAGE_MAP_EX(ServerMacroExTest, msg, msg_is_ok)