summaryrefslogtreecommitdiffstats
path: root/chrome/common/service_process_util_mac.mm
diff options
context:
space:
mode:
authorrsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-25 16:59:11 +0000
committerrsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-25 16:59:11 +0000
commit7b2720bda84d6a798e68e08d23f667d8a060f193 (patch)
treea51d1da71bafee97d70edcc6362d113547f0d537 /chrome/common/service_process_util_mac.mm
parentab4306e4ffec234fb7e4e8aa887ac3bf0bcf3295 (diff)
downloadchromium_src-7b2720bda84d6a798e68e08d23f667d8a060f193.zip
chromium_src-7b2720bda84d6a798e68e08d23f667d8a060f193.tar.gz
chromium_src-7b2720bda84d6a798e68e08d23f667d8a060f193.tar.bz2
RefCounted types should not have public destructors, chrome/ edition
BUG=123295 TEST=none Review URL: http://codereview.chromium.org/10065040 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133927 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/service_process_util_mac.mm')
-rw-r--r--chrome/common/service_process_util_mac.mm5
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/common/service_process_util_mac.mm b/chrome/common/service_process_util_mac.mm
index 4100bcb..72f0f21 100644
--- a/chrome/common/service_process_util_mac.mm
+++ b/chrome/common/service_process_util_mac.mm
@@ -75,13 +75,14 @@ bool RemoveFromLaunchd() {
class ExecFilePathWatcherDelegate : public FilePathWatcher::Delegate {
public:
- ExecFilePathWatcherDelegate() { }
- virtual ~ExecFilePathWatcherDelegate() { }
+ ExecFilePathWatcherDelegate() {}
bool Init(const FilePath& path);
virtual void OnFilePathChanged(const FilePath& path) OVERRIDE;
private:
+ virtual ~ExecFilePathWatcherDelegate() {}
+
FSRef executable_fsref_;
};