Commit 3259ecd0 authored by Fergal Daly's avatar Fergal Daly Committed by Chromium LUCI CQ

Fix some SCOPED_CRASH_KEY_BOOL that should have been NUMBER.


Bug: 1146573
Change-Id: Ieee397d611c904144020d037a2bb5ad339608eb7
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2581716
Auto-Submit: Fergal Daly <fergal@chromium.org>
Commit-Queue: Nasko Oskov <nasko@chromium.org>
Reviewed-by: default avatarNasko Oskov <nasko@chromium.org>
Cr-Commit-Position: refs/heads/master@{#835704}
parent 3d04183e
......@@ -2101,10 +2101,10 @@ void RenderFrameHostImpl::ValidateStateForBug1146573() {
if (must_be_replaced_ && render_frame_created_) {
SCOPED_CRASH_KEY_BOOL(ValidateStateForBug1146573, IsMainFrame,
is_main_frame());
SCOPED_CRASH_KEY_BOOL(ValidateStateForBug1146573, ProcessID,
GetProcess()->GetID());
SCOPED_CRASH_KEY_BOOL(ValidateStateForBug1146573, RoutingID,
GetRoutingID());
SCOPED_CRASH_KEY_NUMBER(ValidateStateForBug1146573, ProcessID,
GetProcess()->GetID());
SCOPED_CRASH_KEY_NUMBER(alidateStateForBug1146573, RoutingID,
GetRoutingID());
NOTREACHED();
base::debug::DumpWithoutCrashing();
}
......@@ -3281,8 +3281,8 @@ void RenderFrameHostImpl::Unload(RenderFrameProxyHost* proxy, bool is_loading) {
SCOPED_CRASH_KEY_BOOL(Bug1146573, Live, IsRenderFrameLive());
SCOPED_CRASH_KEY_BOOL(Bug1146573, MustBeReplaced, must_be_replaced());
SCOPED_CRASH_KEY_BOOL(Bug1146573, IsMainFrame, is_main_frame());
SCOPED_CRASH_KEY_BOOL(Bug1146573, ProcessID, GetProcess()->GetID());
SCOPED_CRASH_KEY_BOOL(Bug1146573, RoutingID, GetRoutingID());
SCOPED_CRASH_KEY_NUMBER(Bug1146573, ProcessID, GetProcess()->GetID());
SCOPED_CRASH_KEY_NUMBER(Bug1146573, RoutingID, GetRoutingID());
CHECK(ShouldCreateNewHostForSameSiteSubframe());
// The unload handlers already ran for this document during the
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment