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

Unified Diff: ppapi/api/private/ppp_flash_browser_operations.idl

Issue 10566014: Change PP_Flash_BrowserOperations_SiteSetting.site from PP_Var to const char*. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove assert_size Created 8 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/api/pp_stdint.idl ('k') | ppapi/c/private/ppp_flash_browser_operations.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/api/private/ppp_flash_browser_operations.idl
diff --git a/ppapi/api/private/ppp_flash_browser_operations.idl b/ppapi/api/private/ppp_flash_browser_operations.idl
index d42aee71f65ea76de03c667cd865ea05cea50f23..4eeadb7d2c13671303cfcdb6b0dee322a12ad602 100644
--- a/ppapi/api/private/ppp_flash_browser_operations.idl
+++ b/ppapi/api/private/ppp_flash_browser_operations.idl
@@ -9,7 +9,7 @@
label Chrome {
M20 = 1.0,
- M21 = 1.1
+ M21 = 1.2
};
[assert_size(4)]
@@ -27,12 +27,9 @@ enum PP_Flash_BrowserOperations_Permission {
PP_FLASH_BROWSEROPERATIONS_PERMISSION_ASK = 3
};
-[assert_size(24)]
struct PP_Flash_BrowserOperations_SiteSetting {
- PP_Var site;
+ cstr_t site;
PP_Flash_BrowserOperations_Permission permission;
- // Makes the size consistent across compilers.
- int32_t padding;
};
typedef void PPB_Flash_BrowserOperations_GetSettingsCallback(
@@ -83,7 +80,7 @@ interface PPP_Flash_BrowserOperations {
*
* @return <code>PP_TRUE</code> on success, <code>PP_FALSE</code> on failure.
*/
- [version=1.1]
+ [version=1.2]
PP_Bool DeauthorizeContentLicenses([in] str_t plugin_data_path);
/**
@@ -97,7 +94,7 @@ interface PPP_Flash_BrowserOperations {
* @param[inout] user_data An opaque pointer that will be passed to
* <code>callback</code>.
*/
- [version=1.1]
+ [version=1.2]
void GetPermissionSettings(
[in] str_t plugin_data_path,
[in] PP_Flash_BrowserOperations_SettingType setting_type,
@@ -117,7 +114,7 @@ interface PPP_Flash_BrowserOperations {
*
* @return <code>PP_TRUE</code> on success, <code>PP_FALSE</code> on failure.
*/
- [version=1.1]
+ [version=1.2]
PP_Bool SetDefaultPermission(
[in] str_t plugin_data_path,
[in] PP_Flash_BrowserOperations_SettingType setting_type,
@@ -138,7 +135,7 @@ interface PPP_Flash_BrowserOperations {
*
* @return <code>PP_TRUE</code> on success, <code>PP_FALSE</code> on failure.
*/
- [version=1.1]
+ [version=1.2]
PP_Bool SetSitePermission(
[in] str_t plugin_data_path,
[in] PP_Flash_BrowserOperations_SettingType setting_type,
« no previous file with comments | « ppapi/api/pp_stdint.idl ('k') | ppapi/c/private/ppp_flash_browser_operations.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698