OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "components/browser_watcher/postmortem_report_extractor.h" | 5 #include "components/browser_watcher/stability_report_extractor.h" |
6 | 6 |
7 #include <memory> | 7 #include <memory> |
8 #include <string> | 8 #include <string> |
9 #include <utility> | 9 #include <utility> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/debug/activity_analyzer.h" | 12 #include "base/debug/activity_analyzer.h" |
13 #include "base/logging.h" | 13 #include "base/logging.h" |
14 #include "base/metrics/histogram_macros.h" | 14 #include "base/metrics/histogram_macros.h" |
15 #include "base/strings/string_piece.h" | 15 #include "base/strings/string_piece.h" |
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 CollectThread(thread_analyzer->activity_snapshot(), thread_state); | 262 CollectThread(thread_analyzer->activity_snapshot(), thread_state); |
263 } | 263 } |
264 | 264 |
265 // Collect module information. | 265 // Collect module information. |
266 CollectModuleInformation(global_analyzer->GetModules(), process_state); | 266 CollectModuleInformation(global_analyzer->GetModules(), process_state); |
267 | 267 |
268 return SUCCESS; | 268 return SUCCESS; |
269 } | 269 } |
270 | 270 |
271 } // namespace browser_watcher | 271 } // namespace browser_watcher |
OLD | NEW |