- 09 Sep, 2009 40 commits
-
-
pinkerton@chromium.org authored
BUG=none TEST=none Review URL: http://codereview.chromium.org/202031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25794 0039d316-1c4b-4281-b951-d872f2087c98
-
eroman@chromium.org authored
Update test expectations to include the flaky layout test script-load-and-error-events.svg which has been failing for past 2 days. BUG=http://crbug.com/21411 Review URL: http://codereview.chromium.org/201072 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25793 0039d316-1c4b-4281-b951-d872f2087c98
-
kuchhal@chromium.org authored
BUG=21401 Review URL: http://codereview.chromium.org/201071 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25792 0039d316-1c4b-4281-b951-d872f2087c98
-
evan@chromium.org authored
Random cleanup done in part of an unrelated change. Review URL: http://codereview.chromium.org/195045 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25790 0039d316-1c4b-4281-b951-d872f2087c98
-
arv@google.com authored
This is a work around since the WebKit fix is not on the M3 branch. BUG=15711 TEST=Tab around. At all times something on the page should have focus (unless the address bar got the focus). Review URL: http://codereview.chromium.org/201068 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25789 0039d316-1c4b-4281-b951-d872f2087c98
-
jhawkins@chromium.org authored
BUG=5027 TEST=none Review URL: http://codereview.chromium.org/195035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25788 0039d316-1c4b-4281-b951-d872f2087c98
-
pinkerton@chromium.org authored
BUG=14926 TEST=drag tabs and make sure nothing breaks. Review URL: http://codereview.chromium.org/195043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25787 0039d316-1c4b-4281-b951-d872f2087c98
-
pinkerton@chromium.org authored
now access it from the main menu and context menu and use it to perform spelling tasks. For more detail, see http://code.google.com/p/chromium/wiki/SpellingPanelPlanningDoc Patch from pwicks86@gmail.com (Paul Wicks). BUG=None TEST=The spelling panel should work in os x. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25786 0039d316-1c4b-4281-b951-d872f2087c98
-
evan@chromium.org authored
It's also empty; this works around a scons warning. Review URL: http://codereview.chromium.org/202029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25785 0039d316-1c4b-4281-b951-d872f2087c98
-
dglazkov@chromium.org authored
The difference between repaint areas is due to the difference in repaint logic. Safari/Mac port uses NSView's native rectangle collection/unification, and we just unify all into one damage rect. R=jparent BUG=8630 TEST=none Review URL: http://codereview.chromium.org/196069 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25784 0039d316-1c4b-4281-b951-d872f2087c98
-
evan@chromium.org authored
As discussed in http://groups.google.com/group/chromium-dev/browse_thread/thread/7a70e5fcbac786a9 Review URL: http://codereview.chromium.org/195044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25783 0039d316-1c4b-4281-b951-d872f2087c98
-
eroman@chromium.org authored
TBR=darin Review URL: http://codereview.chromium.org/196066 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25782 0039d316-1c4b-4281-b951-d872f2087c98
-
huanr@chromium.org authored
TEST=none. BUG=none. Review URL: http://codereview.chromium.org/199065 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25781 0039d316-1c4b-4281-b951-d872f2087c98
-
jhawkins@chromium.org authored
BUG=5027 TEST=none Review URL: http://codereview.chromium.org/195036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25780 0039d316-1c4b-4281-b951-d872f2087c98
-
cira@chromium.org authored
Simple fix of extension_l10n_util that allows folders in form ".some_name" to exist in _locales folder. It helps testing/loading extensions from svn tree (skips .svn folder, doesn't fail). Review URL: http://codereview.chromium.org/196029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25779 0039d316-1c4b-4281-b951-d872f2087c98
-
thestig@chromium.org authored
BUG=None TEST=None Original Review URL: http://codereview.chromium.org/174189 Patch from Thiago Farina <thiago.farina@gmail.com>. Review URL: http://codereview.chromium.org/193047 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25778 0039d316-1c4b-4281-b951-d872f2087c98
-
mdm@chromium.org authored
BUG=none TEST=none Review URL: http://codereview.chromium.org/203001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25777 0039d316-1c4b-4281-b951-d872f2087c98
-
dglazkov@chromium.org authored
Chromium today has its own config.h (over here http://src.chromium.org/svn/trunk/src/webkit/config.h.in), which was forked a while back from webkit's config.h. I'm preparing the ground for the webkit port, I'm depreciating chromium's config.h and moving its chromium-specific defines into the ifdef PLATFORM(CHROMIUM) section of webkit's config.h. Due the complexity of this step, it is broken into three steps: Step 1: Merge in changes from webkit's config.h into chromium's config.h.in. Step 2: Copy config.h.in into webkit as the new config.h. Step 3: Delete chromiums config.h.in and make it use webkit's config.h. THIS PATCH IS FOR STEP 1. Patch by yaar@chromium.org, see review here: http://codereview.chromium.org/201056 Review URL: http://codereview.chromium.org/192056 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25776 0039d316-1c4b-4281-b951-d872f2087c98
-
maruel@chromium.org authored
TEST=none BUG=none Review URL: http://codereview.chromium.org/196067 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25775 0039d316-1c4b-4281-b951-d872f2087c98
-
gman@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25774 0039d316-1c4b-4281-b951-d872f2087c98
-
mdm@chromium.org authored
BUG=none TEST=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25773 0039d316-1c4b-4281-b951-d872f2087c98
-
gman@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25772 0039d316-1c4b-4281-b951-d872f2087c98
-
phajdan.jr@chromium.org authored
This way it provides more specific error code for the user. TEST=Covered by net_unittests. http://crbug.com/20405 Review URL: http://codereview.chromium.org/197050 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25771 0039d316-1c4b-4281-b951-d872f2087c98
-
huanr@chromium.org authored
BUG=16591 TEST=History UI test Review URL: http://codereview.chromium.org/198011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25770 0039d316-1c4b-4281-b951-d872f2087c98
-
cpu@chromium.org authored
- Different strings, pretty much the same deal. - One case removes the radio buttons. BUG=none TEST=none Review URL: http://codereview.chromium.org/198038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25769 0039d316-1c4b-4281-b951-d872f2087c98
-
sky@chromium.org authored
BUG=none TEST=none Review URL: http://codereview.chromium.org/197063 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25768 0039d316-1c4b-4281-b951-d872f2087c98
-
mpcomplete@chromium.org authored
of closing. This is an attempt to fix a crash bug. TEST=no BUG=21201 Review URL: http://codereview.chromium.org/197054 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25767 0039d316-1c4b-4281-b951-d872f2087c98
-
estade@chromium.org authored
Repro steps: - open a gmail tab and get someone to message you such that the tab title keeps changing - put that tab to the right of a bunch of other tabs - close a bunch of the tabs to the left of gmail Each time you close a tab you have about a 10% chance of reproing. The solution is essentially copy-pasted from the windows tabstrip. The Browser change is somewhat unrelated. I noticed the comment "Do not dereference |contents|" and that we were in fact dereferncing |contents|, so I worked around it. BUG=13811 Review URL: http://codereview.chromium.org/199054 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25766 0039d316-1c4b-4281-b951-d872f2087c98
-
amanda@chromium.org authored
the Google Talk voice & video plugin. BUG=none TEST=video chats should work with recent versions of the Google Talk voice and video chat plugin. Review URL: http://codereview.chromium.org/199061 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25764 0039d316-1c4b-4281-b951-d872f2087c98
-
pinkerton@chromium.org authored
Making the optional page/wrench toolbar buttons bordered, moving them together and rounding them so they look like back/forward. Gives them mouse-over highlighting. BUG=18571 TEST=buttons still work. Review URL: http://codereview.chromium.org/202023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25763 0039d316-1c4b-4281-b951-d872f2087c98
-
jhawkins@chromium.org authored
BUG=5027 TEST=none Review URL: http://codereview.chromium.org/194051 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25761 0039d316-1c4b-4281-b951-d872f2087c98
-
sidchat@google.com authored
Make BrowserView layout both extension shelf and bookmarks bar if toolstrips change in the extension shelf. BUG=21269 BUG=21270 BUG=21274 TEST=none Review URL: http://codereview.chromium.org/192041 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25760 0039d316-1c4b-4281-b951-d872f2087c98
-
pinkerton@chromium.org authored
BUG=20711, 20726 TEST=tab titles look better when long Review URL: http://codereview.chromium.org/196065 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25757 0039d316-1c4b-4281-b951-d872f2087c98
-
dglazkov@chromium.org authored
The difference between repaint areas is due to the difference in repaint logic. Safari/Mac port uses NSView's native rectangle collection/unification, and we just unify all into one damage rect. R=jparent BUG=8630 TEST=none Review URL: http://codereview.chromium.org/201063 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25756 0039d316-1c4b-4281-b951-d872f2087c98
-
ananta@chromium.org authored
Bug=19393 TBR=huanr Review URL: http://codereview.chromium.org/201064 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25753 0039d316-1c4b-4281-b951-d872f2087c98
-
sidchat@google.com authored
BUG=20936 TEST=none Review URL: http://codereview.chromium.org/194042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25752 0039d316-1c4b-4281-b951-d872f2087c98
-
phajdan.jr@chromium.org authored
Fixes an FTP transaction hang when we wait for server's response and the server apparently waits for us. TEST=See bug. http://crbug.com/21127 Review URL: http://codereview.chromium.org/192042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25750 0039d316-1c4b-4281-b951-d872f2087c98
-
apatrick@google.com authored
Implemented shared memory as an NPObject. Using NPObject method to expose mapping function rather than NPAPI change. Note that shared memory objects currently lose identity when they cross a process boundary. If an object is sent across a boundary and back, there are now two objects representing the same handle in a single process. This can be fixed. TEST=none BUG=none Review URL: http://codereview.chromium.org/194049 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25749 0039d316-1c4b-4281-b951-d872f2087c98
-
evan@chromium.org authored
Review URL: http://codereview.chromium.org/193049 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25747 0039d316-1c4b-4281-b951-d872f2087c98
-
bradnelson@chromium.org authored
BUG=None TEST=None TBR=sgk Review URL: http://codereview.chromium.org/192052 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25742 0039d316-1c4b-4281-b951-d872f2087c98
-