From bbf94a3e7f3c4372c4ff918a6811a505d8fd69b9 Mon Sep 17 00:00:00 2001 From: "erg@google.com" Date: Wed, 13 Oct 2010 17:44:15 +0000 Subject: FBTF: Fix more ctor/dtors found by clang plugin. (1.2 megs off of Debug Linux .a files) BUG=none TEST=compiles everywhere Review URL: http://codereview.chromium.org/3743001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62420 0039d316-1c4b-4281-b951-d872f2087c98 --- base/process_util.cc | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'base/process_util.cc') diff --git a/base/process_util.cc b/base/process_util.cc index f6e0d84..6293740 100644 --- a/base/process_util.cc +++ b/base/process_util.cc @@ -6,6 +6,11 @@ namespace base { +#if defined(OS_POSIX) +ProcessEntry::ProcessEntry() {} +ProcessEntry::~ProcessEntry() {} +#endif + int GetProcessCount(const std::wstring& executable_name, const ProcessFilter* filter) { int count = 0; -- cgit v1.1