summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add command line flag --top-sites to replace the thumbnail store flag.brettw@chromium.org2010-05-1911-26/+106
| | | | | | | | | | Use the flag for querying for thumbnails. Add timer to update TopSites (every second for now). BUG=None TEST='chrome --top-sites' git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47671 0039d316-1c4b-4281-b951-d872f2087c98
* Update breakpad to the latest revision (599). siggi@chromium.org2010-05-191-1/+1
| | | | | | | | | | | | Submitted for Hans Larsen (hansl@google.com), original change list at [http://codereview.chromium.org/2137005]. BUG=None TEST=None Review URL: http://codereview.chromium.org/2096013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47670 0039d316-1c4b-4281-b951-d872f2087c98
* Prevent crash in test case where tests could overflow the index to the list ofmbelshe@chromium.org2010-05-191-6/+12
| | | | | | | | | | | | | | test socket types to create. The backup sockets fire at ~250ms. So, if the test takes longer than expected, it will end up creating more sockets than the test case expects, and we could overflow this list. We may need to do more work to make it so this never happens, but this will prevent the crash. BUG=43919 TEST=TCPClientSocketPoolTest.BackupSocketConnect Review URL: http://codereview.chromium.org/2072006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47669 0039d316-1c4b-4281-b951-d872f2087c98
* Mark DevToolsSanityTest.TestStepOut as flaky on Chrome OS.robertshield@chromium.org2010-05-191-1/+9
| | | | | | | | | | BUG=43479 TEST=none TBR=cbentzel Review URL: http://codereview.chromium.org/2071018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47668 0039d316-1c4b-4281-b951-d872f2087c98
* Disable HttpNetworkTransactionTest.StopsReading204 (net_unittests) under TSanglider@chromium.org2010-05-191-0/+3
| | | | | | | | | | | on Mac BUG=44570 TBR=timurrrr Review URL: http://codereview.chromium.org/2093006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47667 0039d316-1c4b-4281-b951-d872f2087c98
* Disabling AccessibilityWinBrowserTest.TestRenderereAccessibilityTree.cbentzel@chromium.org2010-05-191-2/+2
| | | | | | | | | BUG=44546 TEST=None Review URL: http://codereview.chromium.org/2105010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47666 0039d316-1c4b-4281-b951-d872f2087c98
* Add heapcheck suppression for bug 44540.glider@chromium.org2010-05-191-0/+12
| | | | | | | | | BUG=44540 TBR=hbono,akakin Review URL: http://codereview.chromium.org/2100007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47665 0039d316-1c4b-4281-b951-d872f2087c98
* Remove suppressions for a couple of benign races in base::Threadtimurrrr@chromium.org2010-05-191-32/+0
| | | | | | | | | The new version of ThreadSanitizer (rev2088) finally has support for automatically suppressing benign data races on vfptr. The harmful data races will still be reported. BUG=23245,25385 TEST=TSan bots should remain green Review URL: http://codereview.chromium.org/2099009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47664 0039d316-1c4b-4281-b951-d872f2087c98
* Updating known reliability crashes for http://crbug.com/44064robertshield@chromium.org2010-05-191-0/+4
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47663 0039d316-1c4b-4281-b951-d872f2087c98
* Disable MessageLoopTest.RecursiveDenial2 since it is flaky and hangs.maruel@chromium.org2010-05-191-1/+2
| | | | | | | | | TEST=disabled BUG=44567 Review URL: http://codereview.chromium.org/2095013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47662 0039d316-1c4b-4281-b951-d872f2087c98
* Blacklist BookmarkBarControllerTest.OffTheSideButtonHidden because it fails ↵rsesek@chromium.org2010-05-191-0/+3
| | | | | | | | | | | under Valgrind. BUG=44563 TEST=Mac Valgrind unit_tests goes green Review URL: http://codereview.chromium.org/2071017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47660 0039d316-1c4b-4281-b951-d872f2087c98
* Mark TestAboutViewChromeAccObj as FAILS.cbentzel@chromium.org2010-05-191-1/+2
| | | | | | | | | BUG=44486 TEST=None Review URL: http://codereview.chromium.org/2131017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47657 0039d316-1c4b-4281-b951-d872f2087c98
* linux: move plugin blacklist check earlierevan@chromium.org2010-05-191-7/+7
| | | | | | | | | | | | | | | | | | Plugins load in two stages: first we dlopen() them to query metadata, then later in response to a page request we actually instantiate them. The blacklist we had in place only happened at the latter point; gecko-mediaplayer causes us to hang in the first step. So move the blacklist check earlier to succesfully blacklist it. We eventually should just fix the bugs that cause this plugin to hang us, but this will fix things for users right now. BUG=24507,40221 TEST=run with --log-level=0 --debug-plugin-loading and verify gecko-mediaplayer is still blacklisted Review URL: http://codereview.chromium.org/2114011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47656 0039d316-1c4b-4281-b951-d872f2087c98
* Fix analyze on TSan/Wintimurrrr@chromium.org2010-05-191-2/+5
| | | | | | | TBR=glider Review URL: http://codereview.chromium.org/2131016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47653 0039d316-1c4b-4281-b951-d872f2087c98
* Disables RenderViewTest.OnHandleKeyboardEvent on valgrind.hbono@chromium.org2010-05-191-0/+2
| | | | | | | | | TBR=estade BUG=44552 TEST=make the "Linux Tests (valgrind)(1)" bot green. Review URL: http://codereview.chromium.org/2110009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47652 0039d316-1c4b-4281-b951-d872f2087c98
* Key names for ibus-gconf (and ibus-memconf) were wrong.yusukes@google.com2010-05-191-14/+15
| | | | | | | | | | | I was using those for Pytyhon version of ibus-pinyin. C++ version uses CamelCase strings. BUG=chromium-os:3266 TEST=see the bug Review URL: http://codereview.chromium.org/2094011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47651 0039d316-1c4b-4281-b951-d872f2087c98
* page cycler: Use buffer-cache priming code on all systems.evan@chromium.org2010-05-193-24/+18
| | | | | | | | | | | I noticed that the first time I run the page cycler the test numbers are worse, probably because the test pages are not in cache. We already have this code on Mac and I don't see why it shouldn't apply to all systems. Review URL: http://codereview.chromium.org/2096005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47650 0039d316-1c4b-4281-b951-d872f2087c98
* Updating trunk VERSION from 409.0 to 410.0chrome-release@google.com2010-05-191-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47648 0039d316-1c4b-4281-b951-d872f2087c98
* Fix the build by updating FRIEND_TEST line.phajdan.jr@chromium.org2010-05-191-0/+1
| | | | | | | | | | TBR=maruel BUG=44547 Review URL: http://codereview.chromium.org/2083013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47646 0039d316-1c4b-4281-b951-d872f2087c98
* Disable ExtensionInstallUIBrowserTest.TestThemeInstallUndoResetsToDefault ↵phajdan.jr@chromium.org2010-05-191-1/+2
| | | | | | | | | | | | | because of crashiness. TBR=satish TEST=crashy BUG=44548 Review URL: http://codereview.chromium.org/2085011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47645 0039d316-1c4b-4281-b951-d872f2087c98
* Disable PrintDialogCloudTest.HandlersRegistered because of crashiness.phajdan.jr@chromium.org2010-05-191-1/+2
| | | | | | | | | | | TBR=maruel TEST=disabled BUG=44547 Review URL: http://codereview.chromium.org/2117016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47644 0039d316-1c4b-4281-b951-d872f2087c98
* Mark AccessibilityWinBrowserTest.TestRendererAccessibilityTree as flaky.phajdan.jr@chromium.org2010-05-191-1/+2
| | | | | | | | | | | | | | There was some fix recently, but it wasn't fully effective. The test has failed again today. TBR=ctguil TEST=flaky BUG=44546 Review URL: http://codereview.chromium.org/2108019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47643 0039d316-1c4b-4281-b951-d872f2087c98
* Fixes a typo in my suppression.hbono@chromium.org2010-05-191-6/+2
| | | | | | | | | TBR=hbono BUG=44540 TEST=make valgrind bots green. Review URL: http://codereview.chromium.org/2119008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47642 0039d316-1c4b-4281-b951-d872f2087c98
* Disable SSLUITest.TestGoodFrameNavigation, it flakily exceeds test timeout.phajdan.jr@chromium.org2010-05-191-1/+2
| | | | | | | | | | | TBR=jrg BUG=18626 TEST=disabled Review URL: http://codereview.chromium.org/2116009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47641 0039d316-1c4b-4281-b951-d872f2087c98
* Support "Kana Eisu" key in Japanese keyboard for Chrome OS.yusukes@google.com2010-05-191-1/+5
| | | | | | | | | BUG=chromium-os:2543 TEST=manual Review URL: http://codereview.chromium.org/2067017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47640 0039d316-1c4b-4281-b951-d872f2087c98
* Annotate a benign data race in Thread::StopSoontimurrrr@chromium.org2010-05-191-1/+4
| | | | | | | | BUG=23245 TEST=TSan bots Review URL: http://codereview.chromium.org/2136013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47639 0039d316-1c4b-4281-b951-d872f2087c98
* Suppresses the leak in sync_api::SyncManager::Init().hbono@chromium.org2010-05-191-0/+18
| | | | | | | | | TBR=akakin BUG=44540 TEST=make the valgrind bots green. Review URL: http://codereview.chromium.org/2072011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47638 0039d316-1c4b-4281-b951-d872f2087c98
* Move dynamic_annotations into a separate gyp file to breaktony@chromium.org2010-05-193-36/+50
| | | | | | | | | | a circular gyp dependency between allocator.gyp and base.gyp. BUG=44538 Review URL: http://codereview.chromium.org/2108016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47637 0039d316-1c4b-4281-b951-d872f2087c98
* Fix a race on logfiles for UI teststimurrrr@chromium.org2010-05-191-2/+4
| | | | | | | | Looks like a few browser wrappers can exist at the same time thus resulting in reading/deleting each other's Valgrind log files Review URL: http://codereview.chromium.org/2131014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47636 0039d316-1c4b-4281-b951-d872f2087c98
* Handle "bopomofo" in LanguageLibrary::GetLanguageCodeFromDescriptor().yusukes@google.com2010-05-192-1/+6
| | | | | | | | | BUG=none TEST=ran tests in language_library_test.cc. Review URL: http://codereview.chromium.org/2103010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47635 0039d316-1c4b-4281-b951-d872f2087c98
* Fix a typo in webkit_support.tony@chromium.org2010-05-195-5/+5
| | | | | | Review URL: http://codereview.chromium.org/2134007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47634 0039d316-1c4b-4281-b951-d872f2087c98
* [GTTF] [TTF] Test marks maintenance CL:phajdan.jr@chromium.org2010-05-1911-42/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * The following tests are no longer flaky: BrowserTest.PageLanguageDetection (bug 42095) AppApiTest.AppProcess (bug 42497) ExtensionApiTest.Infobars (bug 40141) FindInPageControllerTest.FindMovesWhenObscuring (bug 41124) SessionRestoreUITest.TwoWindowsCloseOneRestoreOnlyOne (bug 39905) RenderViewTest.OnHandleKeyboardEvent (no bug) RenderViewTest.DidFailProvisionalLoadWithErrorForError (no bug) AutomatedUITestBase.CloseTab (bug 14774) AutomatedUITestBase.CloseBrowserWindow (bug 14774) PluginTest.FlashLayoutWhilePainting (bug 21538) HistoryTester.VerifyHistoryLength1 (bug 39785) HistoryTester.ConsiderRedirectAfterGestureAsUserInitiated (bug 39785) HistoryTester.ConsiderSlowRedirectAsUserInitiated (bug 39785) * The following tests are not flaky, but disabled due to hangs: BrowserAppRefocusTest.OpenTab (bug 44026) * The following tests are not flaky, but seem to fail consistently: ProcessSingletonLinuxTest.NotifyOtherProcessSuccess (bug 30953) ProcessSingletonLinuxTest.NotifyOtherProcessHostChanged (bug 30953) BrowserViewsAccessibilityTest.TestChromeWindowAccObj (bug 44486) BUG=42095, 44026, 42497, 40141, 41124, 30953, 39905, 14774, 21538, 39785, 44486 TEST=this touches a lot of tests Review URL: http://codereview.chromium.org/2128009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47633 0039d316-1c4b-4281-b951-d872f2087c98
* Speculative bookmark crash fix.jrg@chromium.org2010-05-194-4/+59
| | | | | | | | | | | | | | | | | | The crash in http://crbug.com/43881 might be a reference to a dangling pointer. One theory for this crash is: - use bookmark sync - 1st machine: open a context menu on a bookmark button - 2nd machine: delete that bookmark (or it's parent), or rearrange things somehow - 1st machine: select Delete on the menu Fix is to close context menus when we see a model change. BUG=43881 Review URL: http://codereview.chromium.org/2132012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47632 0039d316-1c4b-4281-b951-d872f2087c98
* The language menu button should be disabled (i.e. grayed out) by defaultyusukes@google.com2010-05-191-0/+4
| | | | | | | | | | | | | | since the language menu (and libcros) might not have input_context when Chrome is started. For example, if Chrome initially focuses a password input area, ibus-daemon does not raise the FocusIn signal for the input area. BUG=chromium-os:3341 BUG=chromium-os:2639 TEST=manual Review URL: http://codereview.chromium.org/2074016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47631 0039d316-1c4b-4281-b951-d872f2087c98
* Make chromium compilable with screen lock change.oshima@chromium.org2010-05-192-2/+2
| | | | | | | | | | TBR=zelidrag@chromium.org,davidjames@chromium.org BUG=3340 TEST=none Review URL: http://codereview.chromium.org/2084010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47627 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit Roll: 59718:59738atwilson@chromium.org2010-05-191-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47625 0039d316-1c4b-4281-b951-d872f2087c98
* enable RenderViewTest.OnHandleKeyboardEvent on Linux.estade@chromium.org2010-05-196-107/+222
| | | | | | | | | | | Rearrange some existing automation code and write some new code. BUG=none TEST=runs Review URL: http://codereview.chromium.org/2083012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47624 0039d316-1c4b-4281-b951-d872f2087c98
* Remove an unnecessary line from the example's manifest.kathyw@chromium.org2010-05-191-1/+0
| | | | | | | | | | TBR=aa TEST=none BUG=none Review URL: http://codereview.chromium.org/2081011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47620 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit roll: 59691:59718atwilson@chromium.org2010-05-191-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47619 0039d316-1c4b-4281-b951-d872f2087c98
* - Draw glossy animation effect for determinate progress bartkent@chromium.org2010-05-196-52/+76
| | | | | | | | | | | | | | | | | | - Moved animation code for indeterminate bar from WebKit because adding change above makes webkit-side too complicated. Note: - This change depends https://webkit.org/b/39269 - Appearance of indeterminate bar remains incorrect. I filed it to http://crbug.com/44433. Patch by Hajime Morita <morrita@g> Original code review: http://codereview.chromium.org/2131008/show BUG=44430 TEST=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47618 0039d316-1c4b-4281-b951-d872f2087c98
* Fix the ChromeFrame MockCreateTabOk test by returning the launch result from ↵ananta@chromium.org2010-05-193-8/+12
| | | | | | | | | | | | | | the CreateExternalTabComplete helper and passing the same to the InitializeComplete function which eventually gets passed down to the mock delegate which expects a failure. Bug=44245 TBR=stoyan Review URL: http://codereview.chromium.org/2114009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47617 0039d316-1c4b-4281-b951-d872f2087c98
* Revert r47583 for causing reliability bot crashes.willchan@chromium.org2010-05-194-172/+45
| | | | | | | | BUG=32817 Review URL: http://codereview.chromium.org/2105009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47616 0039d316-1c4b-4281-b951-d872f2087c98
* Replaced AddressWatcherTask with net::NetworkChangeNotifier.akalin@chromium.org2010-05-195-329/+43
| | | | | | | | | BUG=none TEST=disconnected/reconnected network, made sure sync detected it (tested on Windows, Linux, OS X) Review URL: http://codereview.chromium.org/1522001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47615 0039d316-1c4b-4281-b951-d872f2087c98
* Add a simple app sample.aa@chromium.org2010-05-193-0/+14
| | | | | | Review URL: http://codereview.chromium.org/2127008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47614 0039d316-1c4b-4281-b951-d872f2087c98
* A few more tests for omniboxnirnimesh@chromium.org2010-05-191-14/+79
| | | | | | | | | | | | | testSuggest,testDiffTypesOfResults,testSuggestPref,testSuggestCombinationOfWords - from Srikanth Also, - make testCrazyFilenames more robust to deal with win quirks - expand testHistory to test from another tab, another window and incognito window Review URL: http://codereview.chromium.org/2122012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47613 0039d316-1c4b-4281-b951-d872f2087c98
* Fix the ChromeFrame new window popup test by ensuring that ↵ananta@chromium.org2010-05-193-13/+12
| | | | | | | | | | | | | | | | | CreateExternalTabComplete executes on the IPC thread as before and InitializeComplete executes as a task on the UI thread. The test failed because we receive IPCs for the new tab before we have a tab proxy for it. To fix the crash in bug http://code.google.com/p/chromium/issues/detail?id=44245, we set the automation_server_ member to NULL after ReleaseAutomationServer returns. There are a number of races related to the automation server being released which should hopefully go away if we remove dependency on the AutomationProxy object. Added a TODO to that effect in the code. Bug=44245 Review URL: http://codereview.chromium.org/2079012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47612 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit roll: 59676:59691atwilson@chromium.org2010-05-191-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47610 0039d316-1c4b-4281-b951-d872f2087c98
* gtk: Split DefaultEncodingComboboxModel into its own file so it can be ↵tfarina@chromium.org2010-05-196-100/+108
| | | | | | | | | | | shared with the views UI side. BUG=None TEST=manually, everything should works as before. Review URL: http://codereview.chromium.org/1993004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47609 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 47603 - refactoring engine interface for openmax.atwilson@chromium.org2010-05-1913-255/+233
| | | | | | | | | | | | | | | It was breaking several video tests: http://build.chromium.org/buildbot/waterfall/builders/Webkit/builds/22419/steps/webkit_tests/logs/stdio currently only fillbufferdone callback and emptythisbuffer is used. Review URL: http://codereview.chromium.org/2095002 TBR=jiesun@google.com Review URL: http://codereview.chromium.org/2070012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47608 0039d316-1c4b-4281-b951-d872f2087c98
* DOMUI - Simplify DOMMessageHandler::Extract{Integer,String}Value.arv@chromium.org2010-05-191-21/+5
| | | | | | | | | BUG=None TEST=None Review URL: http://codereview.chromium.org/2074011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47607 0039d316-1c4b-4281-b951-d872f2087c98