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

Unified Diff: base/process_util_posix.cc

Issue 552004: Style cleanup in preparation for auto-linting base/. (Closed)
Patch Set: Created 10 years, 11 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
« no previous file with comments | « base/observer_list_unittest.cc ('k') | base/process_util_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/process_util_posix.cc
diff --git a/base/process_util_posix.cc b/base/process_util_posix.cc
index d92a4fa94ac4dc14a1b6fa112ddb185807fb4dc4..eca87df54bebea070fc40e44247df2cec67d8070 100644
--- a/base/process_util_posix.cc
+++ b/base/process_util_posix.cc
@@ -468,7 +468,7 @@ ProcessMetrics::ProcessMetrics(ProcessHandle process,
last_system_time_(0)
#if defined(OS_LINUX)
, last_cpu_(0)
-#elif defined (OS_MACOSX)
+#elif defined(OS_MACOSX)
, port_provider_(port_provider)
#endif
{
@@ -541,7 +541,7 @@ bool DidProcessCrash(bool* child_exited, ProcessHandle handle) {
*child_exited = true;
if (WIFSIGNALED(status)) {
- switch(WTERMSIG(status)) {
+ switch (WTERMSIG(status)) {
case SIGSEGV:
case SIGILL:
case SIGABRT:
« no previous file with comments | « base/observer_list_unittest.cc ('k') | base/process_util_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698