diff options
author | hans@chromium.org <hans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-10 22:08:08 +0000 |
---|---|---|
committer | hans@chromium.org <hans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-10 22:08:08 +0000 |
commit | 23827ecacc856f01a55cd7102270c3ff86df042b (patch) | |
tree | ac16dba390c6563f4085991a21ecdb07d4913086 /chrome/browser/process_info_snapshot.h | |
parent | 77c6d060599dccd23ae1bb4ddbc809cb550d2178 (diff) | |
download | chromium_src-23827ecacc856f01a55cd7102270c3ff86df042b.zip chromium_src-23827ecacc856f01a55cd7102270c3ff86df042b.tar.gz chromium_src-23827ecacc856f01a55cd7102270c3ff86df042b.tar.bz2 |
Clean-up inline members of nested classes (chrome/)
Due to a bug, the Clang-plugin style checker failed to warn about
inline constructors, destructors, non-empty virtual methods, etc.
for nested classes.
The plugin has been fixed, and this patch is part of a clean-up of all
the code that now causes the plugin to issue errors.
BUG=139346
Review URL: https://chromiumcodereview.appspot.com/10855075
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151135 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/process_info_snapshot.h')
-rw-r--r-- | chrome/browser/process_info_snapshot.h | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/chrome/browser/process_info_snapshot.h b/chrome/browser/process_info_snapshot.h index 8123082..62cd134 100644 --- a/chrome/browser/process_info_snapshot.h +++ b/chrome/browser/process_info_snapshot.h @@ -57,16 +57,7 @@ class ProcessInfoSnapshot { uint64_t vsize; std::string command; - ProcInfoEntry() - : pid(0), - ppid(0), - uid(0), - euid(0), - rss(0), - rshrd(0), - rprvt(0), - vsize(0) { - } + ProcInfoEntry(); }; // Get process information for a given PID. |