Index: chromecast/crash/android/crash_handler.h |
diff --git a/chromecast/crash/android/crash_handler.h b/chromecast/crash/android/crash_handler.h |
index 853e7f50973e99e5b8be768374c802a8652f92f4..adecb6765103edc3072447b8e24462e540e84d29 100644 |
--- a/chromecast/crash/android/crash_handler.h |
+++ b/chromecast/crash/android/crash_handler.h |
@@ -12,10 +12,6 @@ |
#include "base/macros.h" |
#include "base/memory/scoped_ptr.h" |
-namespace google_breakpad { |
-class ExceptionHandler; |
-} |
- |
namespace chromecast { |
class CastCrashReporterClientAndroid; |
@@ -33,11 +29,6 @@ class CrashHandler { |
// Registers JNI methods for this module. |
static bool RegisterCastCrashJni(JNIEnv* env); |
- // Returns whether or not the user has allowed for uploading crash dumps. |
- bool CanUploadCrashDump(); |
- |
- void UploadCrashDumps(); |
- |
private: |
CrashHandler(const base::FilePath& log_file_path); |
~CrashHandler(); |
@@ -54,7 +45,6 @@ class CrashHandler { |
base::FilePath crash_dump_path_; |
scoped_ptr<CastCrashReporterClientAndroid> crash_reporter_client_; |
- scoped_ptr<google_breakpad::ExceptionHandler> crash_uploader_; |
DISALLOW_COPY_AND_ASSIGN(CrashHandler); |
}; |