browser: set security state even if user disable security alerts

Even if a user disabled the security alerts (ssl errors), the security state SHOULD be set to show that the certificate
has a problem. Actually, the certificate is reported as valid, which is complety wrong.

Change-Id: I520bf2553942d04287d872428c4a73186ba1ceef
Signed-off-by: Jorge Ruesga <j.ruesga.criado@gmail.com>
diff --git a/src/com/android/browser/Tab.java b/src/com/android/browser/Tab.java
index 9734137..dc1944e 100644
--- a/src/com/android/browser/Tab.java
+++ b/src/com/android/browser/Tab.java
@@ -565,6 +565,7 @@
                     .show();
             } else {
                 handler.proceed();
+                handleProceededAfterSslError(error);
             }
         }