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) |