summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Patch by antomn@chromium.orgnsylvain@chromium.org2009-10-151-8/+13
| | | | | | | | | | | Description: Massage test names into allowed set of characteres. Luckily currently massaged names are still unique. Review URL: http://codereview.chromium.org/269096 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29158 0039d316-1c4b-4281-b951-d872f2087c98
* net: Add another unit test.rvargas@google.com2009-10-151-0/+7
| | | | | | | | | | | I forgot to add a test case that was failing before r29035 BUG=b/2071330 TEST=unittests Review URL: http://codereview.chromium.org/281004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29157 0039d316-1c4b-4281-b951-d872f2087c98
* Default to using system background, text, and link colors on the NTP instead ↵pkasting@chromium.org2009-10-151-0/+10
| | | | | | | | | | of white, black, and blue (respectively). BUG=22967 TEST=Change system theme, start Chrome w/no theme, observe the NTP respects the system colors. Review URL: http://codereview.chromium.org/273043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29155 0039d316-1c4b-4281-b951-d872f2087c98
* Remove incorrect expectations for fast/events/mouse-click-events and update ↵japhet@chromium.org2009-10-152-32/+1
| | | | | | | | | | | | | bug number. This should also allow linux to pass this test, since the failure appears to be win-specific. BUG=24904 BUG=10353 TEST=no new redness Review URL: http://codereview.chromium.org/281003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29153 0039d316-1c4b-4281-b951-d872f2087c98
* Extensions: Make badge drawing code cross platform so linux (and eventually ↵estade@chromium.org2009-10-156-36/+167
| | | | | | | | | | | | | mac) can use it. I will switch Windows over to the common function in a follow-up patch. BUG=23882 TEST=gmail browser action sample extension Review URL: http://codereview.chromium.org/279008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29152 0039d316-1c4b-4281-b951-d872f2087c98
* Adding hard_dependency to cg_libs, to make sure the copy happens before thebradnelson@google.com2009-10-151-0/+1
| | | | | | | | | | | | | link stage. BUG=None TEST=None TBR=gspencer Review URL: http://codereview.chromium.org/273067 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29151 0039d316-1c4b-4281-b951-d872f2087c98
* The ParseFeed test was testing too much in one test, hitting the overall ↵finnur@chromium.org2009-10-152-31/+60
| | | | | | | | | | | | | limit for a single browser test. I have therefore split it into three and added a more descriptive error message for when we time out. I will remove the traces and the FLAKY_ label after a successful run or two on the bots. BUG=23686 TEST=Tested by automated test. Review URL: http://codereview.chromium.org/274066 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29149 0039d316-1c4b-4281-b951-d872f2087c98
* Update search state when search text is updated through find pasteboard.thakis@chromium.org2009-10-152-4/+34
| | | | | | | | | | | | BUG=none TEST= *Search for something. Switch to textedit, search for something else. Switch back to chrome. The outdated "x of y" text should be invisble in the find bar, but the prev/next find result buttons should be enabled. Hit enter. Pages should be searched, "x of y " text should return. * Open a findbar, search for something. Open new chrome window, hit cmd-f. findbar in new window should contain the text you searched for in the last window. Review URL: http://codereview.chromium.org/267022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29146 0039d316-1c4b-4281-b951-d872f2087c98
* Add a ui test to verify that using the typical_history profiletony@chromium.org2009-10-152-0/+49
| | | | | | | | | | | | results in thumbnails. I could have added this directly to the new tab startup tests, but that would mean turning on DOM automation for the new tab tests. I was trying to avoid the extra code in the new tab startup tests. Review URL: http://codereview.chromium.org/269060 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29145 0039d316-1c4b-4281-b951-d872f2087c98
* Adds some debugging code in hopes of isolating a crasher. From thesky@chromium.org2009-10-152-1/+32
| | | | | | | | | | | | crash it appears that we're starting a drag for an index beyond that of the model. BUG=24132 TEST=none Review URL: http://codereview.chromium.org/275023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29144 0039d316-1c4b-4281-b951-d872f2087c98
* Fix bug: browser action button disappears when loading a new extension. This ↵sidchat@chromium.org2009-10-151-0/+10
| | | | | | | | | | was happenening because BrowserActionContainer, on receiving notification about an extension load/unload/change, deletes all BrowserAction views, re-adds all the views again, and asks the toolbar to SetBounds for the BrowserActionContainer. However, during deletion, it does not re-set the bounds. As a result, when SetBounds is called by the toolbar again, it does not see any changed in BrowserActionContainer, and does not layout again, causing all the browser actions to disappear. The solution lies in forcing Layout() after SetBounds() in ToolbarView. BUG=23593 TEST=none Review URL: http://codereview.chromium.org/276033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29143 0039d316-1c4b-4281-b951-d872f2087c98
* Fix plugin lookup order on the Macstuartmorgan@chromium.org2009-10-151-1/+1
| | | | | | | | | BUG=24902 TEST=Go to about:plugins, and verify that plugins in ~/Library/Internet Plug-Ins come before those in /Library/Internet Plug-Ins Review URL: http://codereview.chromium.org/276045 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29142 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress a benign data race inside PCMQueueOutAudioOutputStream::Stoptimurrrr@chromium.org2009-10-151-2/+15
| | | | | | | | | The race is known but is not very severe and cannot be easily fixed using locks due to the complexity of the third-party audio code. BUG=24801 Review URL: http://codereview.chromium.org/282001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29141 0039d316-1c4b-4281-b951-d872f2087c98
* webkit roll 49583:49597yaar@chromium.org2009-10-153-4/+10
| | | | | | Review URL: http://codereview.chromium.org/274062 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29140 0039d316-1c4b-4281-b951-d872f2087c98
* Fix tab dragging when windows overlap. Bring window to front when dragging a ↵pinkerton@chromium.org2009-10-151-7/+14
| | | | | | | | | | tab into it (allowing drags to window whose tab strip is fully obscured). BUG=22283 TEST=all tab dragging between windows. Review URL: http://codereview.chromium.org/281001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29139 0039d316-1c4b-4281-b951-d872f2087c98
* Hook up "Bookmark All Tabs" on Mac as menu item in Bookmarks menu and tab ↵pinkerton@chromium.org2009-10-155-675/+199
| | | | | | | | | | context menu. Fix a typo in the grd file for adding a bookmark. BUG=24363 TEST=bookmark all tabs, edit dialog still dims OK when url is invalid for bookmarks that aren't folders. Review URL: http://codereview.chromium.org/269080 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29138 0039d316-1c4b-4281-b951-d872f2087c98
* [Mac] Bring the correct window to the front when calling ↵rohitrao@chromium.org2009-10-154-1/+36
| | | | | | | | | | BrowserWindow::Activate(). Before this would ignore the existence of fullscreen windows. BUG=http://crbug.com/21145 TEST=Trigger a javascript alert dialog. The original non-fullscreen window should not appear. Review URL: http://codereview.chromium.org/274060 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29137 0039d316-1c4b-4281-b951-d872f2087c98
* Final patch to convert disk cache to using FilePath instead oftony@chromium.org2009-10-1512-124/+98
| | | | | | | | | | | wstring. After this patch, I'm able to start chrome in a user data dir with non-ascii characters on non-utf8 systems. BUG=24444 Review URL: http://codereview.chromium.org/267085 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29136 0039d316-1c4b-4281-b951-d872f2087c98
* Create BlacklistManager, which will aggregate individual blacklists into one ↵phajdan.jr@chromium.org2009-10-159-0/+589
| | | | | | | | | | | | | | | | | compiled one and maintain it. This is the first step towards shipping privacy blacklists in extensions. The next step will be to make Profile own a BlacklistManager, and make ExtensionsService a BlacklistPathsProvider. TEST=Covered by unit_tests. BUG=21541 Review URL: http://codereview.chromium.org/164535 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29135 0039d316-1c4b-4281-b951-d872f2087c98
* Fix pieces of syncapi that aren't implemented on Linux.zork@chromium.org2009-10-1511-30/+280
| | | | | | Review URL: http://codereview.chromium.org/242141 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29134 0039d316-1c4b-4281-b951-d872f2087c98
* Rebaseline layout tests from webkit roll 49583victorw@chromium.org2009-10-1540-394/+391
| | | | | | | | | | TBR=dglazkov BUG=24851,24852,24855,24856 TEST=none Review URL: http://codereview.chromium.org/271103 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29133 0039d316-1c4b-4281-b951-d872f2087c98
* Oops, dom_storage_dispatcher_host.h got left out of the change, and I ↵pkasting@chromium.org2009-10-152-15/+1
| | | | | | | | | | | introduced a typo when converting CreateWebStorageNamespaceIfNecessary to use a conditional. BUG=23400 TEST=none TBR=jorlow Review URL: http://codereview.chromium.org/282005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29131 0039d316-1c4b-4281-b951-d872f2087c98
* Add the ability to purge memory to LocalStorage. This deletes the ↵pkasting@chromium.org2009-10-159-54/+195
| | | | | | | | | | underlying WebCore objects that manage the sqlite DB, causing its memory caches to be eliminated, and then recreates the objects on demand. BUG=23400 TEST=none Review URL: http://codereview.chromium.org/264062 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29130 0039d316-1c4b-4281-b951-d872f2087c98
* Don't call AuthOrigin(target) multiple times inwtc@chromium.org2009-10-152-16/+22
| | | | | | | | | | | | | | | HandleAuthChallenge. Add a "const GURL& auth_origin" parameter to PopulateAuthChallenge, InvalidateRejectedAuthFromCache, and SelectNextAuthIdentityToTry to eliminate the AuthOrigin(target) calls in those three functions. R=eroman BUG=22264 TEST=none Review URL: http://codereview.chromium.org/277005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29129 0039d316-1c4b-4281-b951-d872f2087c98
* Update unit tests to honor the concept that an ok: call makes thejrg@chromium.org2009-10-151-55/+70
| | | | | | | | | BookmarkEditorController invalid for subsequent bookmark manipulation (e.g. it can and does do a remove/add instead of an in-place edit). Review URL: http://codereview.chromium.org/274039 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29128 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: restore accidentally deleted if blockyurys@google.com2009-10-151-0/+10
| | | | | | | TBR=apavlov Review URL: http://codereview.chromium.org/274065 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29127 0039d316-1c4b-4281-b951-d872f2087c98
* Add env variable to write minidumps to a preset directory.jeremy@chromium.org2009-10-151-0/+29
| | | | | | | | | | | | | | | | Add an |BREAKPAD_DUMP_LOCATION| environmental variable to allow overriding the default location for minidump generation. This is for ChromeBot who need a single copy of the Chrome bundle which can be run several times alternating the location of crash dumps. This isn't implemented as a command line flag because only some command line flags are passed to child processes and we need a robust solution. TEST=Minidumps should still be written for browser and renderer crashes. Review URL: http://codereview.chromium.org/264038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29126 0039d316-1c4b-4281-b951-d872f2087c98
* Re-enable APU agent now that https://bugs.webkit.org/show_bug.cgi?id=30135pfeldman@chromium.org2009-10-151-6/+2
| | | | | | | | TBR=knorton Review URL: http://codereview.chromium.org/267119 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29125 0039d316-1c4b-4281-b951-d872f2087c98
* Remove the include of nsimage_cache_mac since it's not used in these files ↵thomasvl@chromium.org2009-10-152-2/+0
| | | | | | | | | | any more. BUG=none TEST=none Review URL: http://codereview.chromium.org/268037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29124 0039d316-1c4b-4281-b951-d872f2087c98
* Fixed Layout test fast/forms/textarea-scrollbar-height.html upstreamvictorw@chromium.org2009-10-151-4/+0
| | | | | | | | | | | | remove it from test_expectations TBR=dglazkov BUG=20826 TEST=none Review URL: http://codereview.chromium.org/269089 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29122 0039d316-1c4b-4281-b951-d872f2087c98
* Show "Loading" bubble while loading a theme.avi@chromium.org2009-10-1514-30/+292
| | | | | | | | | BUG=http://crbug.com/22219 TEST=load a theme, see "Loading..." Review URL: http://codereview.chromium.org/267031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29121 0039d316-1c4b-4281-b951-d872f2087c98
* Implement some Mac platform utils.avi@chromium.org2009-10-151-4/+6
| | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/274058 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29120 0039d316-1c4b-4281-b951-d872f2087c98
* Make sure that Dump Symbols (dump_app_syms) comes after Strip If Neededmark@chromium.org2009-10-151-6/+22
| | | | | | | | | | | | | | | | (strip_from_xcode). This is a corner case that probably nobody else has ever hit, but it hits me because I often do official release build testing without mac_real_dsym set. This builds all of Breakpad for that just-like-official-release taste, but doesn't give me real .dSYMs or dumped symbols, saving me the time of having to run real dsymutil when I don't need these. BUG=none TEST=none Review URL: http://codereview.chromium.org/275025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29119 0039d316-1c4b-4281-b951-d872f2087c98
* Fixes the layout test formatter to output the correct HTML for upstream ↵gwilson@google.com2009-10-152-6/+5
| | | | | | | | | | | | baselines. R=ojan BUG=none TEST=run test_output_formatter.py -- html output for upstream baselines should be consistent with other images. Review URL: http://codereview.chromium.org/273061 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29118 0039d316-1c4b-4281-b951-d872f2087c98
* Add in files that define lists of SYMBOLS to be archived for Windows and ↵robertshield@chromium.org2009-10-153-0/+12
| | | | | | | | | | | Linux builds and tests to be archived for Windows builds. This patch goes hand in hand with: http://codereview.chromium.org/267087/show BUG=None TEST=Build program files, symbols and tests are correctly archived by the builder. Review URL: http://codereview.chromium.org/275024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29116 0039d316-1c4b-4281-b951-d872f2087c98
* Make main.cpp Google style and conver the filename and headers of the otherbrettw@chromium.org2009-10-157-567/+409
| | | | | | | | | | | | files (I didn't change the other .cc files since I think we'll delete most of them when I figure out what's going on). Add Skia dependency so we can add graphics later. BUG=none TEST=none Review URL: http://codereview.chromium.org/273066 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29115 0039d316-1c4b-4281-b951-d872f2087c98
* Fixing a tiny bit of silliness in chrome_frame_automation.cc.robertshield@chromium.org2009-10-151-2/+1
| | | | | | Review URL: http://codereview.chromium.org/271097 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29114 0039d316-1c4b-4281-b951-d872f2087c98
* This test timeouts once in a while on linux. marking is as slow.nsylvain@chromium.org2009-10-151-1/+1
| | | | | | | | | | LayoutTests/svg/custom/invisible-text-after-scrolling.xhtml BUG:9798 Review URL: http://codereview.chromium.org/271101 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29112 0039d316-1c4b-4281-b951-d872f2087c98
* Add DownloadMimeTest to the flaky list.nsylvain@chromium.org2009-10-151-1/+2
| | | | | | | BUG:24889 Review URL: http://codereview.chromium.org/276043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29111 0039d316-1c4b-4281-b951-d872f2087c98
* Disable the dromaeo benchmark tests until they are fixednsylvain@chromium.org2009-10-151-6/+6
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29110 0039d316-1c4b-4281-b951-d872f2087c98
* Enable tests that were disabled because of memory leaks.rogerta@chromium.org2009-10-152-4/+0
| | | | | | | | | BUG=24769 TEST=None Review URL: http://codereview.chromium.org/276036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29108 0039d316-1c4b-4281-b951-d872f2087c98
* MMX2 improvements on Linux 64 bit.fbarchard@chromium.org2009-10-153-77/+87
| | | | | | | | | | | MMX2 to avoid EMMS LEA to remove 2 instructions from Scale loop shuffle to remove one instruction sub at top of loop avoids one branch Review URL: http://codereview.chromium.org/269088 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29107 0039d316-1c4b-4281-b951-d872f2087c98
* Updating trunk VERSION from 223.0 to 223.1chrome-bot@google.com2009-10-151-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29106 0039d316-1c4b-4281-b951-d872f2087c98
* Remove linux_page_load_uitest target, it's covered under reliability_test.thestig@chromium.org2009-10-151-27/+6
| | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/267110 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29105 0039d316-1c4b-4281-b951-d872f2087c98
* Roll deps, pick up fix to xdg-settings.thestig@chromium.org2009-10-151-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29104 0039d316-1c4b-4281-b951-d872f2087c98
* Linux: Stack autocomplete popup window directly on top of the browser's ↵suzhe@chromium.org2009-10-157-23/+65
| | | | | | | | | | | toplevel window. BUG=19082 "Linux: Omnibox auto-complete popup is on top of IME candidate window when using SCIM" TEST=Please refer to the bug report for how to test. Review URL: http://codereview.chromium.org/274046 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29102 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: enable DevToolsSanityTest.TestCompletionOnPause that failed ↵yurys@google.com2009-10-153-3/+2
| | | | | | | | | because WebKit@49557 was not rolled. BUG=24805 Review URL: http://codereview.chromium.org/271100 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29101 0039d316-1c4b-4281-b951-d872f2087c98
* Revert checkin 29096jar@chromium.org2009-10-151-1/+0
| | | | | | | | | Removing a line that I put in just to get perf data from the build bots. TBR=mbelshe Review URL: http://codereview.chromium.org/267114 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29100 0039d316-1c4b-4281-b951-d872f2087c98
* Remove instructions to right-click toolstrips toaa@chromium.org2009-10-152-10/+14
| | | | | | | | | bring up an inspector, as that doesn't work anymore. TBR=kathyw@google.com git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29099 0039d316-1c4b-4281-b951-d872f2087c98
* Reland r29095 (removes wrench integration foraa@chromium.org2009-10-1525-276/+265
| | | | | | | | | | | | browser actions). Test failure was a fluke. I forgot that changing resources always makes the first bot run fail. TBR=mpcomplete@chromium.org BUG=24379,24671 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29098 0039d316-1c4b-4281-b951-d872f2087c98