summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Convert from line scrolling to pixel scrolling. Increase pixel scroll ↵pkasting@chromium.org2009-03-064-18/+26
| | | | | | | | | | | amount on Windows. See also https://bugs.webkit.org/show_bug.cgi?id=24407 . BUG=6172 Review URL: http://codereview.chromium.org/40241 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11151 0039d316-1c4b-4281-b951-d872f2087c98
* Add a product_name of 'chrome' on the non-Mac systems.sgk@google.com2009-03-061-0/+12
| | | | | | | | | | This adds a placeholder condition for building branded 'chrome.exe' vs. 'chromium.exe', which can be updated to build 'chromium.exe' by default whenever we update the infrastructure (buildbots, developer instructions, etc.) to use -Dbranding=Chrome. Review URL: http://codereview.chromium.org/40233 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11150 0039d316-1c4b-4281-b951-d872f2087c98
* In preparation for making changes to worker_pool_linux.cc.willchan@chromium.org2009-03-065-41/+41
| | | | | | Review URL: http://codereview.chromium.org/39081 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11149 0039d316-1c4b-4281-b951-d872f2087c98
* Pipeline_Impl was modified to properly render a stream that has video but no ↵ralphl@chromium.org2009-03-0611-215/+277
| | | | | | | | | | | audio. A unit test accompanies the change. Note that one minor other change was snuck in with this change. The data_source_impl.cc had a TODO to set a more specific error when a read failed. Because I was already updating the pipeline error enum, I added the error code, changed the call to host_->Error(), and removed the TODO. Review URL: http://codereview.chromium.org/39170 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11148 0039d316-1c4b-4281-b951-d872f2087c98
* Fix _ValidateLists to work when running in linting mode.ojan@google.com2009-03-063-8/+27
| | | | | | | | | | | | In linting mode we don't walk the tree to find the list of actual test files, so we don't know the full paths to files. We just use prefix matching to look for duplicate files. So when validating the two test lists in linting mode, we should also use prefix matching. Review URL: http://codereview.chromium.org/40151 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11147 0039d316-1c4b-4281-b951-d872f2087c98
* Adds a command line flag, --user-scripts-dir=..., to specify a directory to usemark@chromium.org2009-03-063-2/+13
| | | | | | | | | | | | in place of the default user scripts location. This eases development of userscripts since you can simply point the browser at your SCM checkout location instead of needing to try to sync things into your local userscripts directory. Code review URL: http://codereview.chromium.org/37011 Checking in for slightlyoff git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11146 0039d316-1c4b-4281-b951-d872f2087c98
* New disk cache eviction algorithm (partial implementation).rvargas@google.com2009-03-0613-110/+638
| | | | | | | | | | | | | | | | | | | | | | | | Disabled by a #def. When enabled, file format 2.1 is used, with a possible update from ver 2.0. If a version with this code disabled is run after the upgrade, it will just discard the file and go back to 2.0. We now put some of those extra list to use! Entries are separated into various lists depending on how often are used, and we keep track of previously evicted entries. If the new algorithm is not enabled, most of the code just goes through a different path (with the old code instead of the new one). One notable exception is OpenFollowingEntry, used to enumerate the entries on the cache; the code changed significantly to support the new version of the "cache iterator", but functionally should do the same as the current code. Review URL: http://codereview.chromium.org/27345 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11145 0039d316-1c4b-4281-b951-d872f2087c98
* Rebaseline text-overflow-ellipsis test on Linux.thestig@chromium.org2009-03-064-8/+53
| | | | | | | The fonts are slightly different under Linux as well. (see issue 21189) Review URL: http://codereview.chromium.org/40191 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11144 0039d316-1c4b-4281-b951-d872f2087c98
* Update the mac config to properly match the sources.thomasvl@chromium.org2009-03-062-6/+7
| | | | | | Review URL: http://codereview.chromium.org/40227 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11143 0039d316-1c4b-4281-b951-d872f2087c98
* fixes for python 2.6 warnings in the testserver.thomasvl@chromium.org2009-03-061-7/+13
| | | | | | | BUG=8300 Review URL: http://codereview.chromium.org/40235 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11142 0039d316-1c4b-4281-b951-d872f2087c98
* Fix renderer hang that occurs when a RenderWidget with outstanding ↵jam@chromium.org2009-03-062-0/+10
| | | | | | | | | synchronous XHR requests is closed. Currently we cancel all the pending URLRequestJobs, however at that point it doesn't have a pointer to get to the SyncResourceHandler object. BUG=1575301 Review URL: http://codereview.chromium.org/39246 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11141 0039d316-1c4b-4281-b951-d872f2087c98
* Mark DigiNotar Root CA as EV.wtc@chromium.org2009-03-061-0/+7
| | | | | | | | R=ian BUG=7527 Review URL: http://codereview.chromium.org/40200 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11140 0039d316-1c4b-4281-b951-d872f2087c98
* I verified that the Visual C++ 2005 bug has been fixed inwtc@chromium.org2009-03-061-1/+1
| | | | | | | | | | Visual C++ 2008, so limit our workaround to Visual C++ 2005. R=eroman BUG=4387 Review URL: http://codereview.chromium.org/39225 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11139 0039d316-1c4b-4281-b951-d872f2087c98
* Added a test for testing standalone installer.anantha@chromium.org2009-03-065-34/+179
| | | | | | | | Automated the steps listed at: https://sites.google.com/a/google.com/chrome-pmo/standalone-installers/testing-standalone-installers Review URL: http://codereview.chromium.org/39150 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11138 0039d316-1c4b-4281-b951-d872f2087c98
* Reland r11118.darin@chromium.org2009-03-0612-187/+86
| | | | | | | | TBR=dglazkov Review URL: http://codereview.chromium.org/40240 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11137 0039d316-1c4b-4281-b951-d872f2087c98
* Rebaseline transform-absolute-in-positioned-container.levin@chromium.org2009-03-064-4/+4
| | | | | | | | | A rectangle on the lower left became smaller in width, and this new result better matches what nightly webkit produces. Review URL: http://codereview.chromium.org/40208 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11135 0039d316-1c4b-4281-b951-d872f2087c98
* Trying to match more closely DumpRenderTree to pass the layout test: ↵jcampan@chromium.org2009-03-062-3/+16
| | | | | | | | | | | | LayoutTests/fast/loader/null-request-after-willSendRequest.html See http://trac.webkit.org/browser/trunk/WebKitTools/DumpRenderTree/mac/ResourceLoadDelegate.mm willSendRequest method which is the code I duplicated. BUG=None TEST=layout test LayoutTests/fast/loader/null-request-after-willSendRequest.html Review URL: http://codereview.chromium.org/39232 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11134 0039d316-1c4b-4281-b951-d872f2087c98
* Fix event handling problem in WorkerContext caused by r10987.jianli@chromium.org2009-03-062-8/+21
| | | | | | Review URL: http://codereview.chromium.org/39217 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11133 0039d316-1c4b-4281-b951-d872f2087c98
* Test to see if we can reduce some crashes by deferring delegate destruction ↵ben@chromium.org2009-03-0628-34/+38
| | | | | | | | until WM_NCDESTROY. This involves adding a specific method to allow delegates to destroy themselves to WindowDelegate, and moving all delete this calls into implementations of that method (to allow delegates to still respond to WM_DESTROY which is legit). Review URL: http://codereview.chromium.org/40192 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11132 0039d316-1c4b-4281-b951-d872f2087c98
* Use common name for icns file to avoid case sensitivity issues withjrg@chromium.org2009-03-063-3/+3
| | | | | | | | | | | | | | | the filesystem and avoid the need for processing of Info.plist. Dup of svn log since rietveld doesn't like A+D: A + chrome/app/theme/chromium/app.icns D chrome/app/theme/chromium/chromium.icns M chrome/app/app-Info.plist M chrome/chrome.gyp Review URL: http://codereview.chromium.org/40238 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11131 0039d316-1c4b-4281-b951-d872f2087c98
* roll DEPS to pick up WebKit@11128darin@chromium.org2009-03-061-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11129 0039d316-1c4b-4281-b951-d872f2087c98
* Roll DEPS.mbelshe@google.com2009-03-061-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11127 0039d316-1c4b-4281-b951-d872f2087c98
* Revert r11118 :(darin@chromium.org2009-03-0612-86/+187
| | | | | | | | TBR=dglazkov Review URL: http://codereview.chromium.org/39267 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11125 0039d316-1c4b-4281-b951-d872f2087c98
* Rename "ReadOnly" attribute to "v8ReadOnly".mbelshe@google.com2009-03-062-9/+9
| | | | | | | | | | | | | | | | Although this attribute is fairly self-describing, it is difficult to look at IDL and know what is V8 specific. Since this is something that we added, having it marked as such greatly helps when reviewing. Also rename: v8OnInstance -> V8OnInstance v8DisallowShadowing -> V8DisallowShadowing v8DoNotCheckSignature -> V8DoNotCheckSignature Review URL: http://codereview.chromium.org/39263 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11123 0039d316-1c4b-4281-b951-d872f2087c98
* WorkerWebKitClientImpl snuck up on me. arggh!darin@chromium.org2009-03-062-0/+11
| | | | | | | | | | | This implementation is similar to the one we have TestShell, which is to say that we don't support visited links in the Worker process. TBR=dglazkov Review URL: http://codereview.chromium.org/40230 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11121 0039d316-1c4b-4281-b951-d872f2087c98
* roll DEPS to pick up latest WebKitdarin@chromium.org2009-03-061-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11120 0039d316-1c4b-4281-b951-d872f2087c98
* More WebKit API action (chromium side)darin@chromium.org2009-03-0610-187/+75
| | | | | | | | R=dglazkov Review URL: http://codereview.chromium.org/39240 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11118 0039d316-1c4b-4281-b951-d872f2087c98
* Rebase a test that had been fixed already on windows.pinkerton@chromium.org2009-03-062-14/+21
| | | | | | Review URL: http://codereview.chromium.org/39261 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11116 0039d316-1c4b-4281-b951-d872f2087c98
* Get rid of IDL attribute "DontDelete". It is only used for ↵mbelshe@google.com2009-03-061-1/+1
| | | | | | | | | | "v8DisallowShadowing", so fold into that. Also, it causes confusion when comparing to JSC's "Deletable" attribute. Review URL: http://codereview.chromium.org/40210 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11113 0039d316-1c4b-4281-b951-d872f2087c98
* Rebase tests to match our network layer, not CFNetworkpinkerton@chromium.org2009-03-063-5/+11
| | | | | | Review URL: http://codereview.chromium.org/40223 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11112 0039d316-1c4b-4281-b951-d872f2087c98
* Pick up a newer gtm (w/ theme and color additions we'll need for ui)thomasvl@chromium.org2009-03-061-1/+1
| | | | | | Review URL: http://codereview.chromium.org/39255 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11111 0039d316-1c4b-4281-b951-d872f2087c98
* Mac rebases from adam's change (r11100).thomasvl@chromium.org2009-03-0619-16/+342
| | | | | | Review URL: http://codereview.chromium.org/39260 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11110 0039d316-1c4b-4281-b951-d872f2087c98
* - Developer tools frontend is served from chrom-ui://devtools/tools.htmlyurys@google.com2009-03-064-3/+20
| | | | | | | | | - Serve Web Inspector JS files from chrom-ui://devtools/ domain in addition to chrom-ui://inspector/. We cannot simply reuse "inspector" domain for now as we need different tab content types for console debugger and new developer tools front-end. When developer tools support all console debugger and web inspector features we will remove "inspector" domain from the source list. Review URL: http://codereview.chromium.org/40222 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11109 0039d316-1c4b-4281-b951-d872f2087c98
* Rebaseline a Linux pixel test after r11100.deanm@chromium.org2009-03-062-1/+1
| | | | | | | | | The expected text dump is the same as (and shared with) Windows. This updates the pixel results. Review URL: http://codereview.chromium.org/39254 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11108 0039d316-1c4b-4281-b951-d872f2087c98
* Change the presubmit unittest with no code change. This is to trigger a test ↵nsylvain@chromium.org2009-03-061-4/+4
| | | | | | build git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11107 0039d316-1c4b-4281-b951-d872f2087c98
* fast/clip/nestedTransparencyClip.html has not failed for over 20ager@chromium.org2009-03-061-4/+0
| | | | | | | | | | | | | | builds on the buildbot and consistently passes on my local Linux build. Remove it from the test list so we will catch it if it starts failing again. TBR=pam BUG=8442 Review URL: http://codereview.chromium.org/39250 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11106 0039d316-1c4b-4281-b951-d872f2087c98
* Cleanup in {test_,}file_util_posix.ccphajdan.jr@chromium.org2009-03-062-6/+10
| | | | | | | | | | - DCHECK_EQ instead of DCHECK(foo == bar) - more detailed log error messages - add a comment why we use 0777 permissions for new dirs (umask should produce sane permissions) Review URL: http://codereview.chromium.org/40162 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11105 0039d316-1c4b-4281-b951-d872f2087c98
* Reverting 11102.phajdan.jr@chromium.org2009-03-062-10/+6
| | | | | | | | | | Used git svn dcommit instead of git cl dcommit by mistake. Reverting to re-commit properly. TBR=erikkay Review URL: http://codereview.chromium.org/40213 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11104 0039d316-1c4b-4281-b951-d872f2087c98
* Make CrashAwareSleep more accurate on POSIX (checking if the process exists).phajdan.jr@chromium.org2009-03-061-8/+20
| | | | | | Review URL: http://codereview.chromium.org/39185 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11103 0039d316-1c4b-4281-b951-d872f2087c98
* first cutphajdan.jr@chromium.org2009-03-062-6/+10
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11102 0039d316-1c4b-4281-b951-d872f2087c98
* Adding missing baselines for 11100abarth@chromium.org2009-03-064-0/+22
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11101 0039d316-1c4b-4281-b951-d872f2087c98
* Don't let file:// URLs script Web URLs.abarth@chromium.org2009-03-0614-21/+249
| | | | | | | | BUG=7986 R=finnur Review URL: http://codereview.chromium.org/39141 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11100 0039d316-1c4b-4281-b951-d872f2087c98
* Update DEPS to pull V8 from V8 trunk. There was an accidental updateager@chromium.org2009-03-061-1/+1
| | | | | | | | | of DEPS to pull from bleeding_edge. TBR=christian.plesner.hansen@gmail.com Review URL: http://codereview.chromium.org/40212 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11099 0039d316-1c4b-4281-b951-d872f2087c98
* Forgot some entries.evan@chromium.org2009-03-061-2/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11098 0039d316-1c4b-4281-b951-d872f2087c98
* Fix a bunch of Linux baselines.evan@chromium.org2009-03-0653-39/+434
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11097 0039d316-1c4b-4281-b951-d872f2087c98
* Another attempt to rebaseline rtl-ordering.htmldimich@google.com2009-03-064-12/+10
| | | | | | | | Previous was bad because I've played with the test itself and forgot to revert it before producing new baseline. Review URL: http://codereview.chromium.org/39244 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11095 0039d316-1c4b-4281-b951-d872f2087c98
* Add transform/3d to the ignore list since this feature is a work in progress ↵ben@chromium.org2009-03-061-0/+6
| | | | | | | | (according to smfr over at WebKit) and they don't even run these tests themselves on their buildbots. Review URL: http://codereview.chromium.org/37010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11094 0039d316-1c4b-4281-b951-d872f2087c98
* Don't run unload tests that hang the renderer in single-process mode, since ↵jam@chromium.org2009-03-061-0/+16
| | | | | | | | now the browser thread waits for the renderer thread on shutdown. Review URL: http://codereview.chromium.org/39245 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11093 0039d316-1c4b-4281-b951-d872f2087c98
* Rename browser_toolbar_view_gtk.{h,cc} to browser_toolbar_gtk.{h,cc}estade@chromium.org2009-03-064-6/+6
| | | | | | Review URL: http://codereview.chromium.org/39237 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11092 0039d316-1c4b-4281-b951-d872f2087c98
* Cast size_t to int for comparison with ReadFile return value.fbarchard@chromium.org2009-03-061-6/+8
| | | | | | | | | What gcc compile option checks sign on equality? I'd like to test this, even if try server does not. TBR=hclam Review URL: http://codereview.chromium.org/38008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11091 0039d316-1c4b-4281-b951-d872f2087c98