| OLD | NEW |
| 1 // Copyright (c) 2011 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/interface_list.h" | 5 #include "ppapi/proxy/interface_list.h" |
| 6 | 6 |
| 7 #include "base/memory/singleton.h" | 7 #include "base/memory/singleton.h" |
| 8 #include "ppapi/c/dev/ppb_buffer_dev.h" | 8 #include "ppapi/c/dev/ppb_buffer_dev.h" |
| 9 #include "ppapi/c/dev/ppb_char_set_dev.h" | 9 #include "ppapi/c/dev/ppb_char_set_dev.h" |
| 10 #include "ppapi/c/dev/ppb_console_dev.h" | 10 #include "ppapi/c/dev/ppb_console_dev.h" |
| (...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 AddPPB(info->name, info->id, info->interface_ptr); | 287 AddPPB(info->name, info->id, info->interface_ptr); |
| 288 } | 288 } |
| 289 | 289 |
| 290 void InterfaceList::AddPPP(const InterfaceProxy::Info* info) { | 290 void InterfaceList::AddPPP(const InterfaceProxy::Info* info) { |
| 291 AddProxy(info->id, info->create_proxy); | 291 AddProxy(info->id, info->create_proxy); |
| 292 AddPPP(info->name, info->id, info->interface_ptr); | 292 AddPPP(info->name, info->id, info->interface_ptr); |
| 293 } | 293 } |
| 294 | 294 |
| 295 } // namespace proxy | 295 } // namespace proxy |
| 296 } // namespace ppapi | 296 } // namespace ppapi |
| OLD | NEW |