Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Unified Diff: src/base/logging.cc

Issue 2132493002: [runtime] Fully remove RUNTIME_ASSERT for good. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_cleanup-runtime-assert-robust
Patch Set: Rebased. Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/base/logging.h ('k') | src/debug/mirrors.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/base/logging.cc
diff --git a/src/base/logging.cc b/src/base/logging.cc
index ebab129f93630eac5d6f54b2ee16a709928f91ea..a2688c9c9aefb1f566f048e79c7f6ec4c0f9db16 100644
--- a/src/base/logging.cc
+++ b/src/base/logging.cc
@@ -115,14 +115,3 @@ extern "C" void V8_Fatal(const char* file, int line, const char* format, ...) {
fflush(stderr);
v8::base::OS::Abort();
}
-
-extern "C" void V8_RuntimeError(const char* file, int line,
- const char* message) {
- fflush(stdout);
- fflush(stderr);
- v8::base::OS::PrintError("\n\n#\n# Runtime error in %s, line %d\n# ", file,
- line);
- v8::base::OS::PrintError("\n# %s\n", message);
- v8::base::DumpBacktrace();
- fflush(stderr);
-}
« no previous file with comments | « src/base/logging.h ('k') | src/debug/mirrors.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698