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 "chrome/browser/metrics/leak_detector/leak_detector_controller.h" | 5 #include "chrome/browser/metrics/leak_detector/leak_detector_controller.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 | 8 |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/strings/string_number_conversions.h" | 10 #include "base/strings/string_number_conversions.h" |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 } | 87 } |
88 | 88 |
89 } // namespace | 89 } // namespace |
90 | 90 |
91 LeakDetectorController::LeakDetectorController() | 91 LeakDetectorController::LeakDetectorController() |
92 : params_(GetVariationParameters()) { | 92 : params_(GetVariationParameters()) { |
93 LeakDetector* detector = LeakDetector::GetInstance(); | 93 LeakDetector* detector = LeakDetector::GetInstance(); |
94 detector->AddObserver(this); | 94 detector->AddObserver(this); |
95 | 95 |
96 // Leak detector parameters are stored in |params_|. | 96 // Leak detector parameters are stored in |params_|. |
97 detector->Init(params_, content::BrowserThread::GetMessageLoopProxyForThread( | 97 detector->Init(params_, content::BrowserThread::GetTaskRunnerForThread( |
98 content::BrowserThread::UI)); | 98 content::BrowserThread::UI)); |
99 } | 99 } |
100 | 100 |
101 LeakDetectorController::~LeakDetectorController() { | 101 LeakDetectorController::~LeakDetectorController() { |
102 DCHECK(thread_checker_.CalledOnValidThread()); | 102 DCHECK(thread_checker_.CalledOnValidThread()); |
103 LeakDetector::GetInstance()->RemoveObserver(this); | 103 LeakDetector::GetInstance()->RemoveObserver(this); |
104 } | 104 } |
105 | 105 |
106 void LeakDetectorController::OnLeaksFound( | 106 void LeakDetectorController::OnLeaksFound( |
107 const std::vector<MemoryLeakReportProto>& reports) { | 107 const std::vector<MemoryLeakReportProto>& reports) { |
108 DCHECK(thread_checker_.CalledOnValidThread()); | 108 DCHECK(thread_checker_.CalledOnValidThread()); |
109 | 109 |
110 for (const auto& report : reports) { | 110 for (const auto& report : reports) { |
111 // Store the report and insert stored parameters. | 111 // Store the report and insert stored parameters. |
112 stored_reports_.push_back(report); | 112 stored_reports_.push_back(report); |
113 stored_reports_.back().mutable_params()->CopyFrom(params_); | 113 stored_reports_.back().mutable_params()->CopyFrom(params_); |
114 } | 114 } |
115 } | 115 } |
116 | 116 |
117 void LeakDetectorController::GetLeakReports( | 117 void LeakDetectorController::GetLeakReports( |
118 std::vector<MemoryLeakReportProto>* reports) { | 118 std::vector<MemoryLeakReportProto>* reports) { |
119 DCHECK(thread_checker_.CalledOnValidThread()); | 119 DCHECK(thread_checker_.CalledOnValidThread()); |
120 *reports = std::move(stored_reports_); | 120 *reports = std::move(stored_reports_); |
121 } | 121 } |
122 | 122 |
123 } // namespace metrics | 123 } // namespace metrics |
OLD | NEW |