summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Update Copyright text in SCons config files.sgk@google.com2008-09-0163-1924/+411
| | | | | | TBR: beng git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1607 0039d316-1c4b-4281-b951-d872f2087c98
* Revert v8 update since it caused regressions.ager@google.com2008-09-011-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1606 0039d316-1c4b-4281-b951-d872f2087c98
* Attempting to figure out which V8 revision caused selenium testager@google.com2008-09-011-1/+1
| | | | | | | | regressions and distributed reliability test failures. Switch to last tested bleeding edge version. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1605 0039d316-1c4b-4281-b951-d872f2087c98
* Update v8 version to fix debugger tests. The shell sample now acceptsager@google.com2008-09-011-1/+1
| | | | | | | flags directly from the command line as expected by the debugger tests. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1604 0039d316-1c4b-4281-b951-d872f2087c98
* Disable the "Complex" Script because it fails.nsylvain@google.com2008-08-311-1/+2
| | | | | | | | BUG:1353559 TBR:maruel git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1603 0039d316-1c4b-4281-b951-d872f2087c98
* Remove fonts from svn:ignore.maruel@google.com2008-08-310-0/+0
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1602 0039d316-1c4b-4281-b951-d872f2087c98
* Change SafeBrowsing client name for Chromium.BUG=1296800rahulk@google.com2008-08-312-4/+11
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1601 0039d316-1c4b-4281-b951-d872f2087c98
* Some more changes so that Chromium and Google Chrome do not clash with each ↵rahulk@google.com2008-08-315-7/+18
| | | | | | | | | other while running at the same time. BUG=1296800 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1600 0039d316-1c4b-4281-b951-d872f2087c98
* Put version.dll back into chrome.exe's deps after not paying close enoughpamg@google.com2008-08-311-0/+1
| | | | | | | | | | | attention to the format of the file. TBR=rahulk BUG=none TEST=covered by buildbots git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1596 0039d316-1c4b-4281-b951-d872f2087c98
* Change DEPS to pull V8 from Google Code rather than an internal repository.pamg@google.com2008-08-301-1/+1
| | | | | | | | | This is necessary so external contributors (and buildbots) can build too. BUG=1296800 TEST=covered by buldbots git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1591 0039d316-1c4b-4281-b951-d872f2087c98
* Add version.dll as an expected dependency for chrome.exe again, now thatpamg@google.com2008-08-301-1/+1
| | | | | | | | | breakpad is back in. BUG=none TEST=none (covered by buildbots) git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1590 0039d316-1c4b-4281-b951-d872f2087c98
* By default, use DLL dependencies for Chromium rather than for Google Chrome.pamg@google.com2008-08-301-3/+4
| | | | | | | | | (It's controlled by an environment variable.) BUG=1296800 TEST=covered by buildbots git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1589 0039d316-1c4b-4281-b951-d872f2087c98
* Switch to building Chromium rather than Google Chrome by default.pamg@google.com2008-08-306-14/+3
| | | | | | | | | | | The official builder will need the CHROMIUM_BUILD environment variable set to "_google_chrome". Same as Rietveld issue 2943, approved by nsylvain and rahulk, but in the writeable repository rather than the read-only one. BUG=1296800 TEST=covered by buildbots git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1588 0039d316-1c4b-4281-b951-d872f2087c98
* Move SQLite from src/chrome/third_party to src/third_partyaa@google.com2008-08-3080-8/+10
| | | | | | | since it will be shared with WebCore and Gears in the future. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1586 0039d316-1c4b-4281-b951-d872f2087c98
* fix ui testsdarin@google.com2008-08-301-1/+0
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1584 0039d316-1c4b-4281-b951-d872f2087c98
* Remove assertion in Timer() because it was too aggressive. Instead, we need todarin@google.com2008-08-301-2/+5
| | | | | | | | | just treat a negative delay as a zero delay. TBR=mbelshe git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1582 0039d316-1c4b-4281-b951-d872f2087c98
* fix mac builddarin@google.com2008-08-301-2/+2
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1581 0039d316-1c4b-4281-b951-d872f2087c98
* A better fix for the hang observed while running net_unittests on vista. Thisdarin@google.com2008-08-301-8/+10
| | | | | | | | | | | fix avoids a crash as well by not calling ProcessPumpReplacementMessage. Instead, we just reset the have_work_ flag. TBR=rvargas,jar BUG=1351146 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1580 0039d316-1c4b-4281-b951-d872f2087c98
* Switch SharedTimerWin over to using PostDelayedTask. I made some tweaks to thedarin@google.com2008-08-309-89/+84
| | | | | | | | | | | | | PostDelayedTask implementation to ensure that perf is still good. This involved recording the intended fire time of PostDelayedTask on the Task object so that it can be used to properly determine the delay passed to the StartTimer call. With this change, I am able to service timers (call DoDelayedWork) more often from within the MessagePump implementations. R=mbelshe BUG=1346553 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1578 0039d316-1c4b-4281-b951-d872f2087c98
* Disable the constrained popup window title checking test.erg@google.com2008-08-301-2/+1
| | | | | | TBR=sky git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1577 0039d316-1c4b-4281-b951-d872f2087c98
* Fix the order when setting the last error code. On XP, it was reset by the ↵maruel@google.com2008-08-301-2/+3
| | | | | | | | GetProcAddress() call. TBR=nsylvain git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1576 0039d316-1c4b-4281-b951-d872f2087c98
* Initialize Breakpad for Chromium as well.rahulk@google.com2008-08-294-14/+32
| | | | | | | BU=1296800 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1572 0039d316-1c4b-4281-b951-d872f2087c98
* Do not put version info in patch archive file name. It is not useful as user ↵rahulk@google.com2008-08-291-4/+1
| | | | | | | | | do not ever get to see this file and it will make the signing of executables process more complex. BUG=1179486 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1571 0039d316-1c4b-4281-b951-d872f2087c98
* TBR: turns out I need to initialize UErrorCode before passing to ↵dglazkov@google.com2008-08-291-1/+1
| | | | | | uscript_getScript. Thanks, Purify (and erikkay!) git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1570 0039d316-1c4b-4281-b951-d872f2087c98
* Fix the mac build.rvargas@google.com2008-08-291-0/+2
| | | | | | | | TBR=pamg git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1568 0039d316-1c4b-4281-b951-d872f2087c98
* On line 138 of protocol_manager.cc we were converting a std::stringifette@google.com2008-08-291-1/+1
| | | | | | | | | | to a char*. The string could contain null bytes, which led to data loss and failures in safebrowsing. R=wtc BUG=1352561 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1565 0039d316-1c4b-4281-b951-d872f2087c98
* Implement the 11th hour Google Chrome Beta behaviour for constrainederg@google.com2008-08-291-46/+36
| | | | | | | | | | | | | popup windwos: - Pull out the favicon - Manually check the current locale; if it's an english one then display the string "Popup Blocked", otherwise use just the popup's title (without the product name suffixed to it). BUG=1085485 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1564 0039d316-1c4b-4281-b951-d872f2087c98
* Make the user data directory configurable from the cmdlinembelshe@google.com2008-08-291-7/+12
| | | | | | | for the memory tests. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1559 0039d316-1c4b-4281-b951-d872f2087c98
* Temporarily moved Font::isCJKCodePoint back to SimpleFontData::isCJKCodePointdglazkov@google.com2008-08-294-14/+18
| | | | | | | TBR git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1558 0039d316-1c4b-4281-b951-d872f2087c98
* Makes sure that debug-only layout test failures are not to the ZERO WIDTH ↵dglazkov@google.com2008-08-299-86/+168
| | | | | | | | | | | SPACE mapping to SPACE glyph complaints (http://b/1317563), fixes a layout test (fast/text/zero-width-characters.html), and provides an updated patch for WebKit.org bug 20237 (https://bugs.webkit.org/show_bug.cgi?id=20237). This change brings handling of the ZWS and CJK character widths down to the level of SimpleFontData by creating special (sub-classed) SimpleFontData objects that are used in GlyphData. These instances are created when the glyph cache is being filled (GlyphPage::fill). More better things are possible, but at the moment I thought it might be good to just get the basics right. Also, a couple of the layout tests are brought back to pre-font-metric-hacks removal versions. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1557 0039d316-1c4b-4281-b951-d872f2087c98
* Fixing the comment that was not included with the last cl.rvargas@google.com2008-08-291-0/+5
| | | | | | | TBR=darin git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1554 0039d316-1c4b-4281-b951-d872f2087c98
* Add another disk cache performance test.rvargas@google.com2008-08-291-0/+45
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1553 0039d316-1c4b-4281-b951-d872f2087c98
* Disk cache: Split deleting old entries from the cache into small chunks that ↵rvargas@google.com2008-08-292-3/+13
| | | | | | | | | | | | run through the message loop to improve responsiveness of the io thread. BUG=1345851 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1552 0039d316-1c4b-4281-b951-d872f2087c98
* This file should have been removed awhile ago when weaa@google.com2008-08-291-145/+0
| | | | | | | | | | | | | | upgraded SQLite. Removing now because WebCore will soon need sqlite in the include path and this file will then conflict with std::limits. See also: http://www.sqlite.org/cvstrac/chngview?cn=4091 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1551 0039d316-1c4b-4281-b951-d872f2087c98
* Fix the unit test when run from a MUI-Aware Vista installation and the ↵maruel@google.com2008-08-291-12/+36
| | | | | | current UI language is not the same as the installation language. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1549 0039d316-1c4b-4281-b951-d872f2087c98
* Exe/Dlls dependencies can be different between Chromium/Google Chrome. Add ↵rahulk@google.com2008-08-292-5/+35
| | | | | | | | | | | support for distribution specific dependencies in depedency checker. BUG=1296800 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1548 0039d316-1c4b-4281-b951-d872f2087c98
* Adds a logging level command line switchcpu@google.com2008-08-295-4/+24
| | | | | | | | - Adds --log-level=n with n=0,1,2,3 - Increases the default logging level from INFO to WARNING there is way too much noise there. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1547 0039d316-1c4b-4281-b951-d872f2087c98
* Modifies the query parser to provide the position of the match in thesky@google.com2008-08-299-44/+145
| | | | | | | | | | | | title. I'm going to use this in the omnibox. There are a couple of other random spelling errors I came across that are included for your review pleasure. BUG=1256202 TEST=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1546 0039d316-1c4b-4281-b951-d872f2087c98
* Makes the HistoryContentsProvider query bookmark titles. I nuked asky@google.com2008-08-295-64/+179
| | | | | | | | | | | couple of fields that I felt were redundant. I'm pretty sure I got the same logic, but you better stare at this to convince yourself. BUG=1256202 TEST=covered by unit tests git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1545 0039d316-1c4b-4281-b951-d872f2087c98
* Fix net_unittests hang observed on Vista. It turns out that a subpump wasdarin@google.com2008-08-292-16/+6
| | | | | | | | | | | | | | | | | being run within shell32, which was causing our kHaveWorkMsg to get dispatched. However, because that was occuring outside the context of a MessagePump::Run call, the handler for kHaveWorkMsg was returning early. Unfortunately, this means that it was failing to reset the have_work_ sentinel to 0. Because of that future calls to ScheduleWork would always be a no-op (as they return early when have_work_ is already set to 1). The proper fix is to just re-order the calls so that ProcessPumpReplacementMessage always runs in response to kHaveWorkMsg, but we still suppress calling DoWork until we are inside MessagePump::Run. TBR=rvargas,jar git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1544 0039d316-1c4b-4281-b951-d872f2087c98
* Fix two tests that expected en-US locale and were failing otherwise.maruel@google.com2008-08-292-4/+19
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1543 0039d316-1c4b-4281-b951-d872f2087c98
* Build against the system-provided NSS for SSL support.mmoss@google.com2008-08-291-4/+6
| | | | | | BUG=1343206 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1542 0039d316-1c4b-4281-b951-d872f2087c98
* Update chrome strings.tc@google.com2008-08-294-15/+15
| | | | | | TBR=mal git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1541 0039d316-1c4b-4281-b951-d872f2087c98
* Hack to keep vista net_unittests from hanging while I investigate a proper fix.darin@google.com2008-08-291-0/+11
| | | | | | | TBR=rvargas git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1540 0039d316-1c4b-4281-b951-d872f2087c98
* Have grit only try to output errors in ascii (replace chars > 127 withtc@google.com2008-08-291-1/+2
| | | | | | | | ?). Helps the scons build work. BUG=1350947 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1539 0039d316-1c4b-4281-b951-d872f2087c98
* Fixes bug where it was possible for tab to get the wrong title. Camesky@google.com2008-08-292-9/+47
| | | | | | | | | | | | across this in investigating another problem. BUG=1307747 TEST=Create > 3 tabs. In the last one open the html file attached to 1305707. Click on the button. Rapidly drag the first tab in and out of the tab strip and make sure none of the remaining tabs get the wrong title. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1538 0039d316-1c4b-4281-b951-d872f2087c98
* A few changes to the channel changer:finnur@google.com2008-08-295-4/+4
| | | | | | | | | Replaced the incognito glasses with the new Chrome logo. Also changed the application icon to the Chrome app icon. Changed the project settings to statically link with the CRT to avoid side-by-side errors on Vista. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1537 0039d316-1c4b-4281-b951-d872f2087c98
* a couple more minor tweaks, rs=mmentovaipinkerton@google.com2008-08-291-11/+11
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1535 0039d316-1c4b-4281-b951-d872f2087c98
* Remove KJS targets/bindings and V8 target that didn't use Chromium's ↵pinkerton@google.com2008-08-291-17440/+120
| | | | | | resource loaders. We're removing the training wheels, it's net/ or nothing! git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1534 0039d316-1c4b-4281-b951-d872f2087c98
* Fix disabled debugger project in JSC.pamg@google.com2008-08-291-0/+1
| | | | | | | | | TBR=sgjesse BUG=none TEST=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1533 0039d316-1c4b-4281-b951-d872f2087c98