diff options
author | rsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-25 16:59:11 +0000 |
---|---|---|
committer | rsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-25 16:59:11 +0000 |
commit | 7b2720bda84d6a798e68e08d23f667d8a060f193 (patch) | |
tree | a51d1da71bafee97d70edcc6362d113547f0d537 /chrome/common/service_process_util_mac.mm | |
parent | ab4306e4ffec234fb7e4e8aa887ac3bf0bcf3295 (diff) | |
download | chromium_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.mm | 5 |
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_; }; |