summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Changes to the autofill popup:jcampan@chromium.org2008-12-166-20/+59
| | | | | | | | | | | - we now reuse the existing popup if there is one (instead of creating a new on with each key stoke), this prevents the flickering we used to see. - we don't hide the popup on every key stroke, instead we rely on the client editor telling us the field is not being edited anymore. TEST=Enter some text in a form's text field several times, the autofill should show and not flicker. BUG=5258 Review URL: http://codereview.chromium.org/14100 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7017 0039d316-1c4b-4281-b951-d872f2087c98
* Add a ui test to make sure the Find box does not go away on Reload but doesfinnur@google.com2008-12-153-8/+35
| | | | | | | | go away when you navigate to a new page. Review URL: http://codereview.chromium.org/14130 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7016 0039d316-1c4b-4281-b951-d872f2087c98
* Remove some incorrect windows baselines (these tests are alreadytc@google.com2008-12-1510-5/+0
| | | | | | | | | marked as failing). Move a baseline that's correct on win and linux. Review URL: http://codereview.chromium.org/14435 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7014 0039d316-1c4b-4281-b951-d872f2087c98
* Apparently some of the FMM's are flakey.erikkay@google.com2008-12-153-94/+447
| | | | | | | | | | Also, some of the stacks are different in the layout case. TBR=brettw Review URL: http://codereview.chromium.org/14132 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7012 0039d316-1c4b-4281-b951-d872f2087c98
* fix build bustagedarin@chromium.org2008-12-151-8/+8
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7011 0039d316-1c4b-4281-b951-d872f2087c98
* message_pump_libevent refactor:jeremy@chromium.org2008-12-1510-261/+310
| | | | | | | | | | * Unify WatchSocket & WatchFileHandle. * Better encapsulate libevent. * Fix a bug with blocking writes in ipc_posix.cc Review URL: http://codereview.chromium.org/13757 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7010 0039d316-1c4b-4281-b951-d872f2087c98
* Remove a NOTIMPLEMENTED() that is obvious and cluttering our debug output.evanm@google.com2008-12-151-1/+0
| | | | | | | Review URL: http://codereview.chromium.org/14109 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7009 0039d316-1c4b-4281-b951-d872f2087c98
* Move contents of platform/graphics/svg to svg/graphics/skia todarin@google.com2008-12-1510-43/+51
| | | | | | | | | | | | | match where the files will live once we upstream them. (There are no mac project changes because our mac port does not use any of these files.) R=evan Review URL: http://codereview.chromium.org/14127 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7008 0039d316-1c4b-4281-b951-d872f2087c98
* Fun file renaming patch.darin@google.com2008-12-156-25/+51
| | | | | | | | | | | | SoundPosix.cpp -> SoundChromiumPosix.cpp IconMac.cpp -> IconChromiumMac.cpp IconLinux.cpp -> IconChromiumLinux.cpp R=evan Review URL: http://codereview.chromium.org/14433 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7007 0039d316-1c4b-4281-b951-d872f2087c98
* Trying to handle a few more of the things that crash/fail/etc. so we can get tothomasvl@chromium.org2008-12-151-18/+25
| | | | | | | | a more even state for build bots. Lint passes. Review URL: http://codereview.chromium.org/14126 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7006 0039d316-1c4b-4281-b951-d872f2087c98
* Second attempt at extending the back button to the left edge when maximized.abarth@chromium.org2008-12-151-2/+16
| | | | | | | | | | | This time, we do everything programatically and extend the target area only when the window is maximized. After this patch, we don't actually get the left-most pixel to be targetable on XP because our frame code is borked, but this should work once we unbork that. BUG=3484 R=beng Review URL: http://codereview.chromium.org/13782 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7005 0039d316-1c4b-4281-b951-d872f2087c98
* Cleanup IsExecutableMimeType.abarth@chromium.org2008-12-151-17/+21
| | | | | | | | R=cpu Review URL: http://codereview.chromium.org/14417 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7004 0039d316-1c4b-4281-b951-d872f2087c98
* fix buildtc@google.com2008-12-151-2/+2
| | | | | | | | | | | initializer list was in the wrong order TBR=sidchat Review URL: http://codereview.chromium.org/14202 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7003 0039d316-1c4b-4281-b951-d872f2087c98
* fix box shadowstc@google.com2008-12-1514-322/+335
| | | | | | | | | | | | | | We need to apply the context transform to the shadow before rendering it. There's also a weird case where we have to flip the y offset if we're not applying the transform. I'm not sure why this is necessary, but it allows us to pass canvas-shadow tests. BUG=5503 Review URL: http://codereview.chromium.org/14125 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7002 0039d316-1c4b-4281-b951-d872f2087c98
* Add "Enable spell check for this field" menu option in sub context menu for ↵sidchat@google.com2008-12-1519-45/+112
| | | | | | | | context menu over text box, and deploy its functionality accordingly across the code. This patch also allows manual switch-on of spell check in single line text box fields. Review URL: http://codereview.chromium.org/13731 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7000 0039d316-1c4b-4281-b951-d872f2087c98
* Fix mac bustage.darin@google.com2008-12-151-4/+0
| | | | | | | | TBR=evan Review URL: http://codereview.chromium.org/14432 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6999 0039d316-1c4b-4281-b951-d872f2087c98
* Ditch PluginStubsMac.cpp in favor of using the existing Chromium code.darin@google.com2008-12-152-66/+38
| | | | | | | | R=pinkerton Review URL: http://codereview.chromium.org/14123 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6998 0039d316-1c4b-4281-b951-d872f2087c98
* Remove FileSystemPosix.cpp since it is actually unnecessary. This makes thedarin@chromium.org2008-12-156-37/+43
| | | | | | | | | | Linux port more like the Windows and Mac ports. R=evanm Review URL: http://codereview.chromium.org/14431 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6997 0039d316-1c4b-4281-b951-d872f2087c98
* Fixes cookies view regression where I broke deleting by way of deletesky@google.com2008-12-152-10/+8
| | | | | | | | | | | | key. I broke this when I added an observer method for the deletion so that overriding key down no longer works. BUG=5472 TEST=see bug Review URL: http://codereview.chromium.org/14430 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6996 0039d316-1c4b-4281-b951-d872f2087c98
* Correct expectation for test that only fails in debug.mmoss@google.com2008-12-151-1/+1
| | | | | | | Review URL: http://codereview.chromium.org/14429 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6995 0039d316-1c4b-4281-b951-d872f2087c98
* I accidentally changed a shortcut due to a bad merge of someone else's ↵pkasting@chromium.org2008-12-151-1/+1
| | | | | | | | | changes into my own. BUG=5473 Review URL: http://codereview.chromium.org/14121 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6994 0039d316-1c4b-4281-b951-d872f2087c98
* A stack changed for test_shell_tests (was this expected brett?), and another ↵erikkay@google.com2008-12-154-12/+236
| | | | | | | | | | | | stack was fixed (thanks Darin). These same errors repro for many layout tests, so add them to the layout ignore list as well. Unfortunately, it's not all of them, so we'll see some orange (unexpected fixes) in a few places, but that's better than red. TBR=brettw Review URL: http://codereview.chromium.org/14124 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6992 0039d316-1c4b-4281-b951-d872f2087c98
* Changes the bookmark bubble to have the following logic:sky@google.com2008-12-1510-60/+96
| | | | | | | | | | | | | | | | | | . We only apply edits when the bubble is closed (previously selecting a different folder resulted in an immediate action). . Hitting escape cancels any edits. . When the bubble is shown for newly bookmarked items hitting escape removes the bookmark. . If you click 'Edit...' or select 'Choose another folder...' any edits are applied immediately before the editor is shown. BUG=5015 TEST=thorougly test the bookmark bubble to make sure I haven't broken anything. Review URL: http://codereview.chromium.org/14074 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6991 0039d316-1c4b-4281-b951-d872f2087c98
* Rebaseline some CSS gradient tests for Win/Linux.mmoss@google.com2008-12-158-4/+24
| | | | | | | | | These are working since enabling gradient processing in r6515. Review URL: http://codereview.chromium.org/14409 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6990 0039d316-1c4b-4281-b951-d872f2087c98
* Rebaseline some canvas gradient tests for Win/Linux.mmoss@google.com2008-12-155-6/+2
| | | | | | | | | Proper baselines (matching webkit) after fixes in http://codereview.chromium.org/14404. Review URL: http://codereview.chromium.org/14096 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6989 0039d316-1c4b-4281-b951-d872f2087c98
* Move "stops sort" before first usage of m_stops.mmoss@google.com2008-12-151-7/+7
| | | | | | | | | | Fixes: LayoutTests/fast/canvas/fillrect_gradient.html Note: That test is fixed now, but it still won't pass because the baseline is actually wrong; a new baseline is on the way. Review URL: http://codereview.chromium.org/14404 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6987 0039d316-1c4b-4281-b951-d872f2087c98
* Eliminate port/platform/win directory. Stop building a fork of BString, anddarin@chromium.org2008-12-1510-457/+31
| | | | | | | | | | | | | | stop depending on COMPtr.h. I avoided BString by definining a bastard shim in AccessibleBase.cpp. I did that because the one from WebCore's platform/win would require #if !USE(JSC) to avoid UString issues. Eventually, AccessibleBase.cpp is going to be rewritten to not use COM, so this issue will go away. R=dglazkov Review URL: http://codereview.chromium.org/13808 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6986 0039d316-1c4b-4281-b951-d872f2087c98
* Platform cleanup in common/ and even porting few files and unit tests.phajdan.jr@chromium.org2008-12-154-32/+20
| | | | | | Review URL: http://codereview.chromium.org/14420 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6982 0039d316-1c4b-4281-b951-d872f2087c98
* Remove few more errors in mac scons build.phajdan.jr@chromium.org2008-12-1511-16/+43
| | | | | | | BUG=5525 Review URL: http://codereview.chromium.org/14113 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6981 0039d316-1c4b-4281-b951-d872f2087c98
* Remove test_shell_test from the TestShell target since it has it's own ↵thomasvl@chromium.org2008-12-151-2/+0
| | | | | | | | target now. Review URL: http://codereview.chromium.org/14424 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6980 0039d316-1c4b-4281-b951-d872f2087c98
* Command line switch for the ultra security concious: --force-https!abarth@chromium.org2008-12-153-1/+15
| | | | | | | | | | If you set this switch, the browser refuses to talk HTTP and refuses to permit certificate errors. For best results, use with a dedicated profile. R=jar Review URL: http://codereview.chromium.org/14421 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6979 0039d316-1c4b-4281-b951-d872f2087c98
* Reverting 6977.ericroman@google.com2008-12-152-8/+8
| | | | | | | TBR=erikkay Review URL: http://codereview.chromium.org/14111 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6978 0039d316-1c4b-4281-b951-d872f2087c98
* Test re-enable some tests to get more data from purify buildbot. This will ↵ericroman@google.com2008-12-152-8/+8
| | | | | | | | | probably be rolled-back after the bot does a run. TBR=erikkay Review URL: http://codereview.chromium.org/14418 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6977 0039d316-1c4b-4281-b951-d872f2087c98
* A few changes to make the memory test a little better.mbelshe@google.com2008-12-151-12/+26
| | | | | | | | | | | * Add a delay to workaround bug 2953 for the moment. * If a user-data-dir is specified, don't try to copy files. * Add some logging on various failures. Review URL: http://codereview.chromium.org/14416 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6976 0039d316-1c4b-4281-b951-d872f2087c98
* Reupload of 14102glen@chromium.org2008-12-1450-5359/+4726
| | | | | | | | | | | | | BN,GU,KN,ML,MR,OR,TA and TE are still using the English translation (no translation available on our site). HE is non-RTL, which we should fix upstream. The JS contained is harmless code that we had previously manually stripped out, but as we're not someone more automated, I'm leaving it in. Review URL: http://codereview.chromium.org/14104 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6975 0039d316-1c4b-4281-b951-d872f2087c98
* A new shot at the old system monitor changelist.mbelshe@google.com2008-12-1316-157/+107
| | | | | | Review URL: http://codereview.chromium.org/12883 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6974 0039d316-1c4b-4281-b951-d872f2087c98
* Remove all the CHECKs I added to debug issue 4749.wtc@google.com2008-12-132-24/+1
| | | | | | | | TBR=eroman BUG=4749 Review URL: http://codereview.chromium.org/14108 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6972 0039d316-1c4b-4281-b951-d872f2087c98
* Disable some failing layout tests.mmoss@google.com2008-12-131-2/+7
| | | | | | | Review URL: http://codereview.chromium.org/14414 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6971 0039d316-1c4b-4281-b951-d872f2087c98
* Implement visited link coloring.brettw@google.com2008-12-1310-24/+132
| | | | | | Review URL: http://codereview.chromium.org/12928 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6970 0039d316-1c4b-4281-b951-d872f2087c98
* Remove references to base from platform/graphics.brettw@google.com2008-12-133-16/+25
| | | | | | Review URL: http://codereview.chromium.org/13806 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6969 0039d316-1c4b-4281-b951-d872f2087c98
* Reverting 6966.ericroman@google.com2008-12-1322-151/+183
| | | | | | | this failed UI tests catastrophically Review URL: http://codereview.chromium.org/14103 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6968 0039d316-1c4b-4281-b951-d872f2087c98
* Use automatic memory management for URLRequestContext's members.ericroman@google.com2008-12-1322-183/+151
| | | | | | | | Also make ProxyService refcounted so the sharing between profiles is explicit. Review URL: http://codereview.chromium.org/13701 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6966 0039d316-1c4b-4281-b951-d872f2087c98
* Re-land rollback (which was not causing UI test regression)jar@google.com2008-12-131-5/+11
| | | | | | tbr=ojan git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6963 0039d316-1c4b-4281-b951-d872f2087c98
* Removing VERBOSE=1 option, superceeded by standard hammer --verbose option.bradnelson@chromium.org2008-12-131-10/+0
| | | | | | Review URL: http://codereview.chromium.org/14082 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6962 0039d316-1c4b-4281-b951-d872f2087c98
* Fix purify complaint about FontData structs being leaked. These are held in adarin@chromium.org2008-12-131-4/+4
| | | | | | | | | | | | cache that never evicts anything, so they are not real leaks. We just used to free them before to probably make purify happy, and I didn't realize that when I made recent changes to the file. Now we clean up the FontData structs again. R=brettw Review URL: http://codereview.chromium.org/14410 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6961 0039d316-1c4b-4281-b951-d872f2087c98
* Fix max build bustage.darin@google.com2008-12-131-6/+12
| | | | | | | | TBR=dglazkov Review URL: http://codereview.chromium.org/14098 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6960 0039d316-1c4b-4281-b951-d872f2087c98
* Move implementation of BackForwardListClient to a new class nameddarin@chromium.org2008-12-1315-389/+189
| | | | | | | | | | BackForwardListClientImpl. R=dglazkov Review URL: http://codereview.chromium.org/14407 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6959 0039d316-1c4b-4281-b951-d872f2087c98
* Linux: GCC 4.3 warning fixesagl@chromium.org2008-12-131-4/+4
| | | | | | | | | The lastest Skia drop included some code which triggers warnings with GCC 4.3 Review URL: http://codereview.chromium.org/14097 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6958 0039d316-1c4b-4281-b951-d872f2087c98
* Merge 39141:39143: The ScriptCallStack (2/2)dglazkov@google.com2008-12-1217-152/+354
| | | | | | Review URL: http://codereview.chromium.org/14092 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6956 0039d316-1c4b-4281-b951-d872f2087c98
* Disable tests so I can debug offline.tc@google.com2008-12-121-0/+8
| | | | | | | | | TBR=ojan Review URL: http://codereview.chromium.org/14094 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6955 0039d316-1c4b-4281-b951-d872f2087c98