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

Side by Side Diff: base/android/build_info.h

Issue 113873006: [Android] Disable tombstones for renderer crashes on JB MR2+ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | base/android/build_info.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef BASE_ANDROID_BUILD_INFO_H_ 5 #ifndef BASE_ANDROID_BUILD_INFO_H_
6 #define BASE_ANDROID_BUILD_INFO_H_ 6 #define BASE_ANDROID_BUILD_INFO_H_
7 7
8 #include <jni.h> 8 #include <jni.h>
9 9
10 #include <string> 10 #include <string>
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 } 65 }
66 66
67 const char* package_label() const { 67 const char* package_label() const {
68 return package_label_; 68 return package_label_;
69 } 69 }
70 70
71 const char* package_name() const { 71 const char* package_name() const {
72 return package_name_; 72 return package_name_;
73 } 73 }
74 74
75 const char* build_type() const {
76 return build_type_;
77 }
78
75 int sdk_int() const { 79 int sdk_int() const {
76 return sdk_int_; 80 return sdk_int_;
77 } 81 }
78 82
79 const char* java_exception_info() const { 83 const char* java_exception_info() const {
80 return java_exception_info_; 84 return java_exception_info_;
81 } 85 }
82 86
83 void set_java_exception_info(const std::string& info); 87 void set_java_exception_info(const std::string& info);
84 88
(...skipping 10 matching lines...) Expand all
95 // it is called. 99 // it is called.
96 const char* const device_; 100 const char* const device_;
97 const char* const model_; 101 const char* const model_;
98 const char* const brand_; 102 const char* const brand_;
99 const char* const android_build_id_; 103 const char* const android_build_id_;
100 const char* const android_build_fp_; 104 const char* const android_build_fp_;
101 const char* const package_version_code_; 105 const char* const package_version_code_;
102 const char* const package_version_name_; 106 const char* const package_version_name_;
103 const char* const package_label_; 107 const char* const package_label_;
104 const char* const package_name_; 108 const char* const package_name_;
109 const char* const build_type_;
105 const int sdk_int_; 110 const int sdk_int_;
106 // This is set via set_java_exception_info, not at constructor time. 111 // This is set via set_java_exception_info, not at constructor time.
107 const char* java_exception_info_; 112 const char* java_exception_info_;
108 113
109 DISALLOW_COPY_AND_ASSIGN(BuildInfo); 114 DISALLOW_COPY_AND_ASSIGN(BuildInfo);
110 }; 115 };
111 116
112 } // namespace android 117 } // namespace android
113 } // namespace base 118 } // namespace base
114 119
115 #endif // BASE_ANDROID_BUILD_INFO_H_ 120 #endif // BASE_ANDROID_BUILD_INFO_H_
OLDNEW
« 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