| 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 "base/debug/activity_analyzer.h" | 5 #include "base/debug/activity_analyzer.h" |
| 6 | 6 |
| 7 #include "base/files/file.h" | 7 #include "base/files/file.h" |
| 8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
| 9 #include "base/files/memory_mapped_file.h" | 9 #include "base/files/memory_mapped_file.h" |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 // Create the analyzer on the data. This will capture a snapshot of the | 112 // Create the analyzer on the data. This will capture a snapshot of the |
| 113 // tracker state. This can fail if the tracker is somehow corrupted or is | 113 // tracker state. This can fail if the tracker is somehow corrupted or is |
| 114 // in the process of shutting down. | 114 // in the process of shutting down. |
| 115 std::unique_ptr<ThreadActivityAnalyzer> analyzer(new ThreadActivityAnalyzer( | 115 std::unique_ptr<ThreadActivityAnalyzer> analyzer(new ThreadActivityAnalyzer( |
| 116 base, allocator_->GetAllocSize(tracker_ref))); | 116 base, allocator_->GetAllocSize(tracker_ref))); |
| 117 if (!analyzer->IsValid()) | 117 if (!analyzer->IsValid()) |
| 118 continue; | 118 continue; |
| 119 | 119 |
| 120 // Add this analyzer to the map of known ones, indexed by a unique thread | 120 // Add this analyzer to the map of known ones, indexed by a unique thread |
| 121 // identifier. | 121 // identifier. |
| 122 DCHECK(!ContainsKey(analyzers_, analyzer->GetThreadKey())); | 122 DCHECK(!base::ContainsKey(analyzers_, analyzer->GetThreadKey())); |
| 123 analyzer->allocator_reference_ = ref; | 123 analyzer->allocator_reference_ = ref; |
| 124 analyzers_[analyzer->GetThreadKey()] = std::move(analyzer); | 124 analyzers_[analyzer->GetThreadKey()] = std::move(analyzer); |
| 125 } | 125 } |
| 126 } | 126 } |
| 127 | 127 |
| 128 } // namespace debug | 128 } // namespace debug |
| 129 } // namespace base | 129 } // namespace base |
| OLD | NEW |