summaryrefslogtreecommitdiffstats
path: root/chromium/content/browser/histogram_controller.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/content/browser/histogram_controller.cc')
-rw-r--r--chromium/content/browser/histogram_controller.cc11
1 files changed, 10 insertions, 1 deletions
diff --git a/chromium/content/browser/histogram_controller.cc b/chromium/content/browser/histogram_controller.cc
index 240de2556b9..3b11c32bf11 100644
--- a/chromium/content/browser/histogram_controller.cc
+++ b/chromium/content/browser/histogram_controller.cc
@@ -6,6 +6,7 @@
#include "base/bind.h"
#include "base/metrics/histogram.h"
+#include "base/process/process_handle.h"
#include "content/browser/histogram_subscriber.h"
#include "content/common/child_process_messages.h"
#include "content/public/browser/browser_child_process_host_iterator.h"
@@ -72,7 +73,8 @@ void HistogramController::GetHistogramDataFromChildProcesses(
int pending_processes = 0;
for (BrowserChildProcessHostIterator iter; !iter.Done(); ++iter) {
- int type = iter.GetData().process_type;
+ const ChildProcessData& data = iter.GetData();
+ int type = data.process_type;
if (type != PROCESS_TYPE_PLUGIN &&
type != PROCESS_TYPE_GPU &&
type != PROCESS_TYPE_PPAPI_PLUGIN &&
@@ -80,6 +82,13 @@ void HistogramController::GetHistogramDataFromChildProcesses(
continue;
}
+ // In some cases, there may be no child process of the given type (for
+ // example, the GPU process may not exist and there may instead just be a
+ // GPU thread in the browser process). If that's the case, then the process
+ // handle will be base::kNullProcessHandle and we shouldn't ask it for data.
+ if (data.handle == base::kNullProcessHandle)
+ continue;
+
++pending_processes;
if (!iter.Send(new ChildProcessMsg_GetChildHistogramData(sequence_number)))
--pending_processes;