summaryrefslogtreecommitdiffstats
path: root/android_webview/common
diff options
context:
space:
mode:
authorprimiano <primiano@chromium.org>2015-02-07 08:11:06 -0800
committerCommit bot <commit-bot@chromium.org>2015-02-07 16:11:40 +0000
commit86fca587a88a12c485c5b3bfaf7d3029561137af (patch)
tree116d4a035bf882aaf913697eeca7b5effe76c4d4 /android_webview/common
parentdd6b8d69006e64144193632c3afe39bcc171a88e (diff)
downloadchromium_src-86fca587a88a12c485c5b3bfaf7d3029561137af.zip
chromium_src-86fca587a88a12c485c5b3bfaf7d3029561137af.tar.gz
chromium_src-86fca587a88a12c485c5b3bfaf7d3029561137af.tar.bz2
[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}
Diffstat (limited to 'android_webview/common')
-rw-r--r--android_webview/common/aw_crash_handler.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/android_webview/common/aw_crash_handler.cc b/android_webview/common/aw_crash_handler.cc
index fbd4285..7dcdc9d 100644
--- a/android_webview/common/aw_crash_handler.cc
+++ b/android_webview/common/aw_crash_handler.cc
@@ -71,7 +71,7 @@ void RegisterCrashHandler(const std::string& version) {
return;
}
- g_crash_msg = "### WebView crash. " + version;
+ g_crash_msg = "### WebView " + version;
g_crash_msg_ptr = g_crash_msg.c_str();
// Fail if unable to store all the old handlers.