Index: chromecast/crash/android/crash_handler.h |
diff --git a/chromecast/crash/android/crash_handler.h b/chromecast/crash/android/crash_handler.h |
index f78bcd00b7e446cb1fb00519da12fa8f42410097..c018339a5da22e15e9c79ec873bc25a892929040 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 std::string& process_type, |
const base::FilePath& log_file_path); |
@@ -57,7 +48,6 @@ class CrashHandler { |
std::string process_type_; |
scoped_ptr<CastCrashReporterClientAndroid> crash_reporter_client_; |
- scoped_ptr<google_breakpad::ExceptionHandler> crash_uploader_; |
DISALLOW_COPY_AND_ASSIGN(CrashHandler); |
}; |