diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-21 23:07:45 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-21 23:07:45 +0000 |
commit | 4d3aec119b4617fd3b75eeffa150724985798f4e (patch) | |
tree | 9a8fa1d70e826875a4a7f01e398b6986adb3fb55 /ppapi/c | |
parent | cc6c5d6fab9bacf150042cc83654d9ffa86e367e (diff) | |
download | chromium_src-4d3aec119b4617fd3b75eeffa150724985798f4e.zip chromium_src-4d3aec119b4617fd3b75eeffa150724985798f4e.tar.gz chromium_src-4d3aec119b4617fd3b75eeffa150724985798f4e.tar.bz2 |
Proxy time zone requests to the browser. This is because the current code
can't run in the sandbox on Linux.
TEST=manual
BUG=80176
Review URL: http://codereview.chromium.org/6891001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@82575 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/c')
-rw-r--r-- | ppapi/c/private/ppb_flash.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ppapi/c/private/ppb_flash.h b/ppapi/c/private/ppb_flash.h index cb33851..a46b813 100644 --- a/ppapi/c/private/ppb_flash.h +++ b/ppapi/c/private/ppb_flash.h @@ -13,7 +13,7 @@ #include "ppapi/c/pp_time.h" #include "ppapi/c/pp_var.h" -#define PPB_FLASH_INTERFACE "PPB_Flash;9" +#define PPB_FLASH_INTERFACE "PPB_Flash;10" struct PPB_Flash { // Sets or clears the rendering hint that the given plugin instance is always @@ -54,7 +54,7 @@ struct PPB_Flash { void (*QuitMessageLoop)(PP_Instance instance); // Retrieves the local time zone offset from GM time for the given UTC time. - double (*GetLocalTimeZoneOffset)(PP_Time t); + double (*GetLocalTimeZoneOffset)(PP_Instance instance, PP_Time t); }; #endif // PPAPI_C_PRIVATE_PPB_FLASH_H_ |