diff options
Diffstat (limited to 'chrome/common/child_thread.cc')
-rw-r--r-- | chrome/common/child_thread.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/common/child_thread.cc b/chrome/common/child_thread.cc index 53823bc..dd74aee 100644 --- a/chrome/common/child_thread.cc +++ b/chrome/common/child_thread.cc @@ -168,6 +168,10 @@ bool ChildThread::OnMessageReceived(const IPC::Message& msg) { return router_.OnMessageReceived(msg); } +bool ChildThread::OnControlMessageReceived(const IPC::Message& msg) { + return false; +} + void ChildThread::OnAskBeforeShutdown() { check_with_browser_before_shutdown_ = true; } |