mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-02-20 22:20:41 +01:00
- Remove unused CefContextMenuHandler::GetMisspellingHash() method. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@2020 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
23 lines
811 B
Diff
23 lines
811 B
Diff
diff --git render_process_host_impl.cc render_process_host_impl.cc
|
|
index 37d745e..5723bdc 100644
|
|
--- render_process_host_impl.cc
|
|
+++ render_process_host_impl.cc
|
|
@@ -2065,6 +2065,8 @@ void RenderProcessHostImpl::ProcessDied(bool already_dead,
|
|
#endif
|
|
RemoveUserData(kSessionStorageHolderKey);
|
|
|
|
+ mojo_application_host_.reset(new MojoApplicationHost);
|
|
+
|
|
IDMap<IPC::Listener>::iterator iter(&listeners_);
|
|
while (!iter.IsAtEnd()) {
|
|
iter.GetCurrentValue()->OnMessageReceived(
|
|
@@ -2074,8 +2076,6 @@ void RenderProcessHostImpl::ProcessDied(bool already_dead,
|
|
iter.Advance();
|
|
}
|
|
|
|
- mojo_application_host_.reset(new MojoApplicationHost);
|
|
-
|
|
// It's possible that one of the calls out to the observers might have caused
|
|
// this object to be no longer needed.
|
|
if (delayed_cleanup_needed_)
|