summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Make all of the methods of ResourceHandler pure virtual.eroman@chromium.org2010-03-0220-10/+179
| | | | | | | | | | This forces implementations to consider each case, and avoids subtle bugs that can happen by using the default no-op implementation (like bug 36964). BUG=None TEST=None Review URL: http://codereview.chromium.org/661236 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40358 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit roll 55380:55396.dumi@chromium.org2010-03-021-1/+1
| | | | | | | | | | TEST=none BUG=none TBR=darin Review URL: http://codereview.chromium.org/661350 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40355 0039d316-1c4b-4281-b951-d872f2087c98
* RSS feed subscription localization, part 2. finnur@chromium.org2010-03-026-170/+269
| | | | | | | | | | | | | | | Re-enabling the tests that were disabled in the first pass. Also changing how we substitute localization values (using direct method that avoids flashing __MSG__const while the page is loading). Also made some minor fixes after testing various locales. BUG=37109 TEST=This CL is about enabling automated tests. Review URL: http://codereview.chromium.org/660328 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40354 0039d316-1c4b-4281-b951-d872f2087c98
* Add nss and mingw-w64 to svn:ignore in third_party.maruel@chromium.org2010-03-020-0/+0
| | | | | | | TBR=nsylvain git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40350 0039d316-1c4b-4281-b951-d872f2087c98
* Remove platformsdk_win2008_6_1 from svn:ignore in third_party.maruel@chromium.org2010-03-020-0/+0
| | | | | | | TBR=nsylvain git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40349 0039d316-1c4b-4281-b951-d872f2087c98
* Delete an unused test fixture.willchan@chromium.org2010-03-021-7/+0
| | | | | | Review URL: http://codereview.chromium.org/660347 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40348 0039d316-1c4b-4281-b951-d872f2087c98
* Add home button to synced prefs.chron@google.com2010-03-021-0/+1
| | | | | | Review URL: http://codereview.chromium.org/661343 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40346 0039d316-1c4b-4281-b951-d872f2087c98
* Fix the content page of the options dialog to use kAutoFillEnabled instead ↵jhawkins@chromium.org2010-03-024-7/+9
| | | | | | | | | | of the obsolete kFormAutofillEnabled. BUG=36640 TEST=none Review URL: http://codereview.chromium.org/661327 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40345 0039d316-1c4b-4281-b951-d872f2087c98
* Mac: Fix crash in content settings exceptions window.thakis@chromium.org2010-03-021-0/+2
| | | | | | | | | BUG=37137 TEST=See bug. Also, hit "add" and "remove" in succession, shouldn't crash either. Review URL: http://codereview.chromium.org/661326 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40344 0039d316-1c4b-4281-b951-d872f2087c98
* Change some desktop notifications layout parameters to be per-platform ↵johnnyg@chromium.org2010-03-025-25/+55
| | | | | | | | | | | rather than universal, and put mac notifications in the upper right as requested. BUG=34826 TEST=create notifications on all platforms Review URL: http://codereview.chromium.org/661333 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40343 0039d316-1c4b-4281-b951-d872f2087c98
* Spellchecker: make it work with memory purge button.estade@chromium.org2010-03-021-3/+10
| | | | | | | | | BUG=30463 TEST=see bug Review URL: http://codereview.chromium.org/661234 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40342 0039d316-1c4b-4281-b951-d872f2087c98
* Add database model worker to worker registry and remove deprecated threadzork@google.com2010-03-021-13/+4
| | | | | | | | | | | check. BUG=29926 TEST=Attempt to sync Autofill with a dev server. Review URL: http://codereview.chromium.org/660343 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40341 0039d316-1c4b-4281-b951-d872f2087c98
* Add extra DCHECKs to the AutoFillManager class. This is follow-up for ↵dhollowa@chromium.org2010-03-022-0/+10
| | | | | | | | | | | | review http://codereview.chromium.org/661297. BUG=36938 TEST=none Review URL: http://codereview.chromium.org/660329 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40340 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit roll 55373:55380.dumi@chromium.org2010-03-022-1/+4
| | | | | | | | | | BUG=none TEST=none TBR=darin Review URL: http://codereview.chromium.org/660315 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40339 0039d316-1c4b-4281-b951-d872f2087c98
* Modified SavePackage(TabContents* tab_contents) of save_package.cc.tony@chromium.org2010-03-022-1/+10
| | | | | | | | | | | | | | | | | | Used the same fix provided for issue 12748. This is done to retrieve actual url of the web page displayed in tab instead of displayed url. Displayed url is different from actual url when viewing source of a web page. ex: view-source:http://www.google.lk/ This is the reason why chrome fails to save source of web page. BUG = 23584 TEST= Visit a web page. Right click and select "view page source". Right click and select Save as. Select web page complete in save dialog. Click save. Source is saved without being cancelled. Repeat the above steps, but select web page only instead of complete in save dialog. Source is saved without chrome getting crashed. Review URL: http://codereview.chromium.org/660264 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40338 0039d316-1c4b-4281-b951-d872f2087c98
* Send an empty renegotiation info extension instead of SCSVwtc@chromium.org2010-03-023-2/+36
| | | | | | | | | | | | | | | | unless TLS is disabled. This allows implementers of server side secure renegotiation to use Linux Chrome as a test client that sends empty renegotiation info extensions in initial handshakes. Rename README.google to README.chromium. R=agl BUG=none TEST=none Review URL: http://codereview.chromium.org/660233 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40337 0039d316-1c4b-4281-b951-d872f2087c98
* Another batch of Linux svg rebaselines.jparent@chromium.org2010-03-0219-14/+242
| | | | | | | | | | | | | | | | | | | | | | | font rendering: svg/W3C-SVG-1.1/pservers-grad-14-b.svg svg/W3C-SVG-1.1/animate-elem-40-t.svg svg/hixie/viewbox/preserveAspectRatio/002.xml svg/hixie/viewbox/preserveAspectRatio/001.xml svg/hixie/text/003a.xml linux checked-in baselines were rotated, win and mac aren't, and current output isn't scewed: svg/W3C-SVG-1.1/animate-elem-36-t.svg Now matches upstream and windows - "test not started" svg/hixie/perf/007.xml TEST=none BUG=10296 Review URL: http://codereview.chromium.org/660341 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40335 0039d316-1c4b-4281-b951-d872f2087c98
* Update NaCl revision to fix build issues related to NaClgregoryd@google.com2010-03-021-1/+1
| | | | | | Review URL: http://codereview.chromium.org/660330 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40334 0039d316-1c4b-4281-b951-d872f2087c98
* Fix a bug with buffering when the connection closesmbelshe@chromium.org2010-03-022-4/+340
| | | | | | | | | | | while the read is still pending. BUG=none TEST=SpdyNetworkTransactionTest Review URL: http://codereview.chromium.org/661292 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40333 0039d316-1c4b-4281-b951-d872f2087c98
* Fix the case of AutoFill in the UI: Autofill -> AutoFill.jhawkins@chromium.org2010-03-021-6/+6
| | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/661329 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40332 0039d316-1c4b-4281-b951-d872f2087c98
* Specify the first-party-for-cookies URL for HTTP requestswtc@chromium.org2010-03-021-2/+6
| | | | | | | | | | | | | issued by plugins. Fix formatting nits. R=abarth,darin,eroman BUG=36957 TEST=none Review URL: http://codereview.chromium.org/601038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40331 0039d316-1c4b-4281-b951-d872f2087c98
* Attempt to submit this CL for the 3rd time. No changes.gman@chromium.org2010-03-0218-559/+747
| | | | | | | | | | | http://src.chromium.org/viewvc/chrome?view=rev&revision=40212 TEST=none BUG=none Review URL: http://codereview.chromium.org/661309 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40329 0039d316-1c4b-4281-b951-d872f2087c98
* Better error output when background page fails to load.asargent@chromium.org2010-03-021-2/+2
| | | | | | | | | | | BUG=37082 TEST=Try loading a test extension with a background_page entry in your manifest.json for a file that doesn't exist. You should see the name from your manifest in the error output. Review URL: http://codereview.chromium.org/660287 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40328 0039d316-1c4b-4281-b951-d872f2087c98
* Reland r40289: "Add support for CHECK_* macros.""willchan@chromium.org2010-03-025-45/+79
| | | | | | | | Make sure DEFINE_CHECK_OP_IMPL isn't omitted for official builds. Review URL: http://codereview.chromium.org/661325 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40327 0039d316-1c4b-4281-b951-d872f2087c98
* roll ffmpeg to 40324 for dirac link errorfbarchard@chromium.org2010-03-021-1/+1
| | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/661324 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40325 0039d316-1c4b-4281-b951-d872f2087c98
* Fix crash in ProfileSyncService on ChromiumOS.skrul@chromium.org2010-03-011-1/+1
| | | | | | Review URL: http://codereview.chromium.org/661306 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40323 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 40313 - Revert 40305 Fix for cases when info bar is stealing focus ↵cira@google.com2010-03-011-1/+13
| | | | | | | | | | | | | | | | | | on Windows Flaky test, going back to original. TEST=in the bug BUG=36943 Review URL: http://codereview.chromium.org/660218 TBR=georgey@chromium.org Review URL: http://codereview.chromium.org/661312 TBR=cira@google.com Review URL: http://codereview.chromium.org/661320 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40321 0039d316-1c4b-4281-b951-d872f2087c98
* roll to ffmpeg that respects dirac and remove from ffmpeg.gypfbarchard@chromium.org2010-03-012-4/+1
| | | | | | | | | BUG=35850 TEST=ffmpeg should still build and be smaller. Review URL: http://codereview.chromium.org/660333 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40320 0039d316-1c4b-4281-b951-d872f2087c98
* Fixed pyauto build for chromeos. Added proper sysroot and ability to specify ↵zelidrag@chromium.org2010-03-012-3/+7
| | | | | | | | | | | python version. TEST=none BUG=none Review URL: http://codereview.chromium.org/661218 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40319 0039d316-1c4b-4281-b951-d872f2087c98
* Adds a command line flag to suppress flashing blinking for those who really, ↵slightlyoff@chromium.org2010-03-013-2/+22
| | | | | | | | | | | REALLY want it to stop. BUG=None TEST=load tons of tabs after starting with --disable-backing-store-limit and observe no blinking and HUGE memory usage. Review URL: http://codereview.chromium.org/660224 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40317 0039d316-1c4b-4281-b951-d872f2087c98
* Add 15620 to known crash list.huanr@chromium.org2010-03-011-0/+3
| | | | | | | | | BUG=15620 TEST=none Review URL: http://codereview.chromium.org/660327 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40316 0039d316-1c4b-4281-b951-d872f2087c98
* ffmpeg roll to source that allows flac to be removed and remove flac from ↵fbarchard@chromium.org2010-03-012-5/+1
| | | | | | | | | | | ffmpeg.gyp BUG=35850 TEST=ffmpeg should still build Review URL: http://codereview.chromium.org/661314 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40315 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 40305 - Fix for cases when info bar is stealing focus on Windowscira@google.com2010-03-011-13/+1
| | | | | | | | | | | | | Breaking Mac 10.5 tests. TEST=in the bug BUG=36943 Review URL: http://codereview.chromium.org/660218 TBR=georgey@chromium.org Review URL: http://codereview.chromium.org/661312 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40313 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress the valgrind error from r40284.thestig@chromium.org2010-03-011-0/+15
| | | | | | | | BUG=37138 TEST=Valgrind unit goes green. Review URL: http://codereview.chromium.org/660320 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40312 0039d316-1c4b-4281-b951-d872f2087c98
* When an o3d window does not belong to any monitor (off screen), instead of ↵zmo@google.com2010-03-011-7/+1
| | | | | | | | failing, use the default monitor/adapter instead. Review URL: http://codereview.chromium.org/661300 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40311 0039d316-1c4b-4281-b951-d872f2087c98
* Fix minor issues for some tests, and disable others.kkania@google.com2010-03-014-8/+16
| | | | | | Review URL: http://codereview.chromium.org/660152 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40309 0039d316-1c4b-4281-b951-d872f2087c98
* Re-land r40275 (broke TabRestoreUITest.RestoreIntoSameWindow).rsesek@chromium.org2010-03-016-109/+319
| | | | | | | | | | | | | | | | | | [Mac] Add favicons to the history menu. BUG=20464 TEST=Open History menu, see icons. Original CL: http://codereview.chromium.org/660250 As a side effect of fixing the bustage, we no longer list duplicate sites in the "Recently Closed" section. BUG=21314 TEST=Open and navigate two three different sites. Close the first one. History menu has 1 closed site. Close second tab. Should see both sites listed under "Recently Closed" exactly once. Review URL: http://codereview.chromium.org/660282 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40308 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit roll 55365:55373.dumi@chromium.org2010-03-011-1/+1
| | | | | | | | | | BUG=none TEST=none TBR=darin Review URL: http://codereview.chromium.org/660311 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40307 0039d316-1c4b-4281-b951-d872f2087c98
* Using bitstream filters if OpenMAX is enabledhclam@chromium.org2010-03-013-24/+51
| | | | | | | | | | | | | | | Use FFmpeg bitstream filters if OpenMAX is enabled. The following filters are used: 1. h264_mp4toannexb 2. mpeg4video_es 3. vc1_asftorcv 4. vc1_asftoannexg TEST=run player_x11 with --enable-openmax and the above formats work Review URL: http://codereview.chromium.org/661059 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40306 0039d316-1c4b-4281-b951-d872f2087c98
* Fix for cases when info bar is stealing focus on Windowsgeorgey@chromium.org2010-03-011-1/+13
| | | | | | | | TEST=in the bug BUG=36943 Review URL: http://codereview.chromium.org/660218 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40305 0039d316-1c4b-4281-b951-d872f2087c98
* Add autofill Change Processor and Model Associatorzork@google.com2010-03-0130-76/+1347
| | | | | | | | | BUG=29926 TEST=none Review URL: http://codereview.chromium.org/628003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40304 0039d316-1c4b-4281-b951-d872f2087c98
* ffmpeg configurations to include bit stream filters.fbarchard@chromium.org2010-03-0122-36/+101
| | | | | | | | | | arm/arm-neon regenerated using ./configure with --enable-neon or --disable-neon. BUG=35850 TEST=use openmax to playback videos. (nontrivial) Review URL: http://codereview.chromium.org/660293 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40303 0039d316-1c4b-4281-b951-d872f2087c98
* Check for a non-NULL PersonalDataManager when determining if AutoFill is ↵jhawkins@chromium.org2010-03-011-9/+19
| | | | | | | | | | enabled. The PersonalDataManager is NULL when OTR. BUG=36938 TEST=New incognito window. gmail.com logged in. Compose mail. Type in subject line. No crash. Review URL: http://codereview.chromium.org/661297 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40302 0039d316-1c4b-4281-b951-d872f2087c98
* Rebaseline 5 svg tests for linux.jparent@chromium.org2010-03-0110-9/+5
| | | | | | | | | | | | | | | | | | | | | Font rendering differences due to anti-aliasing and hinting: svg/W3C-SVG-1.1/animate-elem-33-t.svg svg/W3C-SVG-1.1/pservers-grad-17-b.svg svg/custom/dominant-baseline-hanging.svg png file is the same as win, only checksum is different: svg/custom/deep-dynamic-updates.svg I wasn't able to see a visual difference, but there must be one: svg/custom/gradient-stroke-width.svg TEST=none BUG=10296 Review URL: http://codereview.chromium.org/661287 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40301 0039d316-1c4b-4281-b951-d872f2087c98
* Tweak minidump flags to include a little more detail.siggi@chromium.org2010-03-016-63/+220
| | | | | | | | | | | | | | | | | | In release channel this adds PEB/TEB and the unloaded module list to crash dumps. In dev/beta channel builds this additionally adds stack-referenced memory to crash dumps. For full memory dumps, this adds capture of the PEB/TEB, unloaded module list and all handle information. These minidump flags have been verified safe against the DbgHelp.dll version shipping with XP SP2 and later. Move some code from platform_util to install_util to allow reusing it in the chrome exe project. Add a test for the additional install_util code. BUG=32441 TEST=Unittests in this change. Review URL: http://codereview.chromium.org/659001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40300 0039d316-1c4b-4281-b951-d872f2087c98
* Remove a xib file that has no localizable strings (removes a warning from ↵thomasvl@chromium.org2010-03-011-1/+0
| | | | | | | | | | builds). BUG=none TEST=none Review URL: http://codereview.chromium.org/660301 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40299 0039d316-1c4b-4281-b951-d872f2087c98
* Check for Carbon Mac plugin destruction after each GetNextEvent cyclestuartmorgan@chromium.org2010-03-011-31/+27
| | | | | | | | | | | Also removes unnecessary event model checks (this method is only called for Carbon-event plugins) BUG=36928 TEST=none Review URL: http://codereview.chromium.org/661284 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40298 0039d316-1c4b-4281-b951-d872f2087c98
* Workaround for Pango integer overflow on really long strings.mmoss@google.com2010-03-011-0/+12
| | | | | | | | | This fixes TextEliderTest.ElideTextLongStrings breakage on "Linux Tests (dbg-shlib)(1)" (Karmic). http://chrome-buildbot.corp.google.com:8016/builders/Linux%20Tests%20(dbg-shlib)(1)/builds/1367/steps/app_unittests/logs/stdio Review URL: http://codereview.chromium.org/661244 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40297 0039d316-1c4b-4281-b951-d872f2087c98
* Revert r40289: "Add support for CHECK_* macros."willchan@chromium.org2010-03-015-64/+31
| | | | | | | | Broke official build compilation (only worked on debug/release builds). Review URL: http://codereview.chromium.org/661298 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40296 0039d316-1c4b-4281-b951-d872f2087c98
* Increment gmail_checker version number from 3 to 3.1cira@google.com2010-03-011-8/+8
| | | | | | | | | Sort keys in the manifest. TBR=finnur Review URL: http://codereview.chromium.org/660303 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40295 0039d316-1c4b-4281-b951-d872f2087c98