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

Side by Side Diff: chrome/browser/chrome_child_process_watcher.cc

Issue 1067733006: Add extra parameter to BrowserChildProcessCrashed to pass the exit_code at time of crash/termination (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: mac compile fix Created 5 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
Lei Zhang 2015/04/27 21:47:35 nit: 2015
Will Harris 2015/04/28 21:15:45 Done.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/chrome_child_process_watcher.h"
6
7 #include "base/command_line.h"
8 #include "base/metrics/histogram.h"
9 #include "chrome/common/chrome_result_codes.h"
10 #include "chrome/common/chrome_switches.h"
11 #include "content/public/browser/browser_child_process_observer.h"
12 #include "content/public/browser/child_process_data.h"
13
14 namespace {
15
16 void AnalyzeCrash(int exit_code) {
17 if (exit_code == chrome::RESULT_CODE_INVALID_SANDBOX_STATE) {
18 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
19 const bool no_startup_window =
20 command_line->HasSwitch(switches::kNoStartupWindow);
21 UMA_HISTOGRAM_BOOLEAN(
22 "ChildProcess.InvalidSandboxStateCrash.NoStartupWindow",
23 no_startup_window);
24 }
25 }
26
27 } // namespace
28
29 ChromeChildProcessWatcher::ChromeChildProcessWatcher() {
30 BrowserChildProcessObserver::Add(this);
31 }
32
33 ChromeChildProcessWatcher::~ChromeChildProcessWatcher() {
34 BrowserChildProcessObserver::Remove(this);
35 }
36
37 void ChromeChildProcessWatcher::BrowserChildProcessCrashed(
38 const content::ChildProcessData& data,
39 int exit_code) {
40 AnalyzeCrash(exit_code);
41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698