Index: chrome/browser/metrics/leak_detector_controller.h |
diff --git a/chrome/browser/metrics/leak_detector_controller.h b/chrome/browser/metrics/leak_detector_controller.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..eff19bbbb652cd92d2af6da027b2be51308606ed |
--- /dev/null |
+++ b/chrome/browser/metrics/leak_detector_controller.h |
@@ -0,0 +1,44 @@ |
+// Copyright 2016 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CHROME_BROWSER_METRICS_LEAK_DETECTOR_CONTROLLER_H_ |
+#define CHROME_BROWSER_METRICS_LEAK_DETECTOR_CONTROLLER_H_ |
+ |
+#include <vector> |
+ |
+#include "base/macros.h" |
+#include "components/metrics/leak_detector/leak_detector.h" |
+#include "components/metrics/proto/memory_leak_report.pb.h" |
+ |
+namespace metrics { |
+ |
+// This class initializes the LeakDetector on the browser process and registers |
+// itself to be notified of leak reports. |
+ |
Alexei Svitkine (slow)
2016/02/10 20:16:58
Nit: No new line.
Simon Que
2016/02/11 01:45:37
Done.
|
+class LeakDetectorController : public LeakDetector::Observer { |
+ public: |
+ LeakDetectorController(); |
+ ~LeakDetectorController(); |
+ |
+ // Stores a new leak report in |stored_reports_|. |
+ void OnLeakFound(const LeakDetector::LeakReport& report) override; |
+ |
+ // Retrieves all reports in |stored_reports_|, moving them to |*reports|. |
+ // |stored_reports_| is empty afterwards. |
+ void GetLeakReports(std::vector<MemoryLeakReportProto>* reports); |
+ |
+ private: |
+ // Leak detector interface object. |
+ LeakDetector detector_; |
+ |
+ // All leak reports received through OnLeakFound() are stored in protobuf |
+ // format. |
+ std::vector<MemoryLeakReportProto> stored_reports_; |
+ |
+ DISALLOW_COPY_AND_ASSIGN(LeakDetectorController); |
+}; |
+ |
+} // namespace metrics |
+ |
+#endif // CHROME_BROWSER_METRICS_LEAK_DETECTOR_CONTROLLER_H_ |