| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ppapi/proxy/plugin_dispatcher.h" | 5 #include "ppapi/proxy/plugin_dispatcher.h" |
| 6 | 6 |
| 7 #include <map> | 7 #include <map> |
| 8 | 8 |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| 11 #include "ipc/ipc_message.h" | 11 #include "ipc/ipc_message.h" |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 | 98 |
| 99 void PluginDispatcher::OnMsgShutdown() { | 99 void PluginDispatcher::OnMsgShutdown() { |
| 100 if (shutdown_module_) | 100 if (shutdown_module_) |
| 101 shutdown_module_(); | 101 shutdown_module_(); |
| 102 MessageLoop::current()->Quit(); | 102 MessageLoop::current()->Quit(); |
| 103 } | 103 } |
| 104 | 104 |
| 105 } // namespace proxy | 105 } // namespace proxy |
| 106 } // namespace pp | 106 } // namespace pp |
| 107 | 107 |
| OLD | NEW |