Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2592)

Unified Diff: chrome/browser/metrics/leak_detector_controller.h

Issue 1681263003: metrics: Add leak detector controller in Chrome OS metrics system (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: "Addressed asvitkine's comments: remove using statement, move runtime flag to chrome_features" Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..308c6f01e4f09f580e4b6d635808cb7be041fd7e
--- /dev/null
+++ b/chrome/browser/metrics/leak_detector_controller.h
@@ -0,0 +1,48 @@
+// 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 "base/threading/thread_checker.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.
+class LeakDetectorController : public LeakDetector::Observer {
+ public:
+ LeakDetectorController();
+ ~LeakDetectorController() override;
+
+ // Retrieves all reports in |stored_reports_|, moving them to |*reports|.
+ // |stored_reports_| is empty afterwards.
+ void GetLeakReports(std::vector<MemoryLeakReportProto>* reports);
+
+ protected:
+ // LeakDetector::Observer:
+ void OnLeakFound(const LeakDetector::LeakReport& report) override;
+
+ private:
+ // Leak detector interface object.
+ LeakDetector detector_;
+
+ // All leak reports received through OnLeakFound() are stored in protobuf
+ // format.
+ std::vector<MemoryLeakReportProto> stored_reports_;
+
+ // For thread safety.
+ base::ThreadChecker thread_checker_;
+
+ DISALLOW_COPY_AND_ASSIGN(LeakDetectorController);
+};
+
+} // namespace metrics
+
+#endif // CHROME_BROWSER_METRICS_LEAK_DETECTOR_CONTROLLER_H_

Powered by Google App Engine
This is Rietveld 408576698