Chromium Code Reviews| Index: content/common/swapped_out_messages.cc |
| diff --git a/content/common/swapped_out_messages.cc b/content/common/swapped_out_messages.cc |
| index 776b8ee5c09b5af2f0eae23c78856f75da394404..3a47eda67ecc770ab401f55d444296535f94536c 100644 |
| --- a/content/common/swapped_out_messages.cc |
| +++ b/content/common/swapped_out_messages.cc |
| @@ -27,6 +27,9 @@ bool SwappedOutMessages::CanSendWhileSwappedOut(const IPC::Message* msg) { |
| case ViewHostMsg_Focus::ID: |
| // Handled by RenderViewHost. |
| case ViewHostMsg_ClosePage_ACK::ID: |
| + case ViewHostMsg_ShowFullscreenWidget::ID: |
| + case ViewHostMsg_ShowView::ID: |
| + case ViewHostMsg_ShowWidget::ID: |
| case ViewHostMsg_SwapCompositorFrame::ID: |
| // Handled by SharedWorkerMessageFilter. |
| case ViewHostMsg_DocumentDetached::ID: |
| @@ -68,12 +71,6 @@ bool SwappedOutMessages::CanHandleWhileSwappedOut( |
| // Note that synchronous messages that are not handled will receive an |
| // error reply instead, to avoid leaving the renderer in a stuck state. |
| switch (msg.type()) { |
| - // Sends an ACK. |
| - case ViewHostMsg_ShowView::ID: |
| - // Sends an ACK. |
| - case ViewHostMsg_ShowWidget::ID: |
| - // Sends an ACK. |
| - case ViewHostMsg_ShowFullscreenWidget::ID: |
|
dcheng
2016/11/21 11:19:52
Out of curiosity, why did we move these?
I guess
ncarter (slow)
2016/11/21 19:51:24
I didn't change when these messages were sent, but
|
| // Updates the previous navigation entry. |
| case ViewHostMsg_UpdateState::ID: |
| // Sends an ACK. |