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 83fc39483cc220ea8f8c5b77fbd4a409897821fa..d94f0b996377e97de89ae4b4d9b97e6feaab24db 100644 |
| --- a/content/common/swapped_out_messages.cc |
| +++ b/content/common/swapped_out_messages.cc |
| @@ -36,7 +36,9 @@ bool SwappedOutMessages::CanSendWhileSwappedOut(const IPC::Message* msg) { |
| break; |
| } |
| - return false; |
|
mkosiba (inactive)
2013/02/14 14:03:16
I think it might be fine to simply say that replie
Leandro Graciá Gil
2013/02/14 14:25:14
I think the question is if renderer -> browser syn
|
| + // Check with the embedder as well. |
| + ContentClient* client = GetContentClient(); |
| + return client->CanSendWhileSwappedOut(msg); |
| } |
| bool SwappedOutMessages::CanHandleWhileSwappedOut( |