Commit 86fca587 authored by primiano's avatar primiano Committed by Commit bot

[WebView] Reword crash handler message.

The current crash handler prints a message on logcat of the form
"### WebView crash. Version ..." whenever a crash is detected in an
Android app which happens to have a WebView.
Due to the in-process nature of the WebView, the crash handler is
triggered regardless of the actual cause of the crash, which might be
totally unrelated with the WebView or the chromium codebase at all.
The current wording is misleading as it erroneously suggests that the
crash is always due to the WebView.

BUG=456485
TBR=torne@chromium.org

Review URL: https://codereview.chromium.org/903363003

Cr-Commit-Position: refs/heads/master@{#315210}
parent dd6b8d69
...@@ -71,7 +71,7 @@ void RegisterCrashHandler(const std::string& version) { ...@@ -71,7 +71,7 @@ void RegisterCrashHandler(const std::string& version) {
return; return;
} }
g_crash_msg = "### WebView crash. " + version; g_crash_msg = "### WebView " + version;
g_crash_msg_ptr = g_crash_msg.c_str(); g_crash_msg_ptr = g_crash_msg.c_str();
// Fail if unable to store all the old handlers. // Fail if unable to store all the old handlers.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment