| 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 #ifndef CONTENT_PPAPI_PLUGIN_BROKER_PROCESS_DISPATCHER_H_ | 5 #ifndef CONTENT_PPAPI_PLUGIN_BROKER_PROCESS_DISPATCHER_H_ |
| 6 #define CONTENT_PPAPI_PLUGIN_BROKER_PROCESS_DISPATCHER_H_ | 6 #define CONTENT_PPAPI_PLUGIN_BROKER_PROCESS_DISPATCHER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
| 10 #include "ppapi/c/ppp.h" | 10 #include "ppapi/c/ppp.h" |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 bool SetDefaultPermission(const FilePath& plugin_data_path, | 63 bool SetDefaultPermission(const FilePath& plugin_data_path, |
| 64 PP_Flash_BrowserOperations_SettingType setting_type, | 64 PP_Flash_BrowserOperations_SettingType setting_type, |
| 65 PP_Flash_BrowserOperations_Permission permission, | 65 PP_Flash_BrowserOperations_Permission permission, |
| 66 bool clear_site_specific); | 66 bool clear_site_specific); |
| 67 bool SetSitePermission(const FilePath& plugin_data_path, | 67 bool SetSitePermission(const FilePath& plugin_data_path, |
| 68 PP_Flash_BrowserOperations_SettingType setting_type, | 68 PP_Flash_BrowserOperations_SettingType setting_type, |
| 69 const ppapi::FlashSiteSettings& sites); | 69 const ppapi::FlashSiteSettings& sites); |
| 70 | 70 |
| 71 PP_GetInterface_Func get_plugin_interface_; | 71 PP_GetInterface_Func get_plugin_interface_; |
| 72 | 72 |
| 73 const PPP_Flash_BrowserOperations_1_1* flash_browser_operations_1_1_; | 73 const PPP_Flash_BrowserOperations_1_2* flash_browser_operations_1_2_; |
| 74 const PPP_Flash_BrowserOperations_1_0* flash_browser_operations_1_0_; | 74 const PPP_Flash_BrowserOperations_1_0* flash_browser_operations_1_0_; |
| 75 | 75 |
| 76 DISALLOW_COPY_AND_ASSIGN(BrokerProcessDispatcher); | 76 DISALLOW_COPY_AND_ASSIGN(BrokerProcessDispatcher); |
| 77 }; | 77 }; |
| 78 | 78 |
| 79 #endif // CONTENT_PPAPI_PLUGIN_BROKER_PROCESS_DISPATCHER_H_ | 79 #endif // CONTENT_PPAPI_PLUGIN_BROKER_PROCESS_DISPATCHER_H_ |
| OLD | NEW |