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

Unified Diff: base/android/build_info.h

Issue 2960883002: Add installer_package_name and ABI to crash report (Closed)
Patch Set: fix style Created 3 years, 6 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 | base/android/build_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/android/build_info.h
diff --git a/base/android/build_info.h b/base/android/build_info.h
index acb6bfaeeb4e724d77c8e9e5bd60fe9532fc81df..163f70eb5aafc2eed2b1018fe35f3bda8f3ec1ae 100644
--- a/base/android/build_info.h
+++ b/base/android/build_info.h
@@ -101,6 +101,10 @@ class BASE_EXPORT BuildInfo {
return build_type_;
}
+ const char* installer_package_name() const { return installer_package_name_; }
+
+ const char* abi_name() const { return abi_name_; }
+
std::string extracted_file_suffix() const { return extracted_file_suffix_; }
int sdk_int() const {
@@ -137,6 +141,8 @@ class BASE_EXPORT BuildInfo {
const char* const package_version_name_;
const char* const android_build_fp_;
const char* const gms_version_code_;
+ const char* const installer_package_name_;
+ const char* const abi_name_;
// Not needed by breakpad.
const std::string extracted_file_suffix_;
// This is set via set_java_exception_info, not at constructor time.
« no previous file with comments | « no previous file | base/android/build_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698