Chromium Code Reviews| Index: content/public/test/mock_render_process_host.cc |
| diff --git a/content/public/test/mock_render_process_host.cc b/content/public/test/mock_render_process_host.cc |
| index 954038fd4c45ee5413f4a58b1debd2cce38db6b6..392196ef9ac099239f4100f55298a1cba0345677 100644 |
| --- a/content/public/test/mock_render_process_host.cc |
| +++ b/content/public/test/mock_render_process_host.cc |
| @@ -172,6 +172,10 @@ base::ProcessHandle MockRenderProcessHost::GetHandle() const { |
| return base::GetCurrentProcessHandle(); |
| } |
| +bool MockRenderProcessHost::IsReady() const { |
|
ncarter (slow)
2015/09/29 18:28:40
I suppose we can add mock support for this if/when
piman
2015/09/29 23:54:27
Right. At the moment, GetChannel() will always ret
|
| + return false; |
| +} |
| + |
| bool MockRenderProcessHost::Send(IPC::Message* msg) { |
| // Save the message in the sink. |
| sink_.OnMessageReceived(*msg); |