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

Side by Side Diff: webkit/plugins/ppapi/plugin_module.cc

Issue 8989006: Update PPAPI IDL generator to define versioned structs, and unversioned typedef. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase for line-wrap. Created 8 years, 11 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 | « webkit/plugins/ppapi/plugin_module.h ('k') | webkit/plugins/ppapi/ppapi_plugin_instance.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 "webkit/plugins/ppapi/plugin_module.h" 5 #include "webkit/plugins/ppapi/plugin_module.h"
6 6
7 #include <set> 7 #include <set>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 289
290 #include "ppapi/thunk/interfaces_ppb_public_stable.h" 290 #include "ppapi/thunk/interfaces_ppb_public_stable.h"
291 #include "ppapi/thunk/interfaces_ppb_public_dev.h" 291 #include "ppapi/thunk/interfaces_ppb_public_dev.h"
292 #include "ppapi/thunk/interfaces_ppb_private.h" 292 #include "ppapi/thunk/interfaces_ppb_private.h"
293 293
294 #undef UNPROXIED_API 294 #undef UNPROXIED_API
295 #undef PROXIED_IFACE 295 #undef PROXIED_IFACE
296 296
297 // Please keep alphabetized by interface macro name with "special" stuff at 297 // Please keep alphabetized by interface macro name with "special" stuff at
298 // the bottom. 298 // the bottom.
299 if (strcmp(name, PPB_AUDIO_INPUT_TRUSTED_DEV_INTERFACE) == 0) 299 if (strcmp(name, PPB_AUDIO_INPUT_TRUSTED_DEV_INTERFACE_0_1) == 0)
300 return ::ppapi::thunk::GetPPB_AudioInputTrusted_Thunk(); 300 return ::ppapi::thunk::GetPPB_AudioInputTrusted_0_1_Thunk();
301 if (strcmp(name, PPB_AUDIO_TRUSTED_INTERFACE) == 0) 301 if (strcmp(name, PPB_AUDIO_TRUSTED_INTERFACE_0_6) == 0)
302 return ::ppapi::thunk::GetPPB_AudioTrusted_Thunk(); 302 return ::ppapi::thunk::GetPPB_AudioTrusted_0_6_Thunk();
303 if (strcmp(name, PPB_BUFFER_TRUSTED_INTERFACE) == 0) 303 if (strcmp(name, PPB_BUFFER_TRUSTED_INTERFACE_0_1) == 0)
304 return ::ppapi::thunk::GetPPB_BufferTrusted_Thunk(); 304 return ::ppapi::thunk::GetPPB_BufferTrusted_0_1_Thunk();
305 if (strcmp(name, PPB_CORE_INTERFACE) == 0) 305 if (strcmp(name, PPB_CORE_INTERFACE_1_0) == 0)
306 return &core_interface; 306 return &core_interface;
307 if (strcmp(name, PPB_FILECHOOSER_TRUSTED_INTERFACE) == 0) 307 if (strcmp(name, PPB_FILECHOOSER_TRUSTED_INTERFACE_0_5) == 0)
308 return ::ppapi::thunk::GetPPB_FileChooser_Trusted_Thunk(); 308 return ::ppapi::thunk::GetPPB_FileChooser_Trusted_0_5_Thunk();
309 if (strcmp(name, PPB_FLASH_INTERFACE_11_0) == 0) 309 if (strcmp(name, PPB_FLASH_INTERFACE_11_0) == 0)
310 return PPB_Flash_Impl::GetInterface11(); 310 return PPB_Flash_Impl::GetInterface11();
311 if (strcmp(name, PPB_FLASH_INTERFACE_12_0) == 0) 311 if (strcmp(name, PPB_FLASH_INTERFACE_12_0) == 0)
312 return PPB_Flash_Impl::GetInterface12(); 312 return PPB_Flash_Impl::GetInterface12_0();
313 if (strcmp(name, PPB_FLASH_CLIPBOARD_INTERFACE) == 0) 313 if (strcmp(name, PPB_FLASH_CLIPBOARD_INTERFACE_3_0) == 0)
314 return ::ppapi::thunk::GetPPB_Flash_Clipboard_Thunk(); 314 return ::ppapi::thunk::GetPPB_Flash_Clipboard_3_0_Thunk();
315 if (strcmp(name, PPB_FLASH_CLIPBOARD_INTERFACE_3_LEGACY) == 0) 315 if (strcmp(name, PPB_FLASH_CLIPBOARD_INTERFACE_3_LEGACY) == 0)
316 return ::ppapi::thunk::GetPPB_Flash_Clipboard_Thunk(); 316 return ::ppapi::thunk::GetPPB_Flash_Clipboard_3_0_Thunk();
317 if (strcmp(name, PPB_FLASH_FILE_FILEREF_INTERFACE) == 0) 317 if (strcmp(name, PPB_FLASH_FILE_FILEREF_INTERFACE) == 0)
318 return PPB_Flash_File_FileRef_Impl::GetInterface(); 318 return PPB_Flash_File_FileRef_Impl::GetInterface();
319 if (strcmp(name, PPB_FLASH_FILE_MODULELOCAL_INTERFACE) == 0) 319 if (strcmp(name, PPB_FLASH_FILE_MODULELOCAL_INTERFACE) == 0)
320 return PPB_Flash_File_ModuleLocal_Impl::GetInterface(); 320 return PPB_Flash_File_ModuleLocal_Impl::GetInterface();
321 if (strcmp(name, PPB_FLASH_MENU_INTERFACE) == 0) 321 if (strcmp(name, PPB_FLASH_MENU_INTERFACE_0_2) == 0)
322 return ::ppapi::thunk::GetPPB_Flash_Menu_Thunk(); 322 return ::ppapi::thunk::GetPPB_Flash_Menu_0_2_Thunk();
323 if (strcmp(name, PPB_FLASH_TCPSOCKET_INTERFACE) == 0) 323 if (strcmp(name, PPB_FLASH_TCPSOCKET_INTERFACE_0_2) == 0)
324 return ::ppapi::thunk::GetPPB_TCPSocket_Private_Thunk(); 324 return ::ppapi::thunk::GetPPB_TCPSocket_Private_0_3_Thunk();
325 if (strcmp(name, PPB_FULLSCREEN_DEV_INTERFACE) == 0) 325 if (strcmp(name, PPB_FULLSCREEN_DEV_INTERFACE_0_5) == 0)
326 return ::ppapi::thunk::GetPPB_Fullscreen_Thunk(); 326 return ::ppapi::thunk::GetPPB_Fullscreen_1_0_Thunk();
327 if (strcmp(name, PPB_GPU_BLACKLIST_INTERFACE) == 0) 327 if (strcmp(name, PPB_GPU_BLACKLIST_INTERFACE) == 0)
328 return PPB_GpuBlacklist_Private_Impl::GetInterface(); 328 return PPB_GpuBlacklist_Private_Impl::GetInterface();
329 if (strcmp(name, PPB_GRAPHICS_3D_TRUSTED_INTERFACE) == 0) 329 if (strcmp(name, PPB_GRAPHICS_3D_TRUSTED_INTERFACE_1_0) == 0)
330 return ::ppapi::thunk::GetPPB_Graphics3DTrusted_Thunk(); 330 return ::ppapi::thunk::GetPPB_Graphics3DTrusted_1_0_Thunk();
331 if (strcmp(name, PPB_IMAGEDATA_TRUSTED_INTERFACE) == 0) 331 if (strcmp(name, PPB_IMAGEDATA_TRUSTED_INTERFACE_0_4) == 0)
332 return ::ppapi::thunk::GetPPB_ImageDataTrusted_Thunk(); 332 return ::ppapi::thunk::GetPPB_ImageDataTrusted_0_4_Thunk();
333 if (strcmp(name, PPB_INPUT_EVENT_INTERFACE_1_0) == 0) 333 if (strcmp(name, PPB_INPUT_EVENT_INTERFACE_1_0) == 0)
334 return ::ppapi::thunk::GetPPB_InputEvent_Thunk(); 334 return ::ppapi::thunk::GetPPB_InputEvent_1_0_Thunk();
335 if (strcmp(name, PPB_INSTANCE_PRIVATE_INTERFACE) == 0) 335 if (strcmp(name, PPB_INSTANCE_PRIVATE_INTERFACE_0_1) == 0)
336 return ::ppapi::thunk::GetPPB_Instance_Private_Thunk(); 336 return ::ppapi::thunk::GetPPB_Instance_Private_0_1_Thunk();
337 if (strcmp(name, PPB_OPENGLES2_INTERFACE) == 0) 337 if (strcmp(name, PPB_OPENGLES2_INTERFACE) == 0)
338 return ::ppapi::PPB_OpenGLES2_Shared::GetInterface(); 338 return ::ppapi::PPB_OpenGLES2_Shared::GetInterface();
339 if (strcmp(name, PPB_PROXY_PRIVATE_INTERFACE) == 0) 339 if (strcmp(name, PPB_PROXY_PRIVATE_INTERFACE) == 0)
340 return PPB_Proxy_Impl::GetInterface(); 340 return PPB_Proxy_Impl::GetInterface();
341 if (strcmp(name, PPB_UMA_PRIVATE_INTERFACE) == 0) 341 if (strcmp(name, PPB_UMA_PRIVATE_INTERFACE) == 0)
342 return PPB_UMA_Private_Impl::GetInterface(); 342 return PPB_UMA_Private_Impl::GetInterface();
343 if (strcmp(name, PPB_URLLOADERTRUSTED_INTERFACE) == 0) 343 if (strcmp(name, PPB_URLLOADERTRUSTED_INTERFACE_0_3) == 0)
344 return ::ppapi::thunk::GetPPB_URLLoaderTrusted_Thunk(); 344 return ::ppapi::thunk::GetPPB_URLLoaderTrusted_0_3_Thunk();
345 if (strcmp(name, PPB_VAR_DEPRECATED_INTERFACE) == 0) 345 if (strcmp(name, PPB_VAR_DEPRECATED_INTERFACE) == 0)
346 return PPB_Var_Deprecated_Impl::GetVarDeprecatedInterface(); 346 return PPB_Var_Deprecated_Impl::GetVarDeprecatedInterface();
347 if (strcmp(name, PPB_VAR_INTERFACE_1_0) == 0) 347 if (strcmp(name, PPB_VAR_INTERFACE_1_0) == 0)
348 return ::ppapi::PPB_Var_Shared::GetVarInterface1_0(); 348 return ::ppapi::PPB_Var_Shared::GetVarInterface1_0();
349 if (strcmp(name, PPB_VAR_INTERFACE_1_1) == 0) 349 if (strcmp(name, PPB_VAR_INTERFACE_1_1) == 0)
350 return ::ppapi::PPB_Var_Shared::GetVarInterface(); 350 return ::ppapi::PPB_Var_Shared::GetVarInterface1_1();
351 if (strcmp(name, PPB_VAR_ARRAY_BUFFER_DEV_INTERFACE) == 0) 351 if (strcmp(name, PPB_VAR_ARRAY_BUFFER_DEV_INTERFACE) == 0)
352 return ::ppapi::PPB_Var_Shared::GetVarArrayBufferInterface(); 352 return ::ppapi::PPB_Var_Shared::GetVarArrayBufferInterface();
353 353
354 #ifdef ENABLE_FLAPPER_HACKS 354 #ifdef ENABLE_FLAPPER_HACKS
355 if (strcmp(name, PPB_FLASH_NETCONNECTOR_INTERFACE) == 0) 355 if (strcmp(name, PPB_FLASH_NETCONNECTOR_INTERFACE) == 0)
356 return ::ppapi::thunk::GetPPB_Flash_NetConnector_Thunk(); 356 return ::ppapi::thunk::GetPPB_Flash_NetConnector_Thunk();
357 #endif // ENABLE_FLAPPER_HACKS 357 #endif // ENABLE_FLAPPER_HACKS
358 358
359 // Only support the testing interface when the command line switch is 359 // Only support the testing interface when the command line switch is
360 // specified. This allows us to prevent people from (ab)using this interface 360 // specified. This allows us to prevent people from (ab)using this interface
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
602 int retval = entry_points.initialize_module(pp_module(), &GetInterface); 602 int retval = entry_points.initialize_module(pp_module(), &GetInterface);
603 if (retval != 0) { 603 if (retval != 0) {
604 LOG(WARNING) << "PPP_InitializeModule returned failure " << retval; 604 LOG(WARNING) << "PPP_InitializeModule returned failure " << retval;
605 return false; 605 return false;
606 } 606 }
607 return true; 607 return true;
608 } 608 }
609 609
610 } // namespace ppapi 610 } // namespace ppapi
611 } // namespace webkit 611 } // namespace webkit
OLDNEW
« no previous file with comments | « webkit/plugins/ppapi/plugin_module.h ('k') | webkit/plugins/ppapi/ppapi_plugin_instance.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698