| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/ppb_network_monitor_private_proxy.h" | 5 #include "ppapi/proxy/ppb_network_monitor_private_proxy.h" |
| 6 | 6 |
| 7 #include "ppapi/proxy/enter_proxy.h" | 7 #include "ppapi/proxy/enter_proxy.h" |
| 8 #include "ppapi/proxy/ppapi_messages.h" | 8 #include "ppapi/proxy/ppapi_messages.h" |
| 9 #include "ppapi/shared_impl/proxy_lock.h" | 9 #include "ppapi/shared_impl/proxy_lock.h" |
| 10 #include "ppapi/thunk/ppb_network_monitor_api.h" | 10 #include "ppapi/thunk/ppb_network_monitor_api.h" |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 PluginGlobals::Get()->GetBrowserSender()->Send( | 165 PluginGlobals::Get()->GetBrowserSender()->Send( |
| 166 new PpapiHostMsg_PPBNetworkMonitor_Stop( | 166 new PpapiHostMsg_PPBNetworkMonitor_Stop( |
| 167 dispatcher->plugin_dispatcher_id())); | 167 dispatcher->plugin_dispatcher_id())); |
| 168 } | 168 } |
| 169 current_list_ = NULL; | 169 current_list_ = NULL; |
| 170 } | 170 } |
| 171 } | 171 } |
| 172 | 172 |
| 173 } // namespace proxy | 173 } // namespace proxy |
| 174 } // namespace ppapi | 174 } // namespace ppapi |
| OLD | NEW |