summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Linux: Don't bother trying to install gold via apt-get. Just always build ↵thestig@chromium.org2011-09-281-8/+2
| | | | | | | | | | our own copy. BUG=79769 TEST=none Review URL: http://codereview.chromium.org/8073002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103155 0039d316-1c4b-4281-b951-d872f2087c98
* Remove ExtensionSettingsNoopStorage and replace its functionality with a newmpcomplete@chromium.org2011-09-2816-203/+128
| | | | | | | | | | | | | | InMemoryExtensionSettingsStorage (rather than attempting to implement its functionality by wrapping the no-op storage in a cache). This simplifies a lot of code, and it's needed for a future change. BUG= TEST=updated unit tests Review URL: http://codereview.chromium.org/8051013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103153 0039d316-1c4b-4281-b951-d872f2087c98
* Calculate maximum height of bookmark bar before starting animation.ncj674@motorola.com2011-09-282-9/+20
| | | | | | | | | | BUG=98143 TEST=Press Ctrl+Shift+B to show/hide bookmark bar and switch between different tabs. Bookmark bar height should be same always. Review URL: http://codereview.chromium.org/8051016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103152 0039d316-1c4b-4281-b951-d872f2087c98
* Occasionally the triggering of the password infobar is failing with most of ↵venkataramana@chromium.org2011-09-281-0/+2
| | | | | | | | | | | the test cases. So disabling the following test cases. BUG=91887 Test=NONE Review URL: http://codereview.chromium.org/8070005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103150 0039d316-1c4b-4281-b951-d872f2087c98
* clean up: Consolidate tab_contents_container_views.{cc,h} into ↵oshima@google.com2011-09-285-182/+191
| | | | | | | | | | | | | | | | | tab_contents_container.{cc,h} tab_contents_container_views is no longer necessary after TabContentsViewTouch removal. renamed tab_contents_container_views.h to tab_contents_container.h moved code in tab_contents_contanier_views.cc to tab_contents_container.cc. removed tab_conetnts_container_views.{cc,h} BUG=none TEST=none Review URL: http://codereview.chromium.org/8072002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103149 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress GPU layout test failures.mihaip@chromium.org2011-09-281-0/+4
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103148 0039d316-1c4b-4281-b951-d872f2087c98
* Replace NewRunnableMethod calls with base::Bind in chrome/browser/prefs.bauerb@chromium.org2011-09-283-9/+10
| | | | | | | | | | BUG=35223 TEST=none Review URL: http://codereview.chromium.org/8067001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103145 0039d316-1c4b-4281-b951-d872f2087c98
* Enable low-latency audio by default.enal@chromium.org2011-09-284-7/+7
| | | | | | | | | | | | | | | | | | | | | Still keep old high-latency code, but it works only when "--disable-low-latency-audio" flag specified. Rename command-line flag. BUG=http://code.google.com/p/chromium/issues/detail?id=61022 Review URL: http://codereview.chromium.org/7827016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103143 0039d316-1c4b-4281-b951-d872f2087c98
* [Linux] Move plugin probing back in-process. This temporarily undoes r102971.rsesek@chromium.org2011-09-281-2/+9
| | | | | | | | | | BUG=17863,98294 TEST=With the Totem plugin installed, launch Chromium and go to about:plugins. You have plugins. Review URL: http://codereview.chromium.org/8059039 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103142 0039d316-1c4b-4281-b951-d872f2087c98
* Don't collect UMA stats on multipart page loads because it'stony@chromium.org2011-09-281-0/+5
| | | | | | | | | | | not clear what to measure. I was hitting the DCHECK for commit <= first_paint. Review URL: http://codereview.chromium.org/8050029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103141 0039d316-1c4b-4281-b951-d872f2087c98
* views: Convert ButtonDropDown to use the new callback system.tfarina@chromium.org2011-09-282-11/+14
| | | | | | | | R=sky@chromium.org,ajwong@chromium.org Review URL: http://codereview.chromium.org/8059038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103140 0039d316-1c4b-4281-b951-d872f2087c98
* views: Remove focus_grabber_factory_ from MessageBoxView.tfarina@chromium.org2011-09-282-7/+2
| | | | | | | | | | This appear to be left around after some refactoring, so I'm just removing it now. R=sky@chromium.org,akalin@chromium.org Review URL: http://codereview.chromium.org/8055034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103139 0039d316-1c4b-4281-b951-d872f2087c98
* Properly scope the lifetime of the |PPB_VideoCapture_Impl|.viettrungluu@chromium.org2011-09-284-5/+62
| | | | | | | | | | | | | | | | | | Since it/its proxy are |media::VideoCapture::EventHandler|s, they must remain alive from the |StartCapture()| call until |OnRemoved()| is received. (Precisely, the |PPB_VideoCapture_Impl| owns a |PlatformVideoCapture(Impl)|, which owns a |VideoCaptureHandlerProxy|. Keeping the |PPB_VideoCapture_Impl| alive keeps all these things alive.) BUG=none TEST=Closing a page with a PPAPI plugin using the video capture interface doesn't cause the renderer to crash. Other similar things should also work more or less properly (and at least not crash). Review URL: http://codereview.chromium.org/8052023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103138 0039d316-1c4b-4281-b951-d872f2087c98
* Remove gethosts from list of files with bad license.garykac@chromium.org2011-09-281-3/+0
| | | | | | | | | | BUG=98112 TEST=none Review URL: http://codereview.chromium.org/8056017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103137 0039d316-1c4b-4281-b951-d872f2087c98
* Delete use of wstring for views_examples titles and simplify code.asvitkine@chromium.org2011-09-2841-121/+38
| | | | | | | | | BUG=none TEST=views_examples still works as before. Review URL: http://codereview.chromium.org/8071001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103136 0039d316-1c4b-4281-b951-d872f2087c98
* Animating the visibility change of settings button in Panel for Windows.jianli@chromium.org2011-09-283-19/+109
| | | | | | | | BUG=none TEST=manual test by moving mouse around to show or hide settings button Review URL: http://codereview.chromium.org/8051002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103134 0039d316-1c4b-4281-b951-d872f2087c98
* Add remoting_host_plugin.pdb to build archive.lambroslambrou@google.com2011-09-281-0/+1
| | | | | | | | | BUG=None TEST=File appears in archives Review URL: http://codereview.chromium.org/8038052 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103133 0039d316-1c4b-4281-b951-d872f2087c98
* [cros,webui] Update captive portal warning message and title.altimofeev@chromium.org2011-09-285-31/+71
| | | | | | | | | BUG=chromium-os:18744,chromium-os:20469 TEST=manual Review URL: http://codereview.chromium.org/7980010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103132 0039d316-1c4b-4281-b951-d872f2087c98
* Fix untrusted build of ppb_file_system test I broke in ↵dmichael@chromium.org2011-09-281-1/+1
| | | | | | | | | | | | | | http://codereview.chromium.org/8038049. BUG=None Test=Trybots TBR=dmichael TEST= Review URL: http://codereview.chromium.org/8068003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103130 0039d316-1c4b-4281-b951-d872f2087c98
* FTP: fix compatibility problem with ftp.comconlink.co.zaphajdan.jr@chromium.org2011-09-281-2/+0
| | | | | | | | | | | | We should also treat transient errors for USER and PASS as requiring auth. Also note very similar issue 25023. BUG=98212 Review URL: http://codereview.chromium.org/8059028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103129 0039d316-1c4b-4281-b951-d872f2087c98
* Remove disabled parts of ImporterTestphajdan.jr@chromium.org2011-09-281-37/+0
| | | | | | | | BUG=2466 Review URL: http://codereview.chromium.org/8056015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103128 0039d316-1c4b-4281-b951-d872f2087c98
* More aura changesoshima@google.com2011-09-286-42/+43
| | | | | | | | | | | | backing_store_x.cc -> gtk webplugin_delegate_impl.h : USE_X11 -> TOOLKIT_USES_GTK BUG=none TEST=none Review URL: http://codereview.chromium.org/8043017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103127 0039d316-1c4b-4281-b951-d872f2087c98
* move shutdown button to top leftoshima@chromium.org2011-09-282-10/+10
| | | | | | | | | | BUG=chromium-os:20652 TEST=none Review URL: http://codereview.chromium.org/8054036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103126 0039d316-1c4b-4281-b951-d872f2087c98
* Remove unused variable ppb_core.dmichael@chromium.org2011-09-281-1/+0
| | | | | | | | | | BUG=None TEST=trybots TBR=tbarzic Review URL: http://codereview.chromium.org/8038049 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103125 0039d316-1c4b-4281-b951-d872f2087c98
* Implement DrawAttention for panels on linux.prasadt@chromium.org2011-09-286-19/+181
| | | | | | | | | | | | | - Sets titlebar background to orange and titlebar text to white. - Clicking on titlebar while drawing attention won't minimize the panel unless its a long click, held greater than 500 milliseconds. BUG=None TEST=Manual. Platform independent automated test in the works by dimich. Review URL: http://codereview.chromium.org/8059004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103124 0039d316-1c4b-4281-b951-d872f2087c98
* add missing, but used headersensonic@google.com2011-09-281-0/+10
| | | | | | | | | | | R=sky,sadrul BUG= TEST= Review URL: http://codereview.chromium.org/8004002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103123 0039d316-1c4b-4281-b951-d872f2087c98
* touchui: Convert XI2 MT tracking id to slot id.sadrul@chromium.org2011-09-283-22/+93
| | | | | | | | | | | | | | | The slot id mapped from tracking id is used as the touch id, and the gesture recognizer expects touch points to always start from 0. Patch from: Ningxin Hu <ningxin.hu@intel.com> (http://codereview.chromium.org/7927001/) BUG=95150 TEST=manually (touch-drag to scroll webpage, tap to click link) Review URL: http://codereview.chromium.org/8070003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103122 0039d316-1c4b-4281-b951-d872f2087c98
* Remove definitions copied from Win7 SDK.jschuh@chromium.org2011-09-281-120/+0
| | | | | | | | BUG=16903 Review URL: http://codereview.chromium.org/8058001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103121 0039d316-1c4b-4281-b951-d872f2087c98
* Remove dead macros after updating _WIN32_WINNT and WINVERjschuh@chromium.org2011-09-282-17/+0
| | | | | | | | BUG=92941 Review URL: http://codereview.chromium.org/8038027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103120 0039d316-1c4b-4281-b951-d872f2087c98
* [cros,webui] Reserve space for network icon for all icons.altimofeev@chromium.org2011-09-281-0/+4
| | | | | | | | | BUG=chromium-os:20757 TEST=manual Review URL: http://codereview.chromium.org/8065010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103119 0039d316-1c4b-4281-b951-d872f2087c98
* Move RenderWidgetHostViewMac to content.avi@chromium.org2011-09-2822-90/+105
| | | | | | | | | | | | | BUG=95573 TEST=no visible change Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=103113 Reverted: http://src.chromium.org/viewvc/chrome?view=rev&revision=103117 Review URL: http://codereview.chromium.org/8052026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103118 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 103113 - Move RenderWidgetHostViewMac to content.torne@chromium.org2011-09-2821-103/+88
| | | | | | | | | | | | BUG=95573 TEST=no visible change Review URL: http://codereview.chromium.org/8052026 TBR=avi@chromium.org Review URL: http://codereview.chromium.org/8066010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103117 0039d316-1c4b-4281-b951-d872f2087c98
* Update TouchEvent initialize for USE_XI2_MT according tosadrul@chromium.org2011-09-281-3/+1
| | | | | | | | | | | http://codereview.chromium.org/7942004/ refactoring. BUG= TEST=build with touchui=1 use_xi2_mt=1 Review URL: http://codereview.chromium.org/8060002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103116 0039d316-1c4b-4281-b951-d872f2087c98
* Add chromeos_webui watchlist.nkostylev@chromium.org2011-09-281-3/+10
| | | | | | | | | | | | | Update chromeos_login watchlist definition. Add myself to chromeos, chromeos_webui watchlists. BUG=none TEST=none Review URL: http://codereview.chromium.org/8069003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103115 0039d316-1c4b-4281-b951-d872f2087c98
* Make the browser window the same size as the cros widget.danakj@chromium.org2011-09-281-1/+4
| | | | | | | | | | | R=sadrul BUG= TEST= Review URL: http://codereview.chromium.org/8060016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103114 0039d316-1c4b-4281-b951-d872f2087c98
* Move RenderWidgetHostViewMac to content.avi@chromium.org2011-09-2821-88/+103
| | | | | | | | | BUG=95573 TEST=no visible change Review URL: http://codereview.chromium.org/8052026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103113 0039d316-1c4b-4281-b951-d872f2087c98
* Experimentally strictify third-party cookie blocking.mkwst@chromium.org2011-09-281-0/+10
| | | | | | | | | | | | | | | | | | This CL turns on strict third-party cookie blocking by forcing the inclusion of the `kBlockReadingThirdPartyCookies` command-line flag. The goal is to determine the effect of a change in cookie-blocking behavior; if we Break The Web™ for Canary users, we'll drop it. If not, we'll re-evaluate the default behavior of the `kBlockThirdPartyCookies` pref. I intend to revert this change after a few Canary cycles. BUG=98241 TEST=Start Chrome. Is the command-line flag set? Review URL: http://codereview.chromium.org/8060030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103112 0039d316-1c4b-4281-b951-d872f2087c98
* Fixes painting issue with bookmarks barpkotwicz@chromium.org2011-09-281-1/+2
| | | | | | | | | | | | | When the bookmarks bar was showing, opening a dialog which paints on top of the bookmark bar in touch_ui and dismissing it would leave ghosts where the dialog used to be. The reason is that the root view has a layer. It would paint the entire view tree into the root view including content which is contained by child layers BUG=none TEST=none Review URL: http://codereview.chromium.org/8046019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103111 0039d316-1c4b-4281-b951-d872f2087c98
* Retry fetching policies even if there is no dmtoken.joaodasilva@chromium.org2011-09-283-30/+4
| | | | | | | | | | | | | | | | When there is no dmtoken, a new registration with the dmserver will be attempted, followed by a policy fetch. This edge case is triggered if the initial register failed, which actually happens often during testing. BUG=chromium-os:20775 TEST=Login on chromeos using a test dmserver, with the server down. Start the server after logging in. Click "fetch policies" in chrome://policy; it should work. Review URL: http://codereview.chromium.org/8051019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103110 0039d316-1c4b-4281-b951-d872f2087c98
* Spelling corrections on description of the strings. This has no impact on ↵qsr@google.com2011-09-281-3/+3
| | | | | | | | | | | | the build. BUG=none TEST=none Review URL: http://codereview.chromium.org/8066001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103109 0039d316-1c4b-4281-b951-d872f2087c98
* Disable AccessibilityMacUITest.TestInitialPageNotifications.torne@chromium.org2011-09-281-1/+2
| | | | | | | | | | | This test times out consistently; disabling until fixed. BUG=98388 TBR=dtseng@chromium.org Review URL: http://codereview.chromium.org/8069001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103108 0039d316-1c4b-4281-b951-d872f2087c98
* Polish the Extension Settings page a bit (fix late-breaking review comments).finnur@chromium.org2011-09-283-86/+94
| | | | | | | | BUG=87378 TEST=None, stylistic changes, shouldn't change how the page works. Review URL: http://codereview.chromium.org/8008015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103107 0039d316-1c4b-4281-b951-d872f2087c98
* [cros] Persist locale change during OOBE.nkostylev@chromium.org2011-09-281-3/+8
| | | | | | | | | BUG=chromium-os:20747 TEST=Manual. Run fresh OOBE, change locale, reboot, locale saved. Review URL: http://codereview.chromium.org/8050015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103106 0039d316-1c4b-4281-b951-d872f2087c98
* Update .DEPS.gitchrome-admin@google.com2011-09-281-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103105 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit roll r96191:96201hamaji@chromium.org2011-09-282-13/+1
| | | | | | | | | | BUG=none TEST=canary TBR=mihaip Review URL: http://codereview.chromium.org/8059047 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103104 0039d316-1c4b-4281-b951-d872f2087c98
* Disable TabUpdateNoPermissions.torne@chromium.org2011-09-281-1/+2
| | | | | | | | | | | | ExtensionApiTest.TabUpdateNoPermissions has been timing out frequently on all platforms with no obvious cause; disabling for now. BUG=98383 TBR=miket@chromium.org Review URL: http://codereview.chromium.org/8066003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103103 0039d316-1c4b-4281-b951-d872f2087c98
* Change std::wstring to string16 on WidgetDelegate::GetWindowTitleyosin@chromium.org2011-09-2882-279/+318
| | | | | | Review URL: http://codereview.chromium.org/8065001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103102 0039d316-1c4b-4281-b951-d872f2087c98
* Enhance error reporting for leveldb errors in origin/directory database codekinuko@chromium.org2011-09-284-28/+43
| | | | | | | | | BUG=94314 TEST=none (no functionality changes) Review URL: http://codereview.chromium.org/8054009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103099 0039d316-1c4b-4281-b951-d872f2087c98
* Updating trunk VERSION from 894.0 to 895.0chrome-release@google.com2011-09-281-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103098 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 103095 - Change std::wstring to string16 on ↵yosin@chromium.org2011-09-2881-317/+278
| | | | | | | | | | | | | | | WidgetDelegate::GetWindowTitle. BUG=68267 TEST=No visible changes Review URL: http://codereview.chromium.org/7972009 TBR=yosin@chromium.org Review URL: http://codereview.chromium.org/8052030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103096 0039d316-1c4b-4281-b951-d872f2087c98