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

Side by Side Diff: ppapi/proxy/dispatcher.cc

Issue 7292033: First pass at freezing stable pepper interfaces to 1.0. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 9 years, 5 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 | « ppapi/c/ppp_messaging.h ('k') | ppapi/proxy/ppb_instance_proxy.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) 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/dispatcher.h" 5 #include "ppapi/proxy/dispatcher.h"
6 6
7 #include <string.h> // For memset. 7 #include <string.h> // For memset.
8 8
9 #include <map> 9 #include <map>
10 10
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 AddPPB(PPB_Flash_File_ModuleLocal_Proxy::GetInfo()); 134 AddPPB(PPB_Flash_File_ModuleLocal_Proxy::GetInfo());
135 AddPPB(PPB_Flash_Proxy::GetInfo()); 135 AddPPB(PPB_Flash_Proxy::GetInfo());
136 AddPPB(PPB_Flash_Menu_Proxy::GetInfo()); 136 AddPPB(PPB_Flash_Menu_Proxy::GetInfo());
137 AddPPB(PPB_Flash_TCPSocket_Proxy::GetInfo()); 137 AddPPB(PPB_Flash_TCPSocket_Proxy::GetInfo());
138 AddPPB(PPB_Font_Proxy::GetInfo()); 138 AddPPB(PPB_Font_Proxy::GetInfo());
139 AddPPB(PPB_Graphics2D_Proxy::GetInfo()); 139 AddPPB(PPB_Graphics2D_Proxy::GetInfo());
140 AddPPB(PPB_ImageData_Proxy::GetInfo()); 140 AddPPB(PPB_ImageData_Proxy::GetInfo());
141 AddPPB(PPB_InputEvent_Proxy::GetInfo()); 141 AddPPB(PPB_InputEvent_Proxy::GetInfo());
142 AddPPB(PPB_Instance_Proxy::GetInfo0_4()); 142 AddPPB(PPB_Instance_Proxy::GetInfo0_4());
143 AddPPB(PPB_Instance_Proxy::GetInfo0_5()); 143 AddPPB(PPB_Instance_Proxy::GetInfo0_5());
144 AddPPB(PPB_Instance_Proxy::GetInfo1_0());
144 AddPPB(PPB_Instance_Proxy::GetInfoFullscreen()); 145 AddPPB(PPB_Instance_Proxy::GetInfoFullscreen());
145 AddPPB(PPB_Instance_Proxy::GetInfoMessaging()); 146 AddPPB(PPB_Instance_Proxy::GetInfoMessaging());
146 AddPPB(PPB_Instance_Proxy::GetInfoPrivate()); 147 AddPPB(PPB_Instance_Proxy::GetInfoPrivate());
147 AddPPB(PPB_Memory_Proxy::GetInfo()); 148 AddPPB(PPB_Memory_Proxy::GetInfo());
148 AddPPB(PPB_OpenGLES2_Proxy::GetInfo()); 149 AddPPB(PPB_OpenGLES2_Proxy::GetInfo());
149 AddPPB(PPB_PDF_Proxy::GetInfo()); 150 AddPPB(PPB_PDF_Proxy::GetInfo());
150 AddPPB(PPB_Surface3D_Proxy::GetInfo()); 151 AddPPB(PPB_Surface3D_Proxy::GetInfo());
151 AddPPB(PPB_Testing_Proxy::GetInfo()); 152 AddPPB(PPB_Testing_Proxy::GetInfo());
152 AddPPB(PPB_URLLoader_Proxy::GetInfo()); 153 AddPPB(PPB_URLLoader_Proxy::GetInfo());
153 AddPPB(PPB_URLLoader_Proxy::GetTrustedInfo()); 154 AddPPB(PPB_URLLoader_Proxy::GetTrustedInfo());
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 return delegate()->GetIPCMessageLoop(); 265 return delegate()->GetIPCMessageLoop();
265 } 266 }
266 267
267 void Dispatcher::AddIOThreadMessageFilter( 268 void Dispatcher::AddIOThreadMessageFilter(
268 IPC::ChannelProxy::MessageFilter* filter) { 269 IPC::ChannelProxy::MessageFilter* filter) {
269 channel()->AddFilter(filter); 270 channel()->AddFilter(filter);
270 } 271 }
271 272
272 } // namespace proxy 273 } // namespace proxy
273 } // namespace pp 274 } // namespace pp
OLDNEW
« no previous file with comments | « ppapi/c/ppp_messaging.h ('k') | ppapi/proxy/ppb_instance_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698