summaryrefslogtreecommitdiffstats
path: root/chrome/browser/external_protocol
diff options
context:
space:
mode:
authorrsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-27 02:56:21 +0000
committerrsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-27 02:56:21 +0000
commit649d1c0ea7c08dec1586220da91a2ac3f73206ea (patch)
treeda3ba2bd2812f1440827aac59c2e657c0b06a243 /chrome/browser/external_protocol
parent3819c76919240d0470005263ae64761d7f7ed97f (diff)
downloadchromium_src-649d1c0ea7c08dec1586220da91a2ac3f73206ea.zip
chromium_src-649d1c0ea7c08dec1586220da91a2ac3f73206ea.tar.gz
chromium_src-649d1c0ea7c08dec1586220da91a2ac3f73206ea.tar.bz2
RefCounted types should not have public destructors, chrome/browser/ part 6
BUG=123295 TEST=none Review URL: http://codereview.chromium.org/10071036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134218 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/external_protocol')
-rw-r--r--chrome/browser/external_protocol/external_protocol_handler_unittest.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/browser/external_protocol/external_protocol_handler_unittest.cc b/chrome/browser/external_protocol/external_protocol_handler_unittest.cc
index 14ced2f..167c1e0 100644
--- a/chrome/browser/external_protocol/external_protocol_handler_unittest.cc
+++ b/chrome/browser/external_protocol/external_protocol_handler_unittest.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -21,6 +21,8 @@ class FakeExternalProtocolHandlerWorker
os_state_(os_state) {}
private:
+ virtual ~FakeExternalProtocolHandlerWorker() {}
+
virtual ShellIntegration::DefaultWebClientState CheckIsDefault() {
return os_state_;
}