- 18 Jul, 2010 15 commits
-
-
agl@chromium.org authored
BUG=27507 TEST=Navigate to https://encrypted.google.com and click the green padlock. Verify that the details presented are reasonable. http://codereview.chromium.org/3033001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52857 0039d316-1c4b-4281-b951-d872f2087c98
-
agl@chromium.org authored
18 bits of the connection status word are reserved for the negotiated cipher suite and compression method. This plumbs those bits for NSS. It also includes a lookup table to convert the cipher suite id into strings for the frontend. Although NSS already has a function which does something similar (SSL_GetCipherSuiteInfo), it's backed by a table which is limited only to those cipher suites which are compiled into NSS. Since we have other SSL library backends (and because we can do a better job of representing the data anyway), we have our own. In the future we might want to compile these tables out of NSS and save some space. BUG=27507 TEST=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52856 0039d316-1c4b-4281-b951-d872f2087c98
-
pam@chromium.org authored
TBR=huanr BUG=49463 TEST=reliability bot goes green Review URL: http://codereview.chromium.org/3022006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52855 0039d316-1c4b-4281-b951-d872f2087c98
-
jeremy@chromium.org authored
Review URL: http://codereview.chromium.org/3010011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52854 0039d316-1c4b-4281-b951-d872f2087c98
-
jeremy@chromium.org authored
Turns out that we do need to escape the ]} characters on 10.5 . BUG=None TEST=Installing themes should continue to work. Review URL: http://codereview.chromium.org/3022005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52853 0039d316-1c4b-4281-b951-d872f2087c98
-
jeremy@chromium.org authored
Review URL: http://codereview.chromium.org/2825056 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52850 0039d316-1c4b-4281-b951-d872f2087c98
-
jeremy@chromium.org authored
Review URL: http://codereview.chromium.org/3012008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52849 0039d316-1c4b-4281-b951-d872f2087c98
-
jeremy@chromium.org authored
The download manager has a concept of a request originating from the "Save As..." contextual menu v.s. a direct download request from the renderer, however this was't hooked up. The Download Manager uses boolean variables named "save_as" in various locations to track whether a download originated via a contextual menu selection (in which case the save panel should be displayed) or via a renderer request (in which case no UI should be displayed). This CL contains 3 distinct changes: 1. DownloadFileManager::OnDownloadURL() is where downloads originating from the contextual menu are dispatched, set save_as to true if the download starts here. 2. ResourceMessageFilter::OnDownloadURL() is where downloads originating from the renderer are dispatched (e.g. option-click), don't display UI for these. 3. The "save_as" variable in the DownloadCreateInfo structure doesn't really reflect the origin of the request but whether the Save panel should be displayed. This can happen for example on a name collision or if the default download location isn't writeable regardless of the action that initiated the download. Renamed the variable and added documentation to this effect. BUG=36775 TEST=Option-click an image, the image should be saved without prompting the user for a download locate. Save an image via the "Save As..." context menu, you should be prompted for the save location. Review URL: http://codereview.chromium.org/2927006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52848 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-release@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52846 0039d316-1c4b-4281-b951-d872f2087c98
-
jcivelli@chromium.org authored
BUG=49012 TEST=See bug. Original review: http://codereview.chromium.org/2819051 Review URL: http://codereview.chromium.org/3040007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52844 0039d316-1c4b-4281-b951-d872f2087c98
-
jcivelli@chromium.org authored
Google translate supports some new languages, makes Chrome aware of them. That way the translation feature works with them. BUG=None TEST=Visit pages in the new alpha languages (see http://translate.google.com/about/intl/en_ALL/). Make sure the pages can be translated. Original review: http://codereview.chromium.org/3013010 Review URL: http://codereview.chromium.org/3024005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52843 0039d316-1c4b-4281-b951-d872f2087c98
-
pfeldman@chromium.org authored
Review URL: http://codereview.chromium.org/3044008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52842 0039d316-1c4b-4281-b951-d872f2087c98
-
georgey@chromium.org authored
Also added inferred labels implementation. Label inferred from the person name + differences in other fields to distinguish entries. BUG=47120,46634,46635,47435,48881,47430 TEST=in the mocks: http://folder/roma/design/chrome/autofill/ and unit tested. Review URL: http://codereview.chromium.org/2801020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52838 0039d316-1c4b-4281-b951-d872f2087c98
-
tfarina@chromium.org authored
BUG=None TEST=trybots Signed-off-by:
Thiago Farina <tfarina@chromium.org> Review URL: http://codereview.chromium.org/2843062 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52837 0039d316-1c4b-4281-b951-d872f2087c98
-
nirnimesh@chromium.org authored
BUG=49378 Review URL: http://codereview.chromium.org/3031008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52836 0039d316-1c4b-4281-b951-d872f2087c98
-
- 17 Jul, 2010 25 commits
-
-
thakis@chromium.org authored
This is never called from "live" code, but chrome/browser/tab_contents/thumbnail_generator.cc uses it. ThumbnailGenerator is currently used only on windows, but I'd like to use it on OS X. TransportDIB::Create() isn't called on OS X because all created by chrome/browser/renderer_host/render_widget_helper.cc, which creates only the shared memory object and stores it away. The actual TransportDIB is created by calls to TransportDIB::Map() in both browser and renderer processes. Review URL: http://codereview.chromium.org/3020008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52835 0039d316-1c4b-4281-b951-d872f2087c98
-
chase@chromium.org authored
A recent regression in intl times results is causing the XP perf bots to go red. I put a bug on file to track the regression, now let's green up the tree. BUG=49434 TEST=xp intl steps are green TBR=nsylvain@chromium.org Review URL: http://codereview.chromium.org/2832059 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52834 0039d316-1c4b-4281-b951-d872f2087c98
-
pfeldman@chromium.org authored
Review URL: http://codereview.chromium.org/2847059 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52833 0039d316-1c4b-4281-b951-d872f2087c98
-
johnnyg@chromium.org authored
BUG=none TEST=none Review URL: http://codereview.chromium.org/3048001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52832 0039d316-1c4b-4281-b951-d872f2087c98
-
pfeldman@chromium.org authored
Review URL: http://codereview.chromium.org/2868054 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52831 0039d316-1c4b-4281-b951-d872f2087c98
-
sky@chromium.org authored
on gtk. This is a revert of most of r52070and 51478. I've kept parts of these changes we want in though: comments, nuking nano tab gap on views, having app tabs use a bigger icon. BUG=49013 TEST=none Review URL: http://codereview.chromium.org/3011007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52830 0039d316-1c4b-4281-b951-d872f2087c98
-
johnnyg@chromium.org authored
Implement WebFileSystemImpl::directoryName. This is needed for directory upload (including webkit layout tests). BUG=41762 TEST=webkit layout test fast/forms/input-file-directory-upload.html Review URL: http://codereview.chromium.org/2847056 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52829 0039d316-1c4b-4281-b951-d872f2087c98
-
cbentzel@chromium.org authored
BUG=None TEST=net_unittests --gtest_filter="*HttpAuthHandlerNegotiate*" Review URL: http://codereview.chromium.org/3018008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52828 0039d316-1c4b-4281-b951-d872f2087c98
-
tfarina@chromium.org authored
BUG=None TEST=trybots Signed-off-by:
Thiago Farina <tfarina@chromium.org> Review URL: http://codereview.chromium.org/2843061 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52827 0039d316-1c4b-4281-b951-d872f2087c98
-
thestig@chromium.org authored
Set url fetch test timeout back to old values. Increase UI test command timeout a bit to accommodate failng tests. BUG=none TEST=Vista perf goes green; xp test dbg 2 goes green. TBR=phajdan.jr Review URL: http://codereview.chromium.org/3044007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52824 0039d316-1c4b-4281-b951-d872f2087c98
-
thestig@chromium.org authored
BUG=49412 TEST=Heapchecker goes green! TBR=mbelshe Review URL: http://codereview.chromium.org/3024003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52823 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-release@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52821 0039d316-1c4b-4281-b951-d872f2087c98
-
thestig@chromium.org authored
BUG=49300 TEST=none TBR=tyoshino Review URL: http://codereview.chromium.org/2827056 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52819 0039d316-1c4b-4281-b951-d872f2087c98
-
thestig@chromium.org authored
BUG=46886 TEST=Heapchecker net gets greener. TBR=glider Review URL: http://codereview.chromium.org/3021004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52818 0039d316-1c4b-4281-b951-d872f2087c98
-
thestig@chromium.org authored
BUG=49409 TEST=none TBR=huanr Review URL: http://codereview.chromium.org/3008008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52817 0039d316-1c4b-4281-b951-d872f2087c98
-
georgey@chromium.org authored
New Blue style for for autofill Info-bar, to be eventually used for all info bars (for that more changes needed), it also Windows only. BUG=47233 TEST=Mocks @ http://folder/roma/design/chrome/autofill/ page 23 Review URL: http://codereview.chromium.org/3027004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52816 0039d316-1c4b-4281-b951-d872f2087c98
-
thestig@chromium.org authored
BUG=21461 TEST=GTK dialog matches Windows dialog. Review URL: http://codereview.chromium.org/2813060 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52815 0039d316-1c4b-4281-b951-d872f2087c98
-
jam@chromium.org authored
Review URL: http://codereview.chromium.org/3028009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52814 0039d316-1c4b-4281-b951-d872f2087c98
-
thestig@chromium.org authored
BUG=49404 TEST=none TBR=ahendrickson Review URL: http://codereview.chromium.org/3037007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52813 0039d316-1c4b-4281-b951-d872f2087c98
-
thestig@chromium.org authored
TBR=sargrass BUG=none TEST=chromeos builder goes green TBR=csilv@chromium.org Review URL: http://codereview.chromium.org/3032006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52812 0039d316-1c4b-4281-b951-d872f2087c98
-
jam@chromium.org authored
Avoid flashing when resizing plugins that use PaintManager. Copy the bitmap from the old backing store to the new one so that we have something to display until the plugin repaints. Credit to Darin for tracking this down and the suggested fix. Review URL: http://codereview.chromium.org/2834052 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52811 0039d316-1c4b-4281-b951-d872f2087c98
-
thestig@chromium.org authored
BUG=48883 TEST=Exercise Personal Stuff page via --enabled-tabbed-options Review URL: http://codereview.chromium.org/2819046 TBR=sargrass@google.com Review URL: http://codereview.chromium.org/3012007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52810 0039d316-1c4b-4281-b951-d872f2087c98
-
jam@chromium.org authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52809 0039d316-1c4b-4281-b951-d872f2087c98
-
tfarina@chromium.org authored
BUG=6574 TEST=None Review URL: http://codereview.chromium.org/2850031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52808 0039d316-1c4b-4281-b951-d872f2087c98
-
shess@chromium.org authored
Certain decorations like the keyword-search bubble let mouse events fall through to the field, as indicated by an i-beam cursor. This change causes decorations next to the text area to be aggregated into the text-area's cursor rect. BUG=41612 TEST=Keyword-search bubble shows I-beam cursor. TEST=Location icon and star and page actions show arrow. Review URL: http://codereview.chromium.org/2825048 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52807 0039d316-1c4b-4281-b951-d872f2087c98
-