Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(117)

Side by Side Diff: trunk/src/ppapi/proxy/interface_list.cc

Issue 23463037: Revert 223482 "Simplify PPB_NetworkMonitor proxy." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « trunk/src/ppapi/ppapi_shared.gypi ('k') | trunk/src/ppapi/proxy/network_list_resource.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/interface_list.h" 5 #include "ppapi/proxy/interface_list.h"
6 6
7 #include "base/lazy_instance.h" 7 #include "base/lazy_instance.h"
8 #include "base/memory/singleton.h" 8 #include "base/memory/singleton.h"
9 #include "ppapi/c/dev/ppb_audio_input_dev.h" 9 #include "ppapi/c/dev/ppb_audio_input_dev.h"
10 #include "ppapi/c/dev/ppb_buffer_dev.h" 10 #include "ppapi/c/dev/ppb_buffer_dev.h"
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 #include "ppapi/proxy/ppb_audio_proxy.h" 100 #include "ppapi/proxy/ppb_audio_proxy.h"
101 #include "ppapi/proxy/ppb_broker_proxy.h" 101 #include "ppapi/proxy/ppb_broker_proxy.h"
102 #include "ppapi/proxy/ppb_buffer_proxy.h" 102 #include "ppapi/proxy/ppb_buffer_proxy.h"
103 #include "ppapi/proxy/ppb_core_proxy.h" 103 #include "ppapi/proxy/ppb_core_proxy.h"
104 #include "ppapi/proxy/ppb_file_ref_proxy.h" 104 #include "ppapi/proxy/ppb_file_ref_proxy.h"
105 #include "ppapi/proxy/ppb_flash_message_loop_proxy.h" 105 #include "ppapi/proxy/ppb_flash_message_loop_proxy.h"
106 #include "ppapi/proxy/ppb_graphics_3d_proxy.h" 106 #include "ppapi/proxy/ppb_graphics_3d_proxy.h"
107 #include "ppapi/proxy/ppb_image_data_proxy.h" 107 #include "ppapi/proxy/ppb_image_data_proxy.h"
108 #include "ppapi/proxy/ppb_instance_proxy.h" 108 #include "ppapi/proxy/ppb_instance_proxy.h"
109 #include "ppapi/proxy/ppb_message_loop_proxy.h" 109 #include "ppapi/proxy/ppb_message_loop_proxy.h"
110 #include "ppapi/proxy/ppb_network_monitor_private_proxy.h"
110 #include "ppapi/proxy/ppb_testing_proxy.h" 111 #include "ppapi/proxy/ppb_testing_proxy.h"
111 #include "ppapi/proxy/ppb_var_deprecated_proxy.h" 112 #include "ppapi/proxy/ppb_var_deprecated_proxy.h"
112 #include "ppapi/proxy/ppb_video_decoder_proxy.h" 113 #include "ppapi/proxy/ppb_video_decoder_proxy.h"
113 #include "ppapi/proxy/ppb_x509_certificate_private_proxy.h" 114 #include "ppapi/proxy/ppb_x509_certificate_private_proxy.h"
114 #include "ppapi/proxy/ppp_class_proxy.h" 115 #include "ppapi/proxy/ppp_class_proxy.h"
115 #include "ppapi/proxy/ppp_content_decryptor_private_proxy.h" 116 #include "ppapi/proxy/ppp_content_decryptor_private_proxy.h"
116 #include "ppapi/proxy/ppp_graphics_3d_proxy.h" 117 #include "ppapi/proxy/ppp_graphics_3d_proxy.h"
117 #include "ppapi/proxy/ppp_input_event_proxy.h" 118 #include "ppapi/proxy/ppp_input_event_proxy.h"
118 #include "ppapi/proxy/ppp_instance_private_proxy.h" 119 #include "ppapi/proxy/ppp_instance_private_proxy.h"
119 #include "ppapi/proxy/ppp_instance_proxy.h" 120 #include "ppapi/proxy/ppp_instance_proxy.h"
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 AddPPB(info->name, info->id, info->interface_ptr, perm); 381 AddPPB(info->name, info->id, info->interface_ptr, perm);
381 } 382 }
382 383
383 void InterfaceList::AddPPP(const InterfaceProxy::Info* info) { 384 void InterfaceList::AddPPP(const InterfaceProxy::Info* info) {
384 AddProxy(info->id, info->create_proxy); 385 AddProxy(info->id, info->create_proxy);
385 AddPPP(info->name, info->id, info->interface_ptr); 386 AddPPP(info->name, info->id, info->interface_ptr);
386 } 387 }
387 388
388 } // namespace proxy 389 } // namespace proxy
389 } // namespace ppapi 390 } // namespace ppapi
OLDNEW
« no previous file with comments | « trunk/src/ppapi/ppapi_shared.gypi ('k') | trunk/src/ppapi/proxy/network_list_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698