Bbradnelson@google.comInlining PPAPI_LIBS as it's now the same everywhere.
| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
Update PPAPI IDL generator to define versioned structs, and unversioned typedef. For interface Foo with versions A and B, structs will be defined for Foo_A and Foo_B, and a typedef generated from Foo_B to Foo. Versioning of IDL structs remains unchanged. (Follow-up to discussion on CL 8931019) *** This change breaks compatibility with C code that makes use of unversioned-named interface structs. :( *** We need to define a versioned-named struct for each interface's current version. We could: 1. Carry on defining the current struct unversioned and typedef a versioned name for it. The versioned type for the interface would be a typedef for the latest version and a struct for later versions, causing calling C code that uses it to break when a new version is added. 2. Define structs for all versions, and a separate unversioned struct. This would lose type equivalence between the versioned and unversioned copies of the latest interface specification, and lead to needless duplication, especially for one-version interfaces. 3. Do this CL. We break some C code once, by change the unversioned type from struct to typedef, but we avoid these headaches in future. C++ code shouldn't be affected. *** Contents of this CL, including notes on to-dos: This change requires updating thunk-getters to be defined using versioned names, so that the interface structs can be forward declared; the thunk-getters now have versioned names and return values. Changing the thunk-getter naming requires updating unit-tests to call the versioned names. It also requires some interface headers not generated from IDL to be manually updated to the new scheme (PPB_CharSet_Dev, PPB_Crypto_Dev, PPB_DirectoryReader_Dev, PPB_LayerCompositor_Dev, PPB_Graphics3D, PPB_Flash_Menu, PPB_Instance_Private, PPP_Pdf, PPB_Flash_NetConnector, PPB_GLESChromiumTextureMapping_Dev and PPB_Graphics3D_Trusted). The proxy GetInfo() calls are updated to use versioned interface macros and thunks. Similarly, most PPBs added in interface_list.cc are now added using versioned interface macros and thunk getters. Ditto PluginModule, and some of PluginInstance. Some implementations (e.g. PPB_CharSet_Dev) needed updating to use versioned thunk getters to fetch interfaces to use. The VideoDecoder interface size checks are for 32-bit are updated not to expect structs. It was necessary to replace forward declarations of interface structs with includes, and remove "struct" prefixes where unversioned names were used. In most cases the affected code should really be updated to cope with versions. PPP_Pdf has become PPP_Pdf_1. Other versionless structs that should be updated for consistenct include PPB_UMA_Private, PPB_GPU_Blacklist_Private, PPB_Proxy_Private, PPP_PDF, PPB_OpenGLES2, PPB_Flash_File_FileRef and PPB_Flash_File_ModuleLocal. Also PPP_Class_Deprecated, PPP_CursorControl_Dev, PPP_Find_Dev, PPP_NetworkState_Dev, PPP_Scrollbar_Dev, PPP_Selection_Dev, PPP_VideoCapture_Dev, PPP_Graphics3D and PPP_Instance_Private. The Graphics2D and GLES2 examples now use unversioned interface type names without "struct" prefix. It's not clear whether examples should use versioned names, to show best practice, or unversioned. The typedef hack in PPP_Instance IDL is gone. Yay. BUG=107398,108379 TEST=All Pepper and NaCl tests should continue to pass on Chromium bots. NaCl SDK examples build correctly. Review URL: http://codereview.chromium.org/8989006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@116490 0039d316-1c4b-4281-b951-d872f2087c98 | 14 年前 | |
Cloning a bunch of stuff from the native_client repository at r6528 No changes, as is. BUG=http://code.google.com/p/chromium/issues/detail?id=93520 TEST=None R=noelallen@google.com Review URL: http://codereview.chromium.org/7740013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98158 0039d316-1c4b-4281-b951-d872f2087c98 | 14 年前 | |
Cloning a bunch of stuff from the native_client repository at r6528 No changes, as is. BUG=http://code.google.com/p/chromium/issues/detail?id=93520 TEST=None R=noelallen@google.com Review URL: http://codereview.chromium.org/7740013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98158 0039d316-1c4b-4281-b951-d872f2087c98 | 14 年前 | |
Update Native Client Authors to be Chromium Authors for the code moved from the native client repo to the Chrome one. The Native Client Authors are currently a subset of the Chromium Authors. TEST=none BUG=none Review URL: http://codereview.chromium.org/7778046 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@100755 0039d316-1c4b-4281-b951-d872f2087c98 | 14 年前 | |
Fix ppapi_simple_tests. This is a patch from robertm: http://codereview.chromium.org/7828029/ BUG=None TEST=The test itself passes. Review URL: http://codereview.chromium.org/7831027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99276 0039d316-1c4b-4281-b951-d872f2087c98 | 14 年前 | |
Fix ppapi_simple_tests. This is a patch from robertm: http://codereview.chromium.org/7828029/ BUG=None TEST=The test itself passes. Review URL: http://codereview.chromium.org/7831027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99276 0039d316-1c4b-4281-b951-d872f2087c98 | 14 年前 | |
Remove references to headers not in TC. Currently we copy headers to a location in the toolchain during build which do not actually belong there. This CL converts the toolchain relative paths to NaCl repo relative in preparation for the removal of those headers. BUG= http://code.google.com/p/chromium/issues/detail?id=108503 TEST= try Review URL: http://codereview.chromium.org/8949069 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@115922 0039d316-1c4b-4281-b951-d872f2087c98 | 14 年前 | |
Workaround a problem where clang and gcc behavior wrt the creation of temp objects differs. Since the ctor/dtor make pepper calls this results in observable differences in program behavior. The workaround is to use different lifetimes for the objects involved. I will leave the bug open until this is better understood. BUG= http://code.google.com/p/nativeclient/issues/detail?id=2293 Review URL: http://codereview.chromium.org/8102006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103737 0039d316-1c4b-4281-b951-d872f2087c98 | 14 年前 | |
Cloning a bunch of stuff from the native_client repository at r6528 No changes, as is. BUG=http://code.google.com/p/chromium/issues/detail?id=93520 TEST=None R=noelallen@google.com Review URL: http://codereview.chromium.org/7740013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98158 0039d316-1c4b-4281-b951-d872f2087c98 | 14 年前 | |
Workaround a problem where clang and gcc behavior wrt the creation of temp objects differs. Since the ctor/dtor make pepper calls this results in observable differences in program behavior. The workaround is to use different lifetimes for the objects involved. I will leave the bug open until this is better understood. BUG= http://code.google.com/p/nativeclient/issues/detail?id=2293 Review URL: http://codereview.chromium.org/8102006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103737 0039d316-1c4b-4281-b951-d872f2087c98 | 14 年前 | |
Workaround a problem where clang and gcc behavior wrt the creation of temp objects differs. Since the ctor/dtor make pepper calls this results in observable differences in program behavior. The workaround is to use different lifetimes for the objects involved. I will leave the bug open until this is better understood. BUG= http://code.google.com/p/nativeclient/issues/detail?id=2293 Review URL: http://codereview.chromium.org/8102006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103737 0039d316-1c4b-4281-b951-d872f2087c98 | 14 年前 | |
Remove references to headers not in TC. Currently we copy headers to a location in the toolchain during build which do not actually belong there. This CL converts the toolchain relative paths to NaCl repo relative in preparation for the removal of those headers. BUG= http://code.google.com/p/chromium/issues/detail?id=108503 TEST= try Review URL: http://codereview.chromium.org/8949069 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@115922 0039d316-1c4b-4281-b951-d872f2087c98 | 14 年前 | |
Cloning a bunch of stuff from the native_client repository at r6528 No changes, as is. BUG=http://code.google.com/p/chromium/issues/detail?id=93520 TEST=None R=noelallen@google.com Review URL: http://codereview.chromium.org/7740013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98158 0039d316-1c4b-4281-b951-d872f2087c98 | 14 年前 | |
Cloning a bunch of stuff from the native_client repository at r6528 No changes, as is. BUG=http://code.google.com/p/chromium/issues/detail?id=93520 TEST=None R=noelallen@google.com Review URL: http://codereview.chromium.org/7740013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98158 0039d316-1c4b-4281-b951-d872f2087c98 | 14 年前 | |
Inlining PPAPI_LIBS as it's now the same everywhere. We'd like to drop PPAPI_LIBS nacl side, so inlining. BUG=http://code.google.com/p/nativeclient/issues/detail?id=2957 TEST=None R=mseaborn@chromium.org Review URL: https://chromiumcodereview.appspot.com/10868029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@152940 0039d316-1c4b-4281-b951-d872f2087c98 | 13 年前 | |
Cloning a bunch of stuff from the native_client repository at r6528 No changes, as is. BUG=http://code.google.com/p/chromium/issues/detail?id=93520 TEST=None R=noelallen@google.com Review URL: http://codereview.chromium.org/7740013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98158 0039d316-1c4b-4281-b951-d872f2087c98 | 14 年前 | |
Cloning a bunch of stuff from the native_client repository at r6528 No changes, as is. BUG=http://code.google.com/p/chromium/issues/detail?id=93520 TEST=None R=noelallen@google.com Review URL: http://codereview.chromium.org/7740013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98158 0039d316-1c4b-4281-b951-d872f2087c98 | 14 年前 | |
Cloning a bunch of stuff from the native_client repository at r6528 No changes, as is. BUG=http://code.google.com/p/chromium/issues/detail?id=93520 TEST=None R=noelallen@google.com Review URL: http://codereview.chromium.org/7740013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98158 0039d316-1c4b-4281-b951-d872f2087c98 | 14 年前 | |
Cloning a bunch of stuff from the native_client repository at r6528 No changes, as is. BUG=http://code.google.com/p/chromium/issues/detail?id=93520 TEST=None R=noelallen@google.com Review URL: http://codereview.chromium.org/7740013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98158 0039d316-1c4b-4281-b951-d872f2087c98 | 14 年前 | |
Cloning a bunch of stuff from the native_client repository at r6528 No changes, as is. BUG=http://code.google.com/p/chromium/issues/detail?id=93520 TEST=None R=noelallen@google.com Review URL: http://codereview.chromium.org/7740013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98158 0039d316-1c4b-4281-b951-d872f2087c98 | 14 年前 | |
Cloning a bunch of stuff from the native_client repository at r6528 No changes, as is. BUG=http://code.google.com/p/chromium/issues/detail?id=93520 TEST=None R=noelallen@google.com Review URL: http://codereview.chromium.org/7740013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98158 0039d316-1c4b-4281-b951-d872f2087c98 | 14 年前 | |
Cloning a bunch of stuff from the native_client repository at r6528 No changes, as is. BUG=http://code.google.com/p/chromium/issues/detail?id=93520 TEST=None R=noelallen@google.com Review URL: http://codereview.chromium.org/7740013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98158 0039d316-1c4b-4281-b951-d872f2087c98 | 14 年前 | |
Cloning a bunch of stuff from the native_client repository at r6528 No changes, as is. BUG=http://code.google.com/p/chromium/issues/detail?id=93520 TEST=None R=noelallen@google.com Review URL: http://codereview.chromium.org/7740013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98158 0039d316-1c4b-4281-b951-d872f2087c98 | 14 年前 |