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

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

Issue 6594099: Pepper/Flapper: Get rid of unimplemented private file ref stuff and implement proxy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 9 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/private/ppb_flash_file.h ('k') | ppapi/proxy/interface_id.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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 AddPPB(PPB_AudioConfig_Proxy::GetInfo()); 102 AddPPB(PPB_AudioConfig_Proxy::GetInfo());
103 AddPPB(PPB_Audio_Proxy::GetInfo()); 103 AddPPB(PPB_Audio_Proxy::GetInfo());
104 AddPPB(PPB_Buffer_Proxy::GetInfo()); 104 AddPPB(PPB_Buffer_Proxy::GetInfo());
105 AddPPB(PPB_CharSet_Proxy::GetInfo()); 105 AddPPB(PPB_CharSet_Proxy::GetInfo());
106 AddPPB(PPB_Context3D_Proxy::GetInfo()); 106 AddPPB(PPB_Context3D_Proxy::GetInfo());
107 AddPPB(PPB_Core_Proxy::GetInfo()); 107 AddPPB(PPB_Core_Proxy::GetInfo());
108 AddPPB(PPB_CursorControl_Proxy::GetInfo()); 108 AddPPB(PPB_CursorControl_Proxy::GetInfo());
109 AddPPB(PPB_FileChooser_Proxy::GetInfo()); 109 AddPPB(PPB_FileChooser_Proxy::GetInfo());
110 AddPPB(PPB_FileRef_Proxy::GetInfo()); 110 AddPPB(PPB_FileRef_Proxy::GetInfo());
111 AddPPB(PPB_FileSystem_Proxy::GetInfo()); 111 AddPPB(PPB_FileSystem_Proxy::GetInfo());
112 AddPPB(PPB_Flash_File_FileRef_Proxy::GetInfo());
112 AddPPB(PPB_Flash_File_ModuleLocal_Proxy::GetInfo()); 113 AddPPB(PPB_Flash_File_ModuleLocal_Proxy::GetInfo());
113 AddPPB(PPB_Flash_Proxy::GetInfo()); 114 AddPPB(PPB_Flash_Proxy::GetInfo());
114 AddPPB(PPB_Flash_Menu_Proxy::GetInfo()); 115 AddPPB(PPB_Flash_Menu_Proxy::GetInfo());
115 AddPPB(PPB_Font_Proxy::GetInfo()); 116 AddPPB(PPB_Font_Proxy::GetInfo());
116 AddPPB(PPB_Fullscreen_Proxy::GetInfo()); 117 AddPPB(PPB_Fullscreen_Proxy::GetInfo());
117 AddPPB(PPB_GLESChromiumTextureMapping_Proxy::GetInfo()); 118 AddPPB(PPB_GLESChromiumTextureMapping_Proxy::GetInfo());
118 AddPPB(PPB_Graphics2D_Proxy::GetInfo()); 119 AddPPB(PPB_Graphics2D_Proxy::GetInfo());
119 AddPPB(PPB_ImageData_Proxy::GetInfo()); 120 AddPPB(PPB_ImageData_Proxy::GetInfo());
120 AddPPB(PPB_Instance_Proxy::GetInfo()); 121 AddPPB(PPB_Instance_Proxy::GetInfo());
121 AddPPB(PPB_OpenGLES2_Proxy::GetInfo()); 122 AddPPB(PPB_OpenGLES2_Proxy::GetInfo());
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 return channel_->Send(msg); 287 return channel_->Send(msg);
287 288
288 // Remote side crashed, drop this message. 289 // Remote side crashed, drop this message.
289 delete msg; 290 delete msg;
290 return false; 291 return false;
291 } 292 }
292 293
293 } // namespace proxy 294 } // namespace proxy
294 } // namespace pp 295 } // namespace pp
295 296
OLDNEW
« no previous file with comments | « ppapi/c/private/ppb_flash_file.h ('k') | ppapi/proxy/interface_id.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698