summaryrefslogtreecommitdiffstats
path: root/WebKit/android/WebCoreSupport/WebRequest.cpp
diff options
context:
space:
mode:
authorKristian Monsen <kristianm@google.com>2010-11-24 10:34:19 +0000
committerKristian Monsen <kristianm@google.com>2010-11-24 10:34:19 +0000
commit436c56e910708d5b8e795a4a1ab16b6b05188187 (patch)
tree0c78c0670296e9fdf6a8f8f06fb0e765f2f6b00e /WebKit/android/WebCoreSupport/WebRequest.cpp
parent902871fa9919c9810c07d4525c7c3055117819bf (diff)
downloadexternal_webkit-436c56e910708d5b8e795a4a1ab16b6b05188187.zip
external_webkit-436c56e910708d5b8e795a4a1ab16b6b05188187.tar.gz
external_webkit-436c56e910708d5b8e795a4a1ab16b6b05188187.tar.bz2
Removing CRASH() from asserts in WebRequest.cpp
These asserts have not been triggered in months, so removing the crash (but keeping logging), and closing bug 2951985. Change-Id: I5bb31c6e23c18e83301428582ad895b0b679ff86
Diffstat (limited to 'WebKit/android/WebCoreSupport/WebRequest.cpp')
-rw-r--r--WebKit/android/WebCoreSupport/WebRequest.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/WebKit/android/WebCoreSupport/WebRequest.cpp b/WebKit/android/WebCoreSupport/WebRequest.cpp
index 67144cb..a165b8a 100644
--- a/WebKit/android/WebCoreSupport/WebRequest.cpp
+++ b/WebKit/android/WebCoreSupport/WebRequest.cpp
@@ -51,7 +51,6 @@ extern android::AssetManager* globalAssetManager();
#define ASSERT(assertion, ...) do \
if (!(assertion)) { \
android_printLog(ANDROID_LOG_ERROR, __FILE__, __VA_ARGS__); \
- CRASH(); \
} \
while (0)