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

Unified Diff: chrome/common/service_process_util_mac.mm

Issue 10065040: RefCounted types should not have public destructors, chrome/ remaining parts (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Implementation fixes Created 8 years, 8 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
Index: chrome/common/service_process_util_mac.mm
diff --git a/chrome/common/service_process_util_mac.mm b/chrome/common/service_process_util_mac.mm
index 4100bcb0671fd2b635a3fb57edcb32b23bf5c237..72f0f217452088908a5ccad7554be0563cd1df02 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_;
};

Powered by Google App Engine
This is Rietveld 408576698