- 27 Oct, 2009 40 commits
-
-
http://codereview.chromium.org/291006sky@chromium.org authored
Open all bookmarks in a bookmark menu folder according to the window disposition derived from the event flags. This is currently only possible with a middle click on the top level bookmark bar button. BUG=19597 TEST=Control click a folder on your bookmark bar, and thorougly test bookmark bar, especially with folders. Review URL: http://codereview.chromium.org/334047 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30281 0039d316-1c4b-4281-b951-d872f2087c98
-
piman@chromium.org authored
Review URL: http://codereview.chromium.org/330027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30280 0039d316-1c4b-4281-b951-d872f2087c98
-
japhet@chromium.org authored
LayoutTests\http\tests\security\frameNavigation\xss-DENIED-plugin-navigation.html is no longer timing out. Rebaseline to match win/linux expectations BUG=none TEST=green build Review URL: http://codereview.chromium.org/345003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30279 0039d316-1c4b-4281-b951-d872f2087c98
-
piman@chromium.org authored
These are mostly minor syntax / missing header fixes. Review URL: http://codereview.chromium.org/338037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30277 0039d316-1c4b-4281-b951-d872f2087c98
-
davemoore@chromium.org authored
Also added underline capability to linux fonts. Review URL: http://codereview.chromium.org/338029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30276 0039d316-1c4b-4281-b951-d872f2087c98
-
vangelis@google.com authored
Adding mapping for third_party/makeself. This is to complete checkin of http://codereview.appspot.com/132050 Review URL: http://codereview.chromium.org/333016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30275 0039d316-1c4b-4281-b951-d872f2087c98
-
vangelis@google.com authored
Adding support for windows safari. This requires registering the o3d plugin with firefox (via registry entries) and adding Safari to the list of supported User Agents. Review URL: http://codereview.chromium.org/326001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30274 0039d316-1c4b-4281-b951-d872f2087c98
-
yaar@chromium.org authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30273 0039d316-1c4b-4281-b951-d872f2087c98
-
zork@chromium.org authored
BUG=none TEST=none Review URL: http://codereview.chromium.org/337034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30272 0039d316-1c4b-4281-b951-d872f2087c98
-
aa@chromium.org authored
TBR=estade@chromium.org git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30271 0039d316-1c4b-4281-b951-d872f2087c98
-
yaar@chromium.org authored
Review URL: http://codereview.chromium.org/330021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30270 0039d316-1c4b-4281-b951-d872f2087c98
-
shess@chromium.org authored
JavaScript can close windows while in the event loop processing a right-click menu. This change prevents sending messages to the tab controller after it has been closed. BUG=25462, 25465 TEST=See bug for test.html. TEST=Run test.html, right-click tab, after close all items should be grayed out. TEST=Run test.html, click tab's close button and hold until tab closes. Should not crash on release. Review URL: http://codereview.chromium.org/335048 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30269 0039d316-1c4b-4281-b951-d872f2087c98
-
jorlow@chromium.org authored
TBR=rolandsteiner TEST=none BUG=none Review URL: http://codereview.chromium.org/337047 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30268 0039d316-1c4b-4281-b951-d872f2087c98
-
mark@chromium.org authored
BUG=24814 TEST=Keystone-enabled Chrome launches without crashing and is able to check for and install updates. Review URL: http://codereview.chromium.org/329041 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30267 0039d316-1c4b-4281-b951-d872f2087c98
-
ananta@chromium.org authored
TBR=amit Review URL: http://codereview.chromium.org/340015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30266 0039d316-1c4b-4281-b951-d872f2087c98
-
evan@chromium.org authored
Personal crusade. Review URL: http://codereview.chromium.org/344003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30265 0039d316-1c4b-4281-b951-d872f2087c98
-
japhet@chromium.org authored
BUG=none TEST=none TBR=markus Review URL: http://codereview.chromium.org/341003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30264 0039d316-1c4b-4281-b951-d872f2087c98
-
ananta@chromium.org authored
If a HTTP post to a server returns any redirect code other than 307, then browsers don't preserve the request method, i.e. they convert the POST request to GET. For 307 redirects browsers preserve redirects. This CL fixes the following issues :- 1. As per the above description, we reset the method which ensures that we don't generate the post related headers. The Post302RedirectGet net test does test this very case. However it works correctly as Chrome follows the redirect and reissues the GET request. In this case this does not occur as the only calls which are invoked on the bind status callback after the redirect are GetBindInfo and BeginningTransaction where we incorrectly return the post related information. Ideally we would want to turn off follow redirects in Urlmon or Chrome. I tried the latter which has a number of issues. 2. In debug mode the chrome_frame_net_tests cause a DCHECK to be fired which indicates that the test is not being run on the UI thread. 3. As the Urlmon requests are now destroyed asynchronously having a DCHECK after the Stop call on the Urlmon request object in the CleanupAsyncRequests function is incorrect. Removed this DCHECK Fixes bug http://code.google.com/p/chromium/issues/detail?id=25643 Bug=25643 Review URL: http://codereview.chromium.org/333043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30261 0039d316-1c4b-4281-b951-d872f2087c98
-
zork@chromium.org authored
BUG=none TEST= 1. Enable bookmark syncing on a mac or linux build. 2. Run chrome with --log-level=0. 3. Options menu -> Sync my Bookmarks. Log in. 4. Check that "XmppSocketAdapter::OnConnectEvent - STATE_TLS_OPEN" appears in the output. Review URL: http://codereview.chromium.org/340007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30259 0039d316-1c4b-4281-b951-d872f2087c98
-
sky@chromium.org authored
Take 2 at this. The only change between this and the first is to add the GetType message to the end of the list and to keep the old message for creating a new browser as well as adding one that takes the type. To change the params of the message requires updating the reference build. That's best done on a weekend when I'm bored. Makes session restore on Chrome OS restore popups. BUG=18862 TEST=none Review URL: http://codereview.chromium.org/329040 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30255 0039d316-1c4b-4281-b951-d872f2087c98
-
evan@chromium.org authored
We use this on OS X, so it shouldn't be harmful and it will fix a visibility issue that came up in http://groups.google.com/group/chromium-dev/browse_thread/thread/800bda968bdc8f29 BUG=17943 Review URL: http://codereview.chromium.org/332035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30253 0039d316-1c4b-4281-b951-d872f2087c98
-
mbelshe@google.com authored
debugging. BUG=none TEST=none Review URL: http://codereview.chromium.org/330030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30252 0039d316-1c4b-4281-b951-d872f2087c98
-
tony@chromium.org authored
2 sec for the history results to be returned (displaying the thumbnails). Work around this by giving extra time to the test. BUG=25949 Review URL: http://codereview.chromium.org/339029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30249 0039d316-1c4b-4281-b951-d872f2087c98
-
timurrrr@chromium.org authored
BUG=25913 TBR=dank Review URL: http://codereview.chromium.org/343004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30247 0039d316-1c4b-4281-b951-d872f2087c98
-
timurrrr@chromium.org authored
I think this may increase the popularity and usability of our tools. Review URL: http://codereview.chromium.org/343002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30246 0039d316-1c4b-4281-b951-d872f2087c98
-
pkasting@chromium.org authored
Loosen RFC 1738 compliance check to allow underscores where we already allowed hyphens, to match real-world needs. I don't believe further loosening will be required but that data will hopefully be coming soon. In the meantime people are asking for this fix. BUG=25714 TEST=Entring "a_b.com" in the omnibox should default to navigate, not search Review URL: http://codereview.chromium.org/339017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30245 0039d316-1c4b-4281-b951-d872f2087c98
-
jorlow@chromium.org authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30244 0039d316-1c4b-4281-b951-d872f2087c98
-
mattm@chromium.org authored
CID=127 BUG=none TEST=none Review URL: http://codereview.chromium.org/304009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30243 0039d316-1c4b-4281-b951-d872f2087c98
-
erg@google.com authored
(This is in preparation for a very large reworking of BrowserThemeProvider). BUG=http://crbug.com/21121 Review URL: http://codereview.chromium.org/338027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30241 0039d316-1c4b-4281-b951-d872f2087c98
-
mark@chromium.org authored
BUG=25948 TEST=With a suitably recent KSR, mess up the update server URL in the ticket, and verify that the update status line in the About box shows the gray icon with "update server not available" after attempting to check for an update. Review URL: http://codereview.chromium.org/344002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30240 0039d316-1c4b-4281-b951-d872f2087c98
-
pkasting@chromium.org authored
BUG=23400 TEST=none Review URL: http://codereview.chromium.org/333034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30239 0039d316-1c4b-4281-b951-d872f2087c98
-
jorlow@chromium.org authored
TBR=japhet BUG=none TEST=none Review URL: http://codereview.chromium.org/339028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30238 0039d316-1c4b-4281-b951-d872f2087c98
-
jorlow@chromium.org authored
TBR=japhet BUG=none TEST=none Review URL: http://codereview.chromium.org/329038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30237 0039d316-1c4b-4281-b951-d872f2087c98
-
jamesr@chromium.org authored
change: https://bugs.webkit.org/show_bug.cgi?id=30785 Patch by: Kelly Norton (knorton@google.com) TEST=create extension, register for events, verify that they fire BUG=none Review URL: http://codereview.chromium.org/339016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30236 0039d316-1c4b-4281-b951-d872f2087c98
-
vangelis@google.com authored
it will be picked up first. This is how scons was setup. This is important for initializing swiftshader. Review URL: http://codereview.chromium.org/331002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30235 0039d316-1c4b-4281-b951-d872f2087c98
-
pkasting@chromium.org authored
BUG=none TEST=none Review URL: http://codereview.chromium.org/329030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30234 0039d316-1c4b-4281-b951-d872f2087c98
-
jorlow@chromium.org authored
TBR=rolandsteiner TEST=none BUG=none Review URL: http://codereview.chromium.org/338045 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30233 0039d316-1c4b-4281-b951-d872f2087c98
-
darin@chromium.org authored
R=yaar BUG=25898,25899,25900,25901, TEST=none Review URL: http://codereview.chromium.org/338041 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30232 0039d316-1c4b-4281-b951-d872f2087c98
-
darin@chromium.org authored
This is hard to test since this bug could only cause a very rare cache collision. R=eroman BUG=25939 TEST=none Review URL: http://codereview.chromium.org/338046 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30231 0039d316-1c4b-4281-b951-d872f2087c98
-
rsesek@chromium.org authored
BUG=None TEST=Preferences-->Under the Hood. Click on downloads path, don't get awkward blue focus ring. Review URL: http://codereview.chromium.org/330028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30230 0039d316-1c4b-4281-b951-d872f2087c98
-