summaryrefslogtreecommitdiff
path: root/services/java/com/android/server/FallbackCheckinService.java
diff options
context:
space:
mode:
authorDan Egnor <egnor@google.com>2009-12-09 16:22:32 -0800
committerDan Egnor <egnor@google.com>2009-12-11 13:27:04 -0800
commitb7f0367cec1c744aa66ef397b0244e25d507491c (patch)
tree7b70d87b9886ea1567647aac00fccb3198accc8c /services/java/com/android/server/FallbackCheckinService.java
parentaf1255dab8fa3eab1caf9bae799f80de14a74470 (diff)
Eliminate CrashData and friends.
(CrashData was a custom-marshalled crash-info class used for a server crash reporting system I am deprecating). Use ApplicationErrorReport.CrashInfo instead to report crash details (mostly the stack trace) from RuntimeInfo to ActivityManagerService, since we're likely to need the crash information in that form anyway. Remove the (long-disabled) flags and support for the "Debug" button in the crash dialog. Further gut the ICheckinService interface by removing the crash-reporting APIs (and everything that calls them), plus the synchronous checkin() method (which has been stubbed out for a while now). A new dropbox-based crash reporting system is in the works, but not part of this change.
Diffstat (limited to 'services/java/com/android/server/FallbackCheckinService.java')
-rw-r--r--services/java/com/android/server/FallbackCheckinService.java12
1 files changed, 1 insertions, 11 deletions
diff --git a/services/java/com/android/server/FallbackCheckinService.java b/services/java/com/android/server/FallbackCheckinService.java
index cf224466e765..88c549b85d40 100644
--- a/services/java/com/android/server/FallbackCheckinService.java
+++ b/services/java/com/android/server/FallbackCheckinService.java
@@ -34,21 +34,11 @@ import com.google.android.net.ParentalControlState;
public final class FallbackCheckinService extends ICheckinService.Stub {
static final String TAG = "FallbackCheckinService";
final Context mContext;
-
+
public FallbackCheckinService(Context context) {
mContext = context;
}
- public boolean checkin() {
- return false; // failure, because not implemented
- }
-
- public void reportCrashSync(byte[] crashData) {
- }
-
- public void reportCrashAsync(byte[] crashData) {
- }
-
public void masterClear() {
if (mContext.checkCallingOrSelfPermission("android.permission.MASTER_CLEAR") !=
PackageManager.PERMISSION_GRANTED) {