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

Unified Diff: content/renderer/render_frame_impl.cc

Issue 2130293003: Change OOMs to raise custom exception rather than breakpoint on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove unused func 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
Index: content/renderer/render_frame_impl.cc
diff --git a/content/renderer/render_frame_impl.cc b/content/renderer/render_frame_impl.cc
index 87b19f037334daf82d1a3a41491a018d61a35eba..b17f06a1c91072c28faa206411177f374ac2eb9b 100644
--- a/content/renderer/render_frame_impl.cc
+++ b/content/renderer/render_frame_impl.cc
@@ -396,6 +396,13 @@ bool IsBrowserInitiated(NavigationParams* pending) {
!pending->common_params.url.SchemeIs(url::kJavaScriptScheme);
}
+NOINLINE void ExhaustMemory() {
+ volatile void* ptr = nullptr;
+ do {
+ ptr = malloc(0x10000000);
+ } while (ptr);
+}
+
NOINLINE void CrashIntentionally() {
// NOTE(shess): Crash directly rather than using NOTREACHED() so
// that the signature is easier to triage in crash reports.
@@ -505,6 +512,11 @@ void MaybeHandleDebugURL(const GURL& url) {
LOG(ERROR) << "Intentionally sleeping renderer for 20 seconds"
<< " because user navigated to " << url.spec();
base::PlatformThread::Sleep(base::TimeDelta::FromSeconds(20));
+ } else if (url == GURL(kChromeUIMemoryExhaustURL)) {
+ LOG(ERROR)
+ << "Intentionally exhausting renderer memory because user navigated to "
+ << url.spec();
+ ExhaustMemory();
}
#if defined(ADDRESS_SANITIZER) || defined(SYZYASAN)

Powered by Google App Engine
This is Rietveld 408576698