summaryrefslogtreecommitdiffstats
path: root/chrome
Commit message (Collapse)AuthorAgeFilesLines
* Add resources.pak to be included in chrome official buildseblake@chromium.org2010-06-301-0/+5
| | | | | | | | | | (ChromeOS Bug id) BUG=4405 TEST=passed linux try server Review URL: http://codereview.chromium.org/2885008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51280 0039d316-1c4b-4281-b951-d872f2087c98
* GTK: always draw popup window custom frameestade@chromium.org2010-06-301-9/+6
| | | | | | | | | BUG=47386 TEST=manual Review URL: http://codereview.chromium.org/2799044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51278 0039d316-1c4b-4281-b951-d872f2087c98
* TTF: Added unit test for dock_info.jhawkins@chromium.org2010-06-302-0/+193
| | | | | | | | | | | BUG=NONE TEST=DockInfoTest Patch by Xiaotian Chen <sargrass@google.com> Review URL: http://codereview.chromium.org/2805049 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51276 0039d316-1c4b-4281-b951-d872f2087c98
* Cleanup: Mark some dom_ui files as ChromeOS only.thestig@chromium.org2010-06-301-1/+4
| | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/2831032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51275 0039d316-1c4b-4281-b951-d872f2087c98
* Undo suppressions now that ExtensionsServiceTest.ReloadExtensions has been ↵akalin@chromium.org2010-06-301-3/+0
| | | | | | | | | | | fixed. BUG=47843,47863 TEST=none Review URL: http://codereview.chromium.org/2867033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51273 0039d316-1c4b-4281-b951-d872f2087c98
* [Mac]Revert RWHVM to use NSTextInput protocol instead of NSTextInputClientsuzhe@chromium.org2010-06-302-23/+8
| | | | | | | | | | | | Using NSTextInputClient protocol somehow causes beep when typing. BUG=25037 Use NSTextInputClient instead of NSTextInput ? BUG=47890 [Leopard] Typing any letter beeps in the normal edit box TEST=Typing in text box should not beep. Review URL: http://codereview.chromium.org/2810040 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51272 0039d316-1c4b-4281-b951-d872f2087c98
* Inlining accessors and mutators of gpu_info so that there won't be duplicate ↵rlp@chromium.org2010-06-303-31/+37
| | | | | | | | | | | across platform implementations. BUG=38736 TEST=gpu unittests Review URL: http://codereview.chromium.org/2830025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51270 0039d316-1c4b-4281-b951-d872f2087c98
* GTK: Cleanups to the new wrench menu.erg@chromium.org2010-06-3010-21/+250
| | | | | | | | | | | | | | | - Make the rendering for multiple buttons pretty by unifying sequnces of buttons. - Add the zoom label control and make the wrench menu model listen for notifications about zoom percentage changing. - Fixes crash that would have gone away once this was taken out from behind a flag BUG=45757 TEST=none Review URL: http://codereview.chromium.org/2799043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51266 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 51263 (breaks the Linux views build)jcivelli@chromium.org2010-06-3012-192/+88
| | | | | | | | | | | | | | | | | | | | | | | | Adds support for language detection on the server side. The CLD can sometimes fail to detect the language of a page, in which case the translate server might be able to. This CL ensures the browser deals with the server side language detection properly. Also added a new factory method to create error translate infobar delegates that does not assert when the language code is incorrect. Also changed the enums in TranslateInfoBarDelegate2 to use the constant name style, as it is the preferred naming for enums according to the style guide. Original review: http://codereview.chromium.org/2859013/show BUG=40857 TEST=Visit http://www.saanconf.org/saanday.htm, use the context menu to translate the page. You should get an error mentioning the page is already in English. Review URL: http://codereview.chromium.org/2860037 TBR=jcivelli@chromium.org Review URL: http://codereview.chromium.org/2873035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51265 0039d316-1c4b-4281-b951-d872f2087c98
* Adds support for language detection on the server side.jcivelli@chromium.org2010-06-3012-88/+192
| | | | | | | | | | | | | | | | | | | | The CLD can sometimes fail to detect the language of a page, in which case the translate server might be able to. This CL ensures the browser deals with the server side language detection properly. Also added a new factory method to create error translate infobar delegates that does not assert when the language code is incorrect. Also changed the enums in TranslateInfoBarDelegate2 to use the constant name style, as it is the preferred naming for enums according to the style guide. Original review: http://codereview.chromium.org/2859013/show BUG=40857 TEST=Visit http://www.saanconf.org/saanday.htm, use the context menu to translate the page. You should get an error mentioning the page is already in English. Review URL: http://codereview.chromium.org/2860037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51263 0039d316-1c4b-4281-b951-d872f2087c98
* Minor fixes to toolbar keyboard accessibility: focusing the location bardmazzoni@chromium.org2010-06-302-26/+29
| | | | | | | | | | | | | | | should select all, accessibility focus should be preserved when the whole window loses and regains focus, and clicking on the location bar should exit accessibility focus mode. BUG=47380 BUG=36070 BUG=47784 TEST=none Review URL: http://codereview.chromium.org/2833040 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51262 0039d316-1c4b-4281-b951-d872f2087c98
* Mark ProcessSingletonTest.StartupRaceCondition as failing on Linuxstuartmorgan@chromium.org2010-06-301-1/+7
| | | | | | | | | | | TBR=erikkay BUG=47979 TEST=Greener Linux bots Review URL: http://codereview.chromium.org/2811038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51261 0039d316-1c4b-4281-b951-d872f2087c98
* Mark CommandAgainGoesBackToOptionsTab as failingstuartmorgan@chromium.org2010-06-301-1/+1
| | | | | | | | | | | TBR=zelidrag BUG=47977 TEST=Green ChromeOS bot Review URL: http://codereview.chromium.org/2833043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51259 0039d316-1c4b-4281-b951-d872f2087c98
* Require renegotiation info from a whitelist of servers.agl@chromium.org2010-06-302-0/+10
| | | | | | | | | | | | | | | | | | | | | | The renegotiation extension was introduced into TLS in [1], to address the attack described in [2]. In order to fully protect ourselves, clients need to require support from servers. However, these things take a long time to roll out. As an initial measure, we start to require the extension from a whitelist of servers that we known to support the extension. We are then protected from prefix attacks against these servers. Over time, if the list grows we might want to share it with Mozilla, but we'll start simple. [1] http://tools.ietf.org/html/rfc5746 [2] http://www.educatedguesswork.org/2009/11/understanding_the_tls_renegoti.html http://codereview.chromium.org/2045006/show TEST=Setup a dummy TLS server without renegotiation extension support (Hardy) will do and force mail.google.com to it using /etc/hosts. Navigate to https://mail.google.com and check for ERR_SSL_UNSAFE_NEGOTIATION. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51258 0039d316-1c4b-4281-b951-d872f2087c98
* Ben said make the tab animations faster. Pink smash tab animation!pinkerton@chromium.org2010-06-301-1/+1
| | | | | | | | BUG=45737 TEST=opening and closing tabs really fast Review URL: http://codereview.chromium.org/2863033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51257 0039d316-1c4b-4281-b951-d872f2087c98
* Modify NPAPI::PluginList::GetPluginInfo() to return true also for disabled ↵bauerb@chromium.org2010-06-302-3/+3
| | | | | | | | | | | | | plugins. GetPluginInfo() now returns true if the plugin is found, whether it's enabled or not. To find out whether the plugin is enabled, check the enabled flag in the WebPluginInfo struct output parameter. This enables getting information about disabled plugins. TEST=none BUG=none Review URL: http://codereview.chromium.org/2858035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51254 0039d316-1c4b-4281-b951-d872f2087c98
* Don't crash on a right-aligned link in a LinkInfoBarDelegate.bauerb@chromium.org2010-06-302-1/+6
| | | | | | | | | TEST=LinkInfoBarControllerTest.* BUG=47728 Review URL: http://codereview.chromium.org/2842031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51252 0039d316-1c4b-4281-b951-d872f2087c98
* Fix multiple issues with ADM/ADMX templatesdanno@chromium.org2010-06-304-103/+162
| | | | | | | | | | | | | | | Correct descriptions in ADM/ADMX template and change registry key to "Chrome" from "Google Chrome". Fix numerous punctuation, verbiage and wording issues. Fix HomepageIsNewTabPage so that not checking the checkbox actually forces the hompage to the homepage URL. BUG=none TEST=manual Review URL: http://codereview.chromium.org/2806040 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51251 0039d316-1c4b-4281-b951-d872f2087c98
* Mark OOBE process as completed in Local State.nkostylev@google.com2010-06-305-38/+81
| | | | | | | | | | | Add 10% when checking for update. If image is not cached on server it will take some time. BUG= http://crosbug.com/4208, http://crosbug.com/4003 TEST=Manual. Start with fresh install. After Sign In screen is shown, select BWSI and then Sign out. OOBE should not be started again. Review URL: http://codereview.chromium.org/2833038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51250 0039d316-1c4b-4281-b951-d872f2087c98
* Make menu button for language selection focusable on new user login screen.dpolukhin@chromium.org2010-06-301-0/+1
| | | | | | | | | BUG=crosbug.com/4116 TEST=Language menu should be focusable by keyboard on new user login. Review URL: http://codereview.chromium.org/2815037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51249 0039d316-1c4b-4281-b951-d872f2087c98
* Updating trunk VERSION from 452.0 to 453.0chrome-release@google.com2010-06-301-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51244 0039d316-1c4b-4281-b951-d872f2087c98
* Fixed positions of label and border windows to avoid flickering on initial ↵avayvod@chromium.org2010-06-301-16/+15
| | | | | | | | | | | show of login screen. BUG=cros:4356 TEST=Verify that no white rectangles flicker near user pods on initial show. Review URL: http://codereview.chromium.org/2887002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51242 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 51231 - Loosen permission on extension temp dir when a flag is used.skerner@chromium.org2010-06-305-48/+6
| | | | | | | | | | | | | | | | | | | | Issue 35198 can not be reproduced locally. To enable users to do experiments, three command line flags are added to chrome: --issue35198-crxdir-browser: Have the browser process create the directory in which the extension will be unzipped. --issue35198-logging: Enable log messages from directory creation in the utility process to be moved to the browser process. --issue35198-permission: Use the most permissive file permissions possible on the extension unpack directory. BUG=35198 TEST=manual Review URL: http://codereview.chromium.org/2802018 TBR=skerner@chromium.org Review URL: http://codereview.chromium.org/2861039 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51238 0039d316-1c4b-4281-b951-d872f2087c98
* Loosen permission on extension temp dir when a flag is used.skerner@chromium.org2010-06-305-6/+48
| | | | | | | | | | | | | | | | | Issue 35198 can not be reproduced locally. To enable users to do experiments, three command line flags are added to chrome: --issue35198-crxdir-browser: Have the browser process create the directory in which the extension will be unzipped. --issue35198-logging: Enable log messages from directory creation in the utility process to be moved to the browser process. --issue35198-permission: Use the most permissive file permissions possible on the extension unpack directory. BUG=35198 TEST=manual Review URL: http://codereview.chromium.org/2802018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51231 0039d316-1c4b-4281-b951-d872f2087c98
* Decomped registration logic into its own class.akalin@chromium.org2010-06-309-43/+548
| | | | | | | | | | | Handle registration events properly. BUG=34647 TEST=new unittests Review URL: http://codereview.chromium.org/2861034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51230 0039d316-1c4b-4281-b951-d872f2087c98
* Move GetPageSizeAndMarginsInPoints from linux code to generic code.hamaji@chromium.org2010-06-303-66/+126
| | | | | | | | | | | It seems we can use this function in other environments. BUG=47277 TEST=none Review URL: http://codereview.chromium.org/2807029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51227 0039d316-1c4b-4281-b951-d872f2087c98
* Enable extensions sync by default.akalin@chromium.org2010-06-302-8/+28
| | | | | | | | | BUG=32413 TEST=manual Review URL: http://codereview.chromium.org/2833042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51226 0039d316-1c4b-4281-b951-d872f2087c98
* Remove extended attributes. The lame broken codepath in the DBS was causingnick@chromium.org2010-06-3013-519/+183
| | | | | | | | | | | several tests to fail their SaveChanges()es. Add unit test for the DBS migrations. BUG=47466 TEST=sync_unit_tests (and included new tests). Review URL: http://codereview.chromium.org/2830027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51225 0039d316-1c4b-4281-b951-d872f2087c98
* Add EnableInputMethodsAndKeyboardLayouts function.yusukes@google.com2010-06-305-15/+111
| | | | | | | | | | I'll use the function to implement crosbug.com/2619 (Implement input language selector on the log in page) BUG=none Review URL: http://codereview.chromium.org/2861022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51220 0039d316-1c4b-4281-b951-d872f2087c98
* Cleaning up syntax problems in known_crashes.txtace@chromium.org2010-06-301-18/+10
| | | | | | Review URL: http://codereview.chromium.org/2817042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51218 0039d316-1c4b-4281-b951-d872f2087c98
* Move chrome/common/net/notifier to jingle/notifier so that it can be used by ↵ajwong@chromium.org2010-06-3070-6054/+32
| | | | | | | | | | | remoting/remoting.gyp. BUG=none TEST=compiles Review URL: http://codereview.chromium.org/2885005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51216 0039d316-1c4b-4281-b951-d872f2087c98
* Fixed invalid read in ExtensionsServiceTest.ReloadExtensions.akalin@chromium.org2010-06-301-0/+4
| | | | | | | | | BUG=47843,47863 TEST=unittests, valgrind Review URL: http://codereview.chromium.org/2872024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51215 0039d316-1c4b-4281-b951-d872f2087c98
* Reland - Fix NULL dereference in ExtensionTabsModule.rafaelw@chromium.org2010-06-301-16/+18
| | | | | | | | | | | | | | | | original review: http://codereview.chromium.org/2885006 ---------- This is almost certainly caused by a start-up or shut-down race, but CreateWindowValue doesn't have much meaning without a window attached to the browser, so just return an error in those cases BUG=47808 TEST=none. TBR=asargent Review URL: http://codereview.chromium.org/2858036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51213 0039d316-1c4b-4281-b951-d872f2087c98
* Implement getAttachedShaders for WebGL.zmo@google.com2010-06-302-0/+8
| | | | | | Review URL: http://codereview.chromium.org/2805047 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51206 0039d316-1c4b-4281-b951-d872f2087c98
* Windows: Replace tabs in content settings with a listbox.thakis@chromium.org2010-06-303-62/+103
| | | | | | | | | | | Depends on http://codereview.chromium.org/2815034 BUG=45546 TEST=Open content settings dialog. Should have a list on the left instead of tabs on top. Other than that, the dialog should work as before. Review URL: http://codereview.chromium.org/2799042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51205 0039d316-1c4b-4281-b951-d872f2087c98
* NTP: Remove command line flag that allowed a local file to be used for the ↵arv@chromium.org2010-06-303-43/+2
| | | | | | | | | | | new tab page. BUG=None TEST=None Review URL: http://codereview.chromium.org/2886002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51204 0039d316-1c4b-4281-b951-d872f2087c98
* Split options page code/html into its own set of files.zelidrag@chromium.org2010-06-3011-223/+682
| | | | | | | | | | | | Changed grit to support generic <!--include file="..."--> tag in html files to support the scenario above. TEST=make sure chrome:options page still shows correctly BUG=chromium-os:4429 Review URL: http://codereview.chromium.org/2835009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51203 0039d316-1c4b-4281-b951-d872f2087c98
* AutoFill: Add support for multi-select and delete.tfarina@chromium.org2010-06-302-10/+17
| | | | | | | | | BUG=46075 TEST=see bug Review URL: http://codereview.chromium.org/2828014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51202 0039d316-1c4b-4281-b951-d872f2087c98
* Change MenuItems to use divs and add disabled propertyfeldstein@chromium.org2010-06-301-2/+8
| | | | | | | | | | | | | Stops using buttons for menu items so that it doesn't conflict with the button.css file. Added a BOOL_ATTR disabled property so the attribute is set on the element. It was originally not being set and not being styled as disabled. BUG=NONE TEST=NONE Review URL: http://codereview.chromium.org/2863031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51201 0039d316-1c4b-4281-b951-d872f2087c98
* AutoFill fills only clicked field when form was filled prior.dhollowa@chromium.org2010-06-303-0/+70
| | | | | | | | | | | | These changes make it so that individual fields are filled with the value selected from the input element popup menu. AutoFill profile data is not queried in this case. BUG=44618, 47917 TEST=RenderViewTest.SendForms, RenderViewTest.FillFormElement Review URL: http://codereview.chromium.org/2808036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51200 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 51110 because of regression 47858- Group plugins in about:plugins and ↵jam@chromium.org2010-06-2910-979/+255
| | | | | | | | | | | | | | | | | | | | | show update link for out-of-date ones. Tracking patch by mavrommatis, original review here: <http://codereview.chromium.org/1991005> Original description follows: (1) Group plugins with the same name together. (2) Show a download link for plugin versions with known security problems in about:plugins. BUG=3910 TEST=Open "chrome://plugins", see that plugins are grouped, and that any vulnerable plugins are marked red. Try enabling and disabling plugin groups. Review URL: http://codereview.chromium.org/2835018 TBR=bauerb@chromium.org Review URL: http://codereview.chromium.org/2805048 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51191 0039d316-1c4b-4281-b951-d872f2087c98
* grd: Add "Features:" string.thakis@chromium.org2010-06-291-0/+3
| | | | | | Review URL: http://codereview.chromium.org/2862037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51190 0039d316-1c4b-4281-b951-d872f2087c98
* Fixed about:cache in about:about pagehinoka@chromium.org2010-06-291-2/+3
| | | | | | | | | | | | changed about:cache to redirect to chrome://view-http-cache instead of chrome://about/cache. TEST=Go to about:about and click on about:cache, check that it works BUG=44699 Review URL: http://codereview.chromium.org/2860038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51182 0039d316-1c4b-4281-b951-d872f2087c98
* Added support for vector printing for Pepper v1 plugins for Linux.sanjeevr@chromium.org2010-06-292-9/+55
| | | | | | | | | BUG=None TEST=Test printing from Chrome PDF plugin on Linux. Review URL: http://codereview.chromium.org/2807027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51181 0039d316-1c4b-4281-b951-d872f2087c98
* Canvas refactoring Phase 4a:ben@chromium.org2010-06-2914-87/+56
| | | | | | | | | | | Move Save, SaveLayerAlpha and Restore onto gfx::Canvas. BUG=none TEST=none Review URL: http://codereview.chromium.org/2846035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51179 0039d316-1c4b-4281-b951-d872f2087c98
* Refactored ChromeInvalidationClient to have its own listener type.akalin@chromium.org2010-06-296-213/+149
| | | | | | | | | BUG=34647 TEST=manual Review URL: http://codereview.chromium.org/2817037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51178 0039d316-1c4b-4281-b951-d872f2087c98
* Add switches and apis in safebrowsing protocol_manager that will allow ↵lzheng@chromium.org2010-06-297-83/+343
| | | | | | | | | | | end-to-end test later. BUG=6787,47318 TEST=protocol_manager_unittest.cc Review URL: http://codereview.chromium.org/2868030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51177 0039d316-1c4b-4281-b951-d872f2087c98
* Make sure sync starts up on browser restart as well as initial sync flow.tim@chromium.org2010-06-2912-49/+72
| | | | | | | | | | BUG=47781 TEST=enable sync. close chrome. open chrome. verify sync is working (e.g. by adding a bookmark and watching it sync to another client). sync_integration_tests also cover this. Review URL: http://codereview.chromium.org/2824037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51175 0039d316-1c4b-4281-b951-d872f2087c98
* Add switch for specifying a directory to load plugins, so that test plugins ↵stuartmorgan@chromium.org2010-06-294-11/+19
| | | | | | | | | | | can be loaded on the Mac without modifying the application bundle. BUG=47305 TEST=Mac plugin tests still run. No PlugIns directory created in the app bundle. Review URL: http://codereview.chromium.org/2814030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51174 0039d316-1c4b-4281-b951-d872f2087c98
* Disable a unit test that I broke.estade@chromium.org2010-06-291-1/+2
| | | | | | | | | | | | Green the tree while I work on fixing it. BUG=none TEST=tree goes green TBR=stuartmorgan Review URL: http://codereview.chromium.org/2825029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51170 0039d316-1c4b-4281-b951-d872f2087c98