| Index: content/browser/frame_host/render_frame_host_impl.cc
|
| diff --git a/content/browser/frame_host/render_frame_host_impl.cc b/content/browser/frame_host/render_frame_host_impl.cc
|
| index dc37d70fa1a319fa318cd42415df1a3586266418..31056de5658cd870775c5b34e960ed080b89af9c 100644
|
| --- a/content/browser/frame_host/render_frame_host_impl.cc
|
| +++ b/content/browser/frame_host/render_frame_host_impl.cc
|
| @@ -10,7 +10,6 @@
|
| #include "base/bind.h"
|
| #include "base/command_line.h"
|
| #include "base/containers/hash_tables.h"
|
| -#include "base/debug/dump_without_crashing.h"
|
| #include "base/lazy_instance.h"
|
| #include "base/memory/ptr_util.h"
|
| #include "base/metrics/histogram_macros.h"
|
| @@ -1354,12 +1353,6 @@ GlobalFrameRoutingId RenderFrameHostImpl::GetGlobalFrameRoutingId() {
|
| void RenderFrameHostImpl::SetNavigationHandle(
|
| std::unique_ptr<NavigationHandleImpl> navigation_handle) {
|
| navigation_handle_ = std::move(navigation_handle);
|
| -
|
| - // TODO(clamy): Remove this debug code once we understand better how we get to
|
| - // the point of attempting to transfer a navigation from a RFH that is no
|
| - // longer active.
|
| - if (navigation_handle_ && !is_active())
|
| - base::debug::DumpWithoutCrashing();
|
| }
|
|
|
| std::unique_ptr<NavigationHandleImpl>
|
|
|