const char kReplaceChars[] = " ";
const char kReplaceWith[] = "_";
+#if defined(OS_TIZEN_DA_PRODUCT)
+static const char* kRendererCrashedHTMLMessage =
+ "<html>"
+ "<head>"
+ "<meta name='viewport' content='width=device-width,"
+ "initial-scale=1.0, user-scalable=no'>"
+ "<meta http-equiv='Content-Type' content='text/html; charset=UTF-8'>"
+ "<title>"
+ "Renderer has crashed"
+ "</title>"
+ "<style type=text/css>"
+ "#body"
+ "{"
+ " background-color: #fff;"
+ " margin: 0;"
+ " padding: 0;"
+ "}"
+ "#Box"
+ "{"
+ " background: #fff;"
+ " width: 80%%;"
+ " min-width: 150px;"
+ " max-width: 750px;"
+ " margin: auto;"
+ " padding: 5px;"
+ " border: 1px solid #BFA3A3;"
+ " border-radius: 1px;"
+ " word-wrap:break-word"
+ "}"
+ "</style>"
+ "</head>"
+ "<body bgcolor=\"#CFCFCF\">"
+ "<div id=Box>"
+ "<h1 align=\"center\">"
+ "Renderer process has crashed!<br>"
+ "</h1>"
+ "<h2 align=\"left\">"
+ "Reload the page.<br>Reloading the page will fix the error.<br>"
+ "If the error remains, From the task manager, close all apps.<br>"
+ "If the error still remains, Reboot the device.<br>"
+ "</h2>"
+ "</div>"
+ "</body>"
+ "</html>"
+ ;
+#else
static const char* kRendererCrashedHTMLMessage =
"<html><body><h1>Renderer process has crashed!</h1></body></html>";
+#endif
// email-app specific signal which informs that custom scrolling is started.
const char* kCustomScrollBeginSignalName = "custom,scroll,begin";