summaryrefslogtreecommitdiffstats
path: root/third_party
Commit message (Collapse)AuthorAgeFilesLines
* Deleted glew from third party.apatrick@chromium.org2010-08-128-28844/+0
| | | | | | | | | | | The final GLEW dependency (in webkit) has been removed. Deleting unused library. TEST=try BUG=none Review URL: http://codereview.chromium.org/3158007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55924 0039d316-1c4b-4281-b951-d872f2087c98
* Backport SQLite http://www.sqlite.org/src/ci/b8b465ed2cphajdan.jr@chromium.org2010-08-094-10/+72
| | | | | | | | | | | | This brings some improvements for ctype's locale-sensitive handling of some ASCII characters, see http://crbug.com/15261. TEST=none BUG=50769 Review URL: http://codereview.chromium.org/2884069 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55504 0039d316-1c4b-4281-b951-d872f2087c98
* Add an #if to modp_b64_data.h to avoid a typedef conflict that certainmark@chromium.org2010-08-052-4/+14
| | | | | | | | | | | | finicky compilers (in particular, nacl-g++) complain about. Contributed by mdsteele@google.com BUG=none TEST=Try to compile modp_b64 with nacl-g++ Review URL: http://codereview.chromium.org/3044045 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55137 0039d316-1c4b-4281-b951-d872f2087c98
* Unfork one of our SQLite patches, icu-regexp.patchphajdan.jr@chromium.org2010-08-032-19/+16
| | | | | | | | | | | See discussion: http://thread.gmane.org/gmane.comp.db.sqlite.general/58457 TEST=none BUG=50769 Review URL: http://codereview.chromium.org/2806096 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54809 0039d316-1c4b-4281-b951-d872f2087c98
* Fix language detection with short text pages.jcivelli@chromium.org2010-08-022-4/+6
| | | | | | | | | | | | Changed CLD wrapper function to return the number of bytes used for language detection, and using that in the render view to ignore detection for short texts. BUG=45156 TEST=Visit www.voila.fr, an infobar should show reporting the page is in French. Visit http://jdvhotels.com/calendar.html?datetime=1274857200000&id=0, no translate infobar should show. Review URL: http://codereview.chromium.org/3038018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54568 0039d316-1c4b-4281-b951-d872f2087c98
* Revert the changes to libxml.gyp in r52725.wtc@chromium.org2010-07-271-5/+10
| | | | | | | | | | | | | | | | Both libxml and its direct dependencies need to define LIBXML_STATIC when libxml is a static library. Right now it is necessary to define this macro only on Windows, but the macro is intended to be cross-platform. R=evan BUG=50048 TEST=Windows build log should not contain "locally defined symbol XXX imported" linker warings such as: libxslt.lib(numbers.obj) : warning LNK4049: locally defined symbol _xmlFree imported Review URL: http://codereview.chromium.org/3063009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53861 0039d316-1c4b-4281-b951-d872f2087c98
* Fixed compilation errors for Windows multi-DLL build.apatrick@chromium.org2010-07-272-1/+8
| | | | | | | | | TEST=try BUG=none Review URL: http://codereview.chromium.org/2856063 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53813 0039d316-1c4b-4281-b951-d872f2087c98
* Replaced sha, md5 module imports with hashlib.zelidrag@chromium.org2010-07-274-7/+48
| | | | | | | | | TEST=make sure desktopui_BrowserTest autotest works on ChromeOS BUG=chromium-os:4828 Review URL: http://codereview.chromium.org/2881026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53724 0039d316-1c4b-4281-b951-d872f2087c98
* Build libpng.dll for chromium multi dll version.victorw@chromium.org2010-07-221-1/+12
| | | | | | | | | | R=darin TEST=none BUG=none Review URL: http://codereview.chromium.org/3053011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53354 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 53122 - libxml: LIBXML_STATIC isn't needed on windows eithercevans@chromium.org2010-07-211-0/+5
| | | | | | | | | | | | | | | | | | | | In my previous patch today, I moved LIBXML_STATIC into a Windows-only block in the gyp file. It turns out I misread the #defines and it's not needed on any OS. libxml.h has this: #ifndef PIC # define LIBXML_STATIC #endif The PIC define mentioned there appears to be a Linuxism, which is fine for us because we want it to be static anyway. Review URL: http://codereview.chromium.org/2825052 TBR=evan@chromium.org Review URL: http://codereview.chromium.org/3049004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53129 0039d316-1c4b-4281-b951-d872f2087c98
* libxml: LIBXML_STATIC isn't needed on windows eitherevan@chromium.org2010-07-201-5/+0
| | | | | | | | | | | | | | | | | In my previous patch today, I moved LIBXML_STATIC into a Windows-only block in the gyp file. It turns out I misread the #defines and it's not needed on any OS. libxml.h has this: #ifndef PIC # define LIBXML_STATIC #endif The PIC define mentioned there appears to be a Linuxism, which is fine for us because we want it to be static anyway. Review URL: http://codereview.chromium.org/2825052 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53122 0039d316-1c4b-4281-b951-d872f2087c98
* Update libxml to 2.7.7.evan@chromium.org2010-07-16124-36507/+31867
| | | | | | | | | | | In doing so, I recreated all the patches and organized them under a patches/ subdirectory. BUG=32197 Review URL: http://codereview.chromium.org/2951008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52725 0039d316-1c4b-4281-b951-d872f2087c98
* Build OSMesa as a loadable_module so chrome does not link against it.apatrick@chromium.org2010-07-151-1/+11
| | | | | | | | | | | Build Mesa with -fPIC flag on linux so it can be linked into a shared library. TEST=try BUG=none Review URL: http://codereview.chromium.org/2975016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52542 0039d316-1c4b-4281-b951-d872f2087c98
* Added --use-gl command line flag to select GL implementation.apatrick@chromium.org2010-07-142-6/+15
| | | | | | | | | | | | - Options are desktop, egl and osmesa. - Also added support for bliting an OSMesa bask buffer to a GDK window. TEST=trybots, manual verification that WebGL and Pepper 3D work BUG=45898 Review URL: http://codereview.chromium.org/2825005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52388 0039d316-1c4b-4281-b951-d872f2087c98
* Changed the revision number of libjingle to r24.sergeyu@chromium.org2010-07-121-0/+4
| | | | | | | Review URL: http://codereview.chromium.org/2921004 Patch from Ahmad Sharif <asharif@chromium.org>. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52089 0039d316-1c4b-4281-b951-d872f2087c98
* Updated cache-invalidation-api to @33.akalin@chromium.org2010-07-091-0/+2
| | | | | | | | | BUG=34647 TEST=built on all platforms Review URL: http://codereview.chromium.org/2970001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52018 0039d316-1c4b-4281-b951-d872f2087c98
* Chrome side of making RenderView not special case PluginDocument and making ↵jam@chromium.org2010-07-081-2/+4
| | | | | | | | the WebPlugin API more like WebView. Review URL: http://codereview.chromium.org/2827047 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51886 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 51710 - Add Mozilla's ISimpleDOM COM interfaces, which are neededdmazzoni@chromium.org2010-07-076-556/+0
| | | | | | | | | | | | | | | | | | | in order to fully support Windows screenreaders. Note: it makes sense to check these files into third_party directly (rather than pull from Mozilla's repository) because (1) they're very small (under 500 lines total), and (2) they're stable and unlikely to change frequently. BUG=48185 TEST=none Review URL: http://codereview.chromium.org/2802031 TBR=dmazzoni@chromium.org Review URL: http://codereview.chromium.org/2873043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51795 0039d316-1c4b-4281-b951-d872f2087c98
* Add Mozilla's ISimpleDOM COM interfaces, which are neededdmazzoni@chromium.org2010-07-076-0/+556
| | | | | | | | | | | | | | | | in order to fully support Windows screenreaders. Note: it makes sense to check these files into third_party directly (rather than pull from Mozilla's repository) because (1) they're very small (under 500 lines total), and (2) they're stable and unlikely to change frequently. BUG=48185 TEST=none Review URL: http://codereview.chromium.org/2802031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51710 0039d316-1c4b-4281-b951-d872f2087c98
* Update iaccessible2 interface to latest version. Add README and LICENSEdmazzoni@chromium.org2010-07-073-452/+1054
| | | | | | | | | | | files that were inadvertantly left out of the initial changelist. BUG=none TEST=none Review URL: http://codereview.chromium.org/2830037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51709 0039d316-1c4b-4281-b951-d872f2087c98
* Fix a fts3 typo/bug.dumi@chromium.org2010-07-032-2/+2
| | | | | | | | | | TEST=crash doesn't seem to happen anymore BUG=47059 Review URL: http://codereview.chromium.org/2829042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51584 0039d316-1c4b-4281-b951-d872f2087c98
* tcmalloc: also hook malloc_usable_sizeevan@chromium.org2010-07-021-0/+8
| | | | | | | | | | | | The nvidia opengl driver uses this function. If we don't hook it with tcmalloc, then we mix calls to tcmalloc functions (malloc, free, etc) with the libc ones, causing our WebGL bits to hang. BUG=44590 Review URL: http://codereview.chromium.org/2830035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51539 0039d316-1c4b-4281-b951-d872f2087c98
* Updated cache-invalidation library to @30.akalin@chromium.org2010-07-022-0/+26
| | | | | | | | | | | BUG=34647 TEST=sync_listen_notifications Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=51330 Review URL: http://codereview.chromium.org/2880008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51477 0039d316-1c4b-4281-b951-d872f2087c98
* [Mac] Moving some new third party code into its proper dir. Also tweak the ↵andybons@chromium.org2010-07-014-0/+251
| | | | | | | | | | radius of the close button hover state circle a bit. BUG=none TEST=none Review URL: http://codereview.chromium.org/2833050 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51417 0039d316-1c4b-4281-b951-d872f2087c98
* Added support to GLEW for dynamically looking up the core WGL entrykbr@google.com2010-06-303-1/+104
| | | | | | | | | | | | | | | | | points to avoid the need to link against opengl32.lib. Added _ATL_NO_OPENGL #define in build/common.gypi to prevent link directive from forcibly pulling in opengl32.lib for any Chrome code using ATL. Once upstream code in WebKit is changed to use the new wglew entry points and remove opengl32.lib from the link line, chrome.dll will no longer depend on opengl32.dll. BUG=45586 TEST=ran WebGL with --in-process-webgl Review URL: http://codereview.chromium.org/2856022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51277 0039d316-1c4b-4281-b951-d872f2087c98
* Added support for vector printing for Pepper v1 plugins for Linux.sanjeevr@chromium.org2010-06-291-5/+14
| | | | | | | | | BUG=None TEST=Test printing from Chrome PDF plugin on Linux. Review URL: http://codereview.chromium.org/2807027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51181 0039d316-1c4b-4281-b951-d872f2087c98
* Added option to disable logging in libjinglesergeyu@chromium.org2010-06-292-1/+9
| | | | | | | | | TEST=compile libjingle with and without no_libjingle_loggin=1 BUG=None Review URL: http://codereview.chromium.org/2852031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51180 0039d316-1c4b-4281-b951-d872f2087c98
* Allow quering Pepper plugin for selected text for the context menu. Also ↵jam@chromium.org2010-06-291-11/+19
| | | | | | | | take out the ability to access the clipboard since it's not exposed to HTML for security reasons. Review URL: http://codereview.chromium.org/2841028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51159 0039d316-1c4b-4281-b951-d872f2087c98
* Update libpng to version 1.2.44mhm@chromium.org2010-06-267-58/+121
| | | | | | | | | | | According to libpng website, this will solve the vulnerability ID CVE-2010-1205. BUG=47633 TEST=None Review URL: http://codereview.chromium.org/2835021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50937 0039d316-1c4b-4281-b951-d872f2087c98
* Added support for vector printing for Pepper v1 plugins for Windows. Mac and ↵sanjeevr@chromium.org2010-06-241-0/+8
| | | | | | | | | | | Linux to follow. BUG=None. TEST=Test printing from Chrome PDF plugin on Windows. Review URL: http://codereview.chromium.org/2863019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50699 0039d316-1c4b-4281-b951-d872f2087c98
* Fix remoting_unittests on shlib-dbg build botshclam@chromium.org2010-06-241-2/+0
| | | | | | | | | | | | Pull in extra dependencies that require to run remoting_unittests on shlib-dbg linux bot. TEST=test runs BUG=none Review URL: http://codereview.chromium.org/2850025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50687 0039d316-1c4b-4281-b951-d872f2087c98
* Remove extra ',' at the end of an enum list which fails to compile in C withmsneck@google.com2010-06-231-1/+1
| | | | | | | | | | | "-pedantic" enabled. BUG=none TEST=none Review URL: http://codereview.chromium.org/2830024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50654 0039d316-1c4b-4281-b951-d872f2087c98
* Fix files with svn:executable permissions.thestig@chromium.org2010-06-231-0/+0
| | | | | | | BUG=none TEST=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50566 0039d316-1c4b-4281-b951-d872f2087c98
* Fixed cacheinvalidation.gyp so dependents compile properly and consistently.akalin@chromium.org2010-06-221-27/+12
| | | | | | | | | BUG=34647 TEST=made sure http://codereview.chromium.org/2827014/show compiles. Review URL: http://codereview.chromium.org/2813027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50542 0039d316-1c4b-4281-b951-d872f2087c98
* Rolled cache invalidation library to @21 to fix windows warnings.akalin@chromium.org2010-06-182-0/+11
| | | | | | | | | BUG=34647 TEST=compiled on windows, verified there were no warnings Review URL: http://codereview.chromium.org/2854011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50285 0039d316-1c4b-4281-b951-d872f2087c98
* Fix the FTS3 patch.dumi@chromium.org2010-06-162-52/+55
| | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/2849007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49898 0039d316-1c4b-4281-b951-d872f2087c98
* Add a font API to Pepper and implement on Linux based on agl's code from ↵jam@chromium.org2010-06-111-0/+79
| | | | | | | | http://codereview.chromium.org/2673003. Review URL: http://codereview.chromium.org/2794004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49599 0039d316-1c4b-4281-b951-d872f2087c98
* Proper fix for libjingle _DEBUG issue.dmaclach@chromium.org2010-06-101-1/+10
| | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/2763003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49460 0039d316-1c4b-4281-b951-d872f2087c98
* Turn on fts3.dumi@chromium.org2010-06-091-1/+3
| | | | | | | | | | TEST=none BUG=none Review URL: http://codereview.chromium.org/2562002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49333 0039d316-1c4b-4281-b951-d872f2087c98
* Added EGL based GLContext.apatrick@chromium.org2010-06-091-1/+1
| | | | | | | | | | | | | | Python script to generate code to dynamically bind to GL functions (native GL, OSMesa, EGL or mock GL for unit tests). This replaces GLEW because GLEW doesn't bind to the GLES dialect of GL. Moved the mock GL code into app/gfx/gl. Updated the GPU code and AcceleratedSurface to use the new GL bindings. TEST=trybots BUG=none Review URL: http://codereview.chromium.org/2134006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49332 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 49202 - Fixes up alignment issue in remoting where subprojects of ↵dmaclach@chromium.org2010-06-081-4/+1
| | | | | | | | | | | | | | libjingle had _DEBUG defined even though libjingle itself did not. BUG=none TEST=none Review URL: http://codereview.chromium.org/2716003 TBR=dmaclach@chromium.org Review URL: http://codereview.chromium.org/2785002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49218 0039d316-1c4b-4281-b951-d872f2087c98
* Fixes up alignment issue in remoting where subprojects of libjingle had ↵dmaclach@chromium.org2010-06-081-1/+4
| | | | | | | | | | | _DEBUG defined even though libjingle itself did not. BUG=none TEST=none Review URL: http://codereview.chromium.org/2716003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49202 0039d316-1c4b-4281-b951-d872f2087c98
* Disabled a pragma in gl.h that gcc does not support.apatrick@chromium.org2010-06-072-3/+10
| | | | | | | | | | | Fixes a warning treated as error issue when building chromium code that includes gl.h. TEST=try BUG=none Review URL: http://codereview.chromium.org/2722001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49120 0039d316-1c4b-4281-b951-d872f2087c98
* Removed Mesa EGL and GLES2 headers.apatrick@chromium.org2010-06-078-1695/+10
| | | | | | | | | | | | | | | | They conflict with our command buffer based GLES2 headers. Also changed these typedefs to be compliant with the regular OpenGL definitions: typedef signed long int GLintptr; typedef signed long int GLsizeiptr; TEST=try BUG=none Review URL: http://codereview.chromium.org/2663008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49109 0039d316-1c4b-4281-b951-d872f2087c98
* Get rid of DISALLOW_EVIL_CONSTRUCTORS macro usage in our code base.tfarina@chromium.org2010-06-071-1/+1
| | | | | | | | | | | TODO: Fix the remaining usages in third_party libraries and get rid of the macro in question. BUG=None TEST=trybots Review URL: http://codereview.chromium.org/2657005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49032 0039d316-1c4b-4281-b951-d872f2087c98
* Added debugging output to mcov to help debug buildbot errors.jrg@chromium.org2010-06-051-0/+14
| | | | | | | | Die with non-zero return code if it can't operate properly. Review URL: http://codereview.chromium.org/2630002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48991 0039d316-1c4b-4281-b951-d872f2087c98
* Include plugin.vch files for Flash Player (on official builds).viettrungluu@chromium.org2010-06-041-4/+12
| | | | | | | | | BUG=none TEST=everything still builds, new-style DRM-protected content plays Review URL: http://codereview.chromium.org/2630001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48978 0039d316-1c4b-4281-b951-d872f2087c98
* Convert RTF on the pasteboard to HTML and all it to substitute if present ↵pinkerton@chromium.org2010-06-043-0/+33
| | | | | | | | | | and no HTML is on a paste or drop. Safari does not put HTML on the pasteboard, only RTF. BUG=44661 TEST=dropping/pasting html should retain basic structure, but fonts/colors don't seem to propagate. Review URL: http://codereview.chromium.org/2674002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48962 0039d316-1c4b-4281-b951-d872f2087c98
* Fix more type issues from the npapi.h tranisition to *_t typesstuartmorgan@chromium.org2010-06-042-19/+2
| | | | | | | | | | | | | Fixes the remaining not _t types in our plugin code Removes the extra typedefs added to our copy of npapi.h Adds headers to plugin code where necessary due to implicit dependencies on standard headers via basictypes.h BUG=42645 TEST=Everything still compiles Review URL: http://codereview.chromium.org/2505001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48952 0039d316-1c4b-4281-b951-d872f2087c98
* Implement support for NPDrawingModelInvalidatingCoreAnimation in Mac pluginsstuartmorgan@chromium.org2010-06-031-1/+3
| | | | | | | | | BUG=38982 TEST=None (no plugins use it yet) Review URL: http://codereview.chromium.org/2561005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48877 0039d316-1c4b-4281-b951-d872f2087c98