| OLD | NEW |
| 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 "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 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 if (strcmp(name, PPB_CORE_INTERFACE_1_0) == 0) | 306 if (strcmp(name, PPB_CORE_INTERFACE_1_0) == 0) |
| 307 return &core_interface; | 307 return &core_interface; |
| 308 if (strcmp(name, PPB_FILECHOOSER_TRUSTED_INTERFACE_0_5) == 0) | 308 if (strcmp(name, PPB_FILECHOOSER_TRUSTED_INTERFACE_0_5) == 0) |
| 309 return ::ppapi::thunk::GetPPB_FileChooser_Trusted_0_5_Thunk(); | 309 return ::ppapi::thunk::GetPPB_FileChooser_Trusted_0_5_Thunk(); |
| 310 if (strcmp(name, PPB_FLASH_INTERFACE_11_0) == 0) | 310 if (strcmp(name, PPB_FLASH_INTERFACE_11_0) == 0) |
| 311 return PPB_Flash_Impl::GetInterface11(); | 311 return PPB_Flash_Impl::GetInterface11(); |
| 312 if (strcmp(name, PPB_FLASH_INTERFACE_12_0) == 0) | 312 if (strcmp(name, PPB_FLASH_INTERFACE_12_0) == 0) |
| 313 return PPB_Flash_Impl::GetInterface12_0(); | 313 return PPB_Flash_Impl::GetInterface12_0(); |
| 314 if (strcmp(name, PPB_FLASH_INTERFACE_12_1) == 0) | 314 if (strcmp(name, PPB_FLASH_INTERFACE_12_1) == 0) |
| 315 return PPB_Flash_Impl::GetInterface12_1(); | 315 return PPB_Flash_Impl::GetInterface12_1(); |
| 316 if (strcmp(name, PPB_FLASH_CLIPBOARD_INTERFACE_4_0) == 0) |
| 317 return ::ppapi::thunk::GetPPB_Flash_Clipboard_4_0_Thunk(); |
| 316 if (strcmp(name, PPB_FLASH_CLIPBOARD_INTERFACE_3_0) == 0) | 318 if (strcmp(name, PPB_FLASH_CLIPBOARD_INTERFACE_3_0) == 0) |
| 317 return ::ppapi::thunk::GetPPB_Flash_Clipboard_3_0_Thunk(); | 319 return ::ppapi::thunk::GetPPB_Flash_Clipboard_3_0_Thunk(); |
| 318 if (strcmp(name, PPB_FLASH_CLIPBOARD_INTERFACE_3_LEGACY) == 0) | 320 if (strcmp(name, PPB_FLASH_CLIPBOARD_INTERFACE_3_LEGACY) == 0) |
| 319 return ::ppapi::thunk::GetPPB_Flash_Clipboard_3_0_Thunk(); | 321 return ::ppapi::thunk::GetPPB_Flash_Clipboard_3_0_Thunk(); |
| 320 if (strcmp(name, PPB_FLASH_FILE_FILEREF_INTERFACE) == 0) | 322 if (strcmp(name, PPB_FLASH_FILE_FILEREF_INTERFACE) == 0) |
| 321 return PPB_Flash_File_FileRef_Impl::GetInterface(); | 323 return PPB_Flash_File_FileRef_Impl::GetInterface(); |
| 322 if (strcmp(name, PPB_FLASH_FILE_MODULELOCAL_INTERFACE) == 0) | 324 if (strcmp(name, PPB_FLASH_FILE_MODULELOCAL_INTERFACE) == 0) |
| 323 return PPB_Flash_File_ModuleLocal_Impl::GetInterface(); | 325 return PPB_Flash_File_ModuleLocal_Impl::GetInterface(); |
| 324 if (strcmp(name, PPB_FLASH_MENU_INTERFACE_0_2) == 0) | 326 if (strcmp(name, PPB_FLASH_MENU_INTERFACE_0_2) == 0) |
| 325 return ::ppapi::thunk::GetPPB_Flash_Menu_0_2_Thunk(); | 327 return ::ppapi::thunk::GetPPB_Flash_Menu_0_2_Thunk(); |
| (...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 601 int retval = entry_points.initialize_module(pp_module(), &GetInterface); | 603 int retval = entry_points.initialize_module(pp_module(), &GetInterface); |
| 602 if (retval != 0) { | 604 if (retval != 0) { |
| 603 LOG(WARNING) << "PPP_InitializeModule returned failure " << retval; | 605 LOG(WARNING) << "PPP_InitializeModule returned failure " << retval; |
| 604 return false; | 606 return false; |
| 605 } | 607 } |
| 606 return true; | 608 return true; |
| 607 } | 609 } |
| 608 | 610 |
| 609 } // namespace ppapi | 611 } // namespace ppapi |
| 610 } // namespace webkit | 612 } // namespace webkit |
| OLD | NEW |