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

Unified Diff: content/browser/frame_host/render_widget_host_view_child_frame.cc

Issue 2054163003: Fix SitePerProcessTextInputManagerTest.StopTrackingCrashedChildFrame on CFI Bots. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed the added code to RenderWidgetHostViewChildFrame::Destroy(). Created 4 years, 6 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/browser/frame_host/render_widget_host_view_child_frame.cc
diff --git a/content/browser/frame_host/render_widget_host_view_child_frame.cc b/content/browser/frame_host/render_widget_host_view_child_frame.cc
index 88ea407cb7071d6c6b3539d591e0caf8d6f47146..99b3c41424d58cd3ccea1d87d1fdcb1d5d311a19 100644
--- a/content/browser/frame_host/render_widget_host_view_child_frame.cc
+++ b/content/browser/frame_host/render_widget_host_view_child_frame.cc
@@ -28,6 +28,7 @@
#include "content/browser/renderer_host/render_widget_host_delegate.h"
#include "content/browser/renderer_host/render_widget_host_impl.h"
#include "content/browser/renderer_host/render_widget_host_input_event_router.h"
+#include "content/browser/renderer_host/text_input_manager.h"
Charlie Reis 2016/06/28 21:39:34 nit: No longer needed.
EhsanK 2016/06/28 22:47:10 Acknowledged.
#include "content/common/text_input_state.h"
#include "content/common/view_messages.h"
#include "content/public/browser/render_process_host.h"
@@ -287,6 +288,7 @@ void RenderWidgetHostViewChildFrame::Destroy() {
host_->SetView(nullptr);
host_ = nullptr;
+
Charlie Reis 2016/06/28 21:39:34 nit: No longer needed. (This file shouldn't need
EhsanK 2016/06/28 22:47:10 Acknowledged.
base::ThreadTaskRunnerHandle::Get()->DeleteSoon(FROM_HERE, this);
}

Powered by Google App Engine
This is Rietveld 408576698