diff options
author | dmichael@google.com <dmichael@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-17 16:14:53 +0000 |
---|---|---|
committer | dmichael@google.com <dmichael@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-17 16:14:53 +0000 |
commit | d6c52c2db504b49fd3aaa8d8aa951f10d94b44f5 (patch) | |
tree | c2a0def56aa43364623449756218f5fab20d2c7b /ppapi/c/ppp_instance.h | |
parent | 5658085787ca5a424ef86d6ad8d9c2cf2bf80ad8 (diff) | |
download | chromium_src-d6c52c2db504b49fd3aaa8d8aa951f10d94b44f5.zip chromium_src-d6c52c2db504b49fd3aaa8d8aa951f10d94b44f5.tar.gz chromium_src-d6c52c2db504b49fd3aaa8d8aa951f10d94b44f5.tar.bz2 |
A second attempt at forcing 8-byte alignment of the time stamp.
I used padding this time. pragma pack didn't work on Mac x86-32. It seems to be an issue that only some (very recent?) versions of GCC support it. I could do it with macros, but it would be ugly. See the updated bug for more details.
Try was clean:
http://build.chromium.org/p/tryserver.chromium/waterfall?committer=dmichael@google.com
BUG=62983
TEST=I use a compile assert to ensure the size is consistent.
Assuming this goes well, I'll do a future CL to scan other structs and tweak them to get consistent alignment if I find any other problems.
Review URL: http://codereview.chromium.org/5001002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@66446 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/c/ppp_instance.h')
-rw-r--r-- | ppapi/c/ppp_instance.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ppapi/c/ppp_instance.h b/ppapi/c/ppp_instance.h index 19907ca..46d49a2 100644 --- a/ppapi/c/ppp_instance.h +++ b/ppapi/c/ppp_instance.h @@ -13,7 +13,7 @@ struct PP_InputEvent; struct PP_Var; -#define PPP_INSTANCE_INTERFACE "PPP_Instance;0.3" +#define PPP_INSTANCE_INTERFACE "PPP_Instance;0.4" /** * @file |