summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Make a valgrind tool in the same vein as the purify one.erg@google.com2009-01-095-0/+863
| | | | | | | | | | | | | | | Currently supports the following commands: ./chrome_tests.sh --test base ./chrome_tests.sh --test net ./chrome_tests.sh --test ipc ./chrome_tests.sh --test unit The valgrind_*.py files are my first real big chunks of python, so any suggestions would be greatly appreciated. Review URL: http://codereview.chromium.org/16583 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7796 0039d316-1c4b-4281-b951-d872f2087c98
* Fix media.sln, I removed dmg_fp.vcproj a long time ago.tc@google.com2009-01-091-8/+0
| | | | | | Review URL: http://codereview.chromium.org/17290 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7794 0039d316-1c4b-4281-b951-d872f2087c98
* Fix the windows scons build.darin@chromium.org2009-01-091-0/+1
| | | | | | | | TBR=sgk Review URL: http://codereview.chromium.org/17445 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7793 0039d316-1c4b-4281-b951-d872f2087c98
* Make sure that the active tab contents is destroyed when navigating back ↵ananta@chromium.org2009-01-091-0/+7
| | | | | | | | | | | | | | | | from the tab contents to the downloads page. This is a special case as the current code in the navigation controller only schedules a tab contents for destroy when the tab contents displayed last is different from the active tab contents. When we navigate away from a webcontents to the Downloads page which is a native UI tab contents, we check for whether the last displayed tab contents type differs from the active type. They both match as the back operation is yet to be initiated. Eventually the active tab contents change to the download page. We don't clean up the previous tab contents fully thus resulting in the renderer process continuing to run. This fixes http://code.google.com/p/chromium/issues/detail?id=5828 R=jcampan Review URL: http://codereview.chromium.org/17258 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7792 0039d316-1c4b-4281-b951-d872f2087c98
* create a net.vsprops file to share between build configs of net.vcprojtc@google.com2009-01-092-2/+10
| | | | | | Review URL: http://codereview.chromium.org/17289 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7791 0039d316-1c4b-4281-b951-d872f2087c98
* fix google chrome installer teststc@google.com2009-01-091-6/+6
| | | | | | | | | | | When we updated gtest, this method became private (GTEST_FATAL_FAILURE_). Use the public methods instead. This is only a problem on official builds. Review URL: http://codereview.chromium.org/17440 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7790 0039d316-1c4b-4281-b951-d872f2087c98
* Merges your change (WebKit cl 39396) to the ImageDecoders into oursky@google.com2009-01-098-8/+19
| | | | | | | | | | | port. These are port classes, so they have to be hand merged. BUG=5827 TEST=none Review URL: http://codereview.chromium.org/17437 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7789 0039d316-1c4b-4281-b951-d872f2087c98
* Some of these tests are missing results. Instead of creating bogus expecteddarin@chromium.org2009-01-091-1/+1
| | | | | | | | | | results, I'm just skipping them all. TBR=ojan Review URL: http://codereview.chromium.org/17300 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7787 0039d316-1c4b-4281-b951-d872f2087c98
* Post-merge Linux layout test fixes.evan@chromium.org2009-01-091-5/+7
| | | | | | | Review URL: http://codereview.chromium.org/17444 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7784 0039d316-1c4b-4281-b951-d872f2087c98
* Make more ui_tests Purify friendly.paulg@google.com2009-01-091-3/+4
| | | | | | Review URL: http://codereview.chromium.org/17293 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7782 0039d316-1c4b-4281-b951-d872f2087c98
* Sweep the tree for SCons files still missing svn:eol-style LF.sgk@google.com2009-01-084-289/+289
| | | | | | Review URL: http://codereview.chromium.org/17297 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7781 0039d316-1c4b-4281-b951-d872f2087c98
* Rebaseline more tests after verifying their output is ok.evan@chromium.org2009-01-089-10/+108
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7779 0039d316-1c4b-4281-b951-d872f2087c98
* Removes a bogus DCHECK. This DCHECK is bogus for two reasons:sky@google.com2009-01-081-1/+2
| | | | | | | | | | | | | | | | | | | . it's checking a field that hasn't been set yet, hence the sporadic failure. . It shouldn't check delegate either as inside this class it's possible to supply NULL. I've removed it entirely and added a comment. BUG=5914 TEST=right click on the tab strip and make sure you don't get a DCHECK. Because this relies on random data, it's too hard to write a test for this, additionally I'm sure once we run the interactive ui tests under Purify this'll be covered. Review URL: http://codereview.chromium.org/17439 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7777 0039d316-1c4b-4281-b951-d872f2087c98
* Need to skip some newly added layout tests until we support a newdarin@chromium.org2009-01-081-0/+4
| | | | | | | | | | layoutTestController method. TBR=ojan Review URL: http://codereview.chromium.org/17298 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7775 0039d316-1c4b-4281-b951-d872f2087c98
* Rename AffineTransformCG.cpp to TransformationMatrixCG.cpp corresponding tomark@chromium.org2009-01-081-8/+6
| | | | | | | WebKit merge r7767. Review URL: http://codereview.chromium.org/17295 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7774 0039d316-1c4b-4281-b951-d872f2087c98
* Add first cut at tool for Win32 users to manipulate Xcode project filesaharper@chromium.org2009-01-081-0/+1229
| | | | | | | pending the grand overall solution. Review URL: http://codereview.chromium.org/15015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7773 0039d316-1c4b-4281-b951-d872f2087c98
* Fix build bustage. Need to compile dom/DOMStringList.cpp instead of ↵darin@chromium.org2009-01-081-1/+1
| | | | | | | | | | page/DOMStringList.cpp! doh :-( TBR=evan Review URL: http://codereview.chromium.org/17294 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7772 0039d316-1c4b-4281-b951-d872f2087c98
* Fix scons build for real this time.darin@chromium.org2009-01-081-1/+1
| | | | | | | | TBR=tony Review URL: http://codereview.chromium.org/17292 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7771 0039d316-1c4b-4281-b951-d872f2087c98
* It looks like the FTP tests are hanging / crashing some percentage of the ↵erikkay@google.com2009-01-081-1/+2
| | | | | | | | | time, so disable them for now. TBR=darin Review URL: http://codereview.chromium.org/17435 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7770 0039d316-1c4b-4281-b951-d872f2087c98
* Fix Scons build.darin@chromium.org2009-01-081-0/+1
| | | | | | | | TBR=tony Review URL: http://codereview.chromium.org/17434 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7769 0039d316-1c4b-4281-b951-d872f2087c98
* No idea why I deleted this line before. Reverts part of r7761 to fix ↵evan@chromium.org2009-01-081-0/+1
| | | | | | Windows layout tests. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7768 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit merge 39660:39711, part 2. Covers webkit/ changes.darin@chromium.org2009-01-0814-2390/+2446
| | | | | | | | R=ojan Review URL: http://codereview.chromium.org/17284 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7767 0039d316-1c4b-4281-b951-d872f2087c98
* Fix chrome deps by having browser depend on net_resources.tc@google.com2009-01-082-0/+2
| | | | | | | | TBR=deanm Review URL: http://codereview.chromium.org/17288 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7766 0039d316-1c4b-4281-b951-d872f2087c98
* Fix release build by including vsprops in the release config.tc@google.com2009-01-081-1/+1
| | | | | | | | TBR=rahulk Review URL: http://codereview.chromium.org/17432 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7764 0039d316-1c4b-4281-b951-d872f2087c98
* Remove net_resources.rc and net_resources.h and replace ittc@google.com2009-01-0826-60/+197
| | | | | | | | | | | | | | | | with a grd file that generates the same thing. We want to do this so on linux, we will have grit generate the .h file and a platform specific resource file. There's some munging going on to be able to get the effective_tld_names_clean.dat file included in the rc. This works in visual studio and scons. I need to update chrome_kjs.sln and the webkit*.sln files and the mac build before committing. Review URL: http://codereview.chromium.org/16565 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7762 0039d316-1c4b-4281-b951-d872f2087c98
* Depend on a Japanese font to pass a few more layout tests.evan@chromium.org2009-01-0810-22/+22
| | | | | | | Review URL: http://codereview.chromium.org/17282 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7761 0039d316-1c4b-4281-b951-d872f2087c98
* * Rebaseline for LayoutTests/editing/selection/5057506.htmlkuchhal@chromium.org2009-01-084-32/+32
| | | | | | | | The text differences came from webkit r38735 (enables selection of trailing whitespace for Chromium only) and Chromium r7157 (i think the windows results file got rebaselined from linux output). Review URL: http://codereview.chromium.org/17279 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7760 0039d316-1c4b-4281-b951-d872f2087c98
* Add chrome-user-script:// protocolaa@chromium.org2009-01-086-15/+53
| | | | | | | | | | | This is a step towards getting user scripts working in extensions. It's a bit janky to use the form chrome-user-script://<script file>/ (with no path), but GURL assumes that there is always a host, but path is optional, making this approach simpler than alternatives. Review URL: http://codereview.chromium.org/16592 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7759 0039d316-1c4b-4281-b951-d872f2087c98
* Move the vector canvas unit test data to the skia/ext directory. It wasn'tbrettw@chromium.org2009-01-0885-62/+36
| | | | | | | | | | | trivial to move the directory the way the test code was laid out (since we now add two levels) so I refactored it a bit to get rid of the base class (which wasn't actually used for anything useful). BUG=5016 Review URL: http://codereview.chromium.org/16550 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7756 0039d316-1c4b-4281-b951-d872f2087c98
* Add FTP unit test in preparation for portable FTP implementation.erikkay@google.com2009-01-0826-544/+1155
| | | | | | | | | | | | Clean up test server code. Originally from issue 12939, written by Ibrar Ahmed (ibrar.ahmed@gmail.com) (take 2) Review URL: http://codereview.chromium.org/17040 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7755 0039d316-1c4b-4281-b951-d872f2087c98
* More passing tests. Green Linux WebKit builder.evan@chromium.org2009-01-081-2/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7754 0039d316-1c4b-4281-b951-d872f2087c98
* Data pack file reader and unit test, used for resources on Linux.evan@chromium.org2009-01-086-0/+203
| | | | | | | | | See http://dev.chromium.org/developers/design-documents/linuxresourcesandlocalizedstrings for more details. Review URL: http://codereview.chromium.org/17253 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7751 0039d316-1c4b-4281-b951-d872f2087c98
* roll webkit deps to pull in shadows fixtc@google.com2009-01-081-1/+1
| | | | | | | | TBR=dglazkov Review URL: http://codereview.chromium.org/17274 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7750 0039d316-1c4b-4281-b951-d872f2087c98
* Fixup and verify URLs from the server before adding them to the autocomplete ↵pkasting@chromium.org2009-01-081-3/+9
| | | | | | | | | | dropdown. Original patch by Brian Duff, r=me (see http://codereview.chromium.org/16503 ), tweaked some. BUG=5806 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7747 0039d316-1c4b-4281-b951-d872f2087c98
* Don't show environment variables when running glue_prebuild.shmark@chromium.org2009-01-081-0/+1
| | | | | | Review URL: http://codereview.chromium.org/17425 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7746 0039d316-1c4b-4281-b951-d872f2087c98
* Significantly increase timeouts to reduce flakinessjar@google.com2009-01-081-8/+7
| | | | | | | | | | | | | | | | | Several tests now "plan for success" and will terminate rapidly if all goes well (and will hang if there really is a problem). One test I just upped by a factor of 5, hoping that I'll get a timem slice within a 5 second window, rather than assuming that I'll get one within a 1 second window. I could go further, but the test now takes over 5 seconds to run, which seems like a lot of time for a trivial test. bug=5723 r=maruel Review URL: http://codereview.chromium.org/16495 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7744 0039d316-1c4b-4281-b951-d872f2087c98
* Reduce the number of warnings in third party code.maruel@chromium.org2009-01-084-10/+88
| | | | | | Review URL: http://codereview.chromium.org/16584 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7743 0039d316-1c4b-4281-b951-d872f2087c98
* Re-enable ui test after WebKit merge which pulled the fix from upstream.dimich@google.com2009-01-081-3/+1
| | | | | | Review URL: http://codereview.chromium.org/17259 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7742 0039d316-1c4b-4281-b951-d872f2087c98
* Rename AffineTransformSkia to TransformationMatrixSkia, Chromium sidedglazkov@google.com2009-01-083-6/+6
| | | | | | | | R=eseidel Review URL: http://codereview.chromium.org/17421 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7740 0039d316-1c4b-4281-b951-d872f2087c98
* Move ColorSkia to ColorChromium (2/2)dglazkov@google.com2009-01-084-10/+10
| | | | | | Review URL: http://codereview.chromium.org/17419 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7738 0039d316-1c4b-4281-b951-d872f2087c98
* add files from http://codereview.chromium.org/17052pinkerton@google.com2009-01-081-4/+36
| | | | | | Review URL: http://codereview.chromium.org/17268 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7736 0039d316-1c4b-4281-b951-d872f2087c98
* fix bustage. add paths to test_shell_tests too.pinkerton@google.com2009-01-081-0/+2
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7734 0039d316-1c4b-4281-b951-d872f2087c98
* Replace stub bogus_webkit_strings.h with real generated header via gritpinkerton@google.com2009-01-086-52/+39
| | | | | | Review URL: http://codereview.chromium.org/17267 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7733 0039d316-1c4b-4281-b951-d872f2087c98
* check datestamps before blindly re-generating .hpinkerton@google.com2009-01-081-6/+18
| | | | | | Review URL: http://codereview.chromium.org/17265 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7731 0039d316-1c4b-4281-b951-d872f2087c98
* Update test list with information about a debug-mode crash.ager@google.com2009-01-081-1/+4
| | | | | | Review URL: http://codereview.chromium.org/17264 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7730 0039d316-1c4b-4281-b951-d872f2087c98
* - moved the defaults/prefs handling for settings during layout tests intothomasvl@chromium.org2009-01-081-56/+150
| | | | | | | | | | | functions so it's a little easier to follow. - added color sync profile mgmt during layout tests so more images will match. - added signal handlers (like webkit) to do our best to get the color profile reset if we crash. Review URL: http://codereview.chromium.org/17244 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7729 0039d316-1c4b-4281-b951-d872f2087c98
* Download into unique subdir of /tmp to avoid permission problems (e.g. root ↵dkegel@google.com2009-01-081-0/+12
| | | | | | | | | | not allowed to access nfs). Clean up carefully afterwards. Review URL: http://codereview.chromium.org/17415 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7728 0039d316-1c4b-4281-b951-d872f2087c98
* Fix broken browser_views on Windows.phajdan.jr@chromium.org2009-01-083-0/+3
| | | | | | | TBR=maruel, deanm Review URL: http://codereview.chromium.org/17417 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7727 0039d316-1c4b-4281-b951-d872f2087c98
* Fix test_shell window sizing on Linux after adding the menu bar.phajdan.jr@chromium.org2009-01-082-7/+10
| | | | | | Review URL: http://codereview.chromium.org/17413 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7726 0039d316-1c4b-4281-b951-d872f2087c98
* Porting in chrome/ (add 6 files to Linux SCons build)phajdan.jr@chromium.org2009-01-089-45/+74
| | | | | | Review URL: http://codereview.chromium.org/17052 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7725 0039d316-1c4b-4281-b951-d872f2087c98