Save crash logs on a server

If the browser crashes, save the crash logs on a remote server.

Change-Id: I2758c11909d6d85d3472f5254e54dd9cbece728c
diff --git a/src/com/android/browser/BrowserActivity.java b/src/com/android/browser/BrowserActivity.java
index df926ad..27f7d97 100644
--- a/src/com/android/browser/BrowserActivity.java
+++ b/src/com/android/browser/BrowserActivity.java
@@ -95,6 +95,8 @@
         }
         super.onCreate(icicle);
 
+        Thread.setDefaultUncaughtExceptionHandler(new CrashLogExceptionHandler(this));
+
         if (shouldIgnoreIntents()) {
             finish();
             return;