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

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

Issue 2159013002: Read Chrome build ID and store it in leak reports (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove DCHECK for build ID having been read Created 4 years, 5 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
« no previous file with comments | « no previous file | chrome/browser/metrics/leak_detector/leak_detector_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/metrics/leak_detector/leak_detector_controller.h
diff --git a/chrome/browser/metrics/leak_detector/leak_detector_controller.h b/chrome/browser/metrics/leak_detector/leak_detector_controller.h
index 59b05ce4d1e3ca186097b34b3ad5a69be5f6bcec..7fdeb9308edb1a74943c903ce9469ae200e56320 100644
--- a/chrome/browser/metrics/leak_detector/leak_detector_controller.h
+++ b/chrome/browser/metrics/leak_detector/leak_detector_controller.h
@@ -5,6 +5,8 @@
#ifndef CHROME_BROWSER_METRICS_LEAK_DETECTOR_LEAK_DETECTOR_CONTROLLER_H_
#define CHROME_BROWSER_METRICS_LEAK_DETECTOR_LEAK_DETECTOR_CONTROLLER_H_
+#include <stdint.h>
+
#include <vector>
#include "base/macros.h"
@@ -53,6 +55,9 @@ class LeakDetectorController
// protobuf message instead of in separate member variables.
const MemoryLeakReportProto::Params params_;
+ // The build ID of the current Chrome binary.
+ std::vector<uint8_t> build_id_;
+
// For thread safety.
base::ThreadChecker thread_checker_;
« no previous file with comments | « no previous file | chrome/browser/metrics/leak_detector/leak_detector_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698