summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Use SSLClientSocketNSS on Mac OS X. By default, chrome still useswtc@chromium.org2010-06-0112-115/+121
| | | | | | | | | | | | | | | | | | SSLClientSocketMac. Specify the --use-nss-for-ssl command-line option to use SSLClientSocketNSS. The nss.gyp in src/net/third_party/nss is renamed ssl.gyp to avoid a naming conflict with the nss.gyp in src/third_party/nss. The GYP generator for Xcode project files disallows same-named .gyp files. SSL client authentication doesn't work yet. R=mark BUG=30689 TEST=No build and test failures on Mac and Windows. Review URL: http://codereview.chromium.org/2322008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48650 0039d316-1c4b-4281-b951-d872f2087c98
* Only disable UnloadTest.BrowserCloseTabWhenOtherTabHasListener under valgrindestade@chromium.org2010-06-012-3/+3
| | | | | | | | | | | (leave it enabled on non-valgrind Linux) BUG=45562 TEST=green tree Review URL: http://codereview.chromium.org/2428002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48649 0039d316-1c4b-4281-b951-d872f2087c98
* Disable optimization for s_texcombine.c because it takesnsylvain@chromium.org2010-06-012-1/+5
| | | | | | | | ~20 minutes to build on Chromium XP. Review URL: http://codereview.chromium.org/2460002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48648 0039d316-1c4b-4281-b951-d872f2087c98
* Makes side tabs render phantom state and close button when notsky@chromium.org2010-06-012-5/+23
| | | | | | | | | | | hovered. BUG=none TEST=none Review URL: http://codereview.chromium.org/2234008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48647 0039d316-1c4b-4281-b951-d872f2087c98
* Disable UnloadTest.BrowserCloseTabWhenOtherTabHasListenerjrg@chromium.org2010-06-011-1/+3
| | | | | | | | | | | | | Makes Linux valgrind unhappy http://build.chromium.org/buildbot/memory/builders/Linux%20Tests%20(valgrind)(4)/builds/5866/steps/valgrind%20test:%20ui/logs/stdio BUG=http://crbug.com/45562 TBR=jungshik@chromium.org Review URL: http://codereview.chromium.org/2417003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48646 0039d316-1c4b-4281-b951-d872f2087c98
* Re-flakify TEST_F(NPAPITester, FLAKY_ManyPlugins)jrg@chromium.org2010-06-011-1/+3
| | | | | | | | | | | | | | Fails under valgrind http://build.chromium.org/buildbot/memory/builders/Chromium%20Mac%20UI%20(valgrind)(4)/builds/2607/steps/valgrind%20test:%20ui/logs/stdio BUG=http://crbug.com/28372 BUG=http://crbug.com/45561 TBR=jungshik@chromium.org Review URL: http://codereview.chromium.org/2482001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48645 0039d316-1c4b-4281-b951-d872f2087c98
* Fixing AutoReset to be a template.gspencer@chromium.org2010-06-0116-30/+33
| | | | | | | | | | | I've run into a couple of times this week when I needed one of these, for two different types besides bool. Time to fix the TODO. TEST=trybots FTW, and built locally. BUG=none Review URL: http://codereview.chromium.org/2394001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48644 0039d316-1c4b-4281-b951-d872f2087c98
* Force embeddedbitmaps off for test_shell.agl@chromium.org2010-06-011-0/+4
| | | | | | | | | | The embeddedbitmaps flag controls if we'll use bitmap strikes in vector fonts or not. Previously this was unspecified so was distro dependent. This fixes WebKit layout test issues with WebKit's r60477. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48643 0039d316-1c4b-4281-b951-d872f2087c98
* Generate .dSYM bundles for loadable_modules as well.jam@chromium.org2010-06-011-4/+4
| | | | | | Review URL: http://codereview.chromium.org/2468002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48642 0039d316-1c4b-4281-b951-d872f2087c98
* Added notification for network message.chocobo@chromium.org2010-06-0111-4/+143
| | | | | | | | BUG=chromium-os:2556 TEST=manually connect to network with wrong password and see notification. Review URL: http://codereview.chromium.org/2074017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48641 0039d316-1c4b-4281-b951-d872f2087c98
* Add back http access to the try server.maruel@chromium.org2010-06-011-0/+2
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48640 0039d316-1c4b-4281-b951-d872f2087c98
* Adding an SQLite database for TopSites.nshkrob@chromium.org2010-06-016-9/+496
| | | | | | | | | BUG=None TEST=TopSitesTest Review URL: http://codereview.chromium.org/2249004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48639 0039d316-1c4b-4281-b951-d872f2087c98
* Cleaning up the node focus notification.jcivelli@google.com2010-06-016-11/+6
| | | | | | | | | | | | | The notification that the focus changed in the page now uses webkit::WebViewClient::focusedNodeChanged() implemented by RenderView. It was previously relying on the more general webkit::WebWidgetClient::didFocus() implemented in RenderWidget. (that should ideally only be fired when the frame gets focused, not everytime the focus in the frame changes). BUG=None TEST=Interactive UI tests should still pass (especially BrowserFocus*) Review URL: http://codereview.chromium.org/2301001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48638 0039d316-1c4b-4281-b951-d872f2087c98
* Now arbitration is supported (r48631) enable GPS.joth@chromium.org2010-06-015-17/+7
| | | | | | | | | | | Also updated GPS timestamp's to be based on the host machine's own clock (avoids clock drift affecting freshness calculation) and updated Geoposition's docs to clarify this. BUG=43868 TEST=Run gpsfake nmea.nme, then ./out/Debug/chrome-wrapper --log-level=1 http://maps.google.com/maps/m (map follows GPS track) Review URL: http://codereview.chromium.org/2438003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48636 0039d316-1c4b-4281-b951-d872f2087c98
* Implement browse without sign in mode.nkostylev@google.com2010-06-0120-38/+169
| | | | | | | | | | | | | | Mount tmpfs, start new session for incognito user. Session manager change http://codereview.chromium.org/2419001 BUG= http://crosbug.com/2849 TEST=Open BWSI mode. Review URL: http://codereview.chromium.org/2371001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48635 0039d316-1c4b-4281-b951-d872f2087c98
* [GTTF] Add FRIEND_TEST_ALL_PREFIXES, a FRIEND_TEST replacementphajdan.jr@chromium.org2010-06-0152-219/+262
| | | | | | | | | | | that works with all test prefixes (DISABLED, FLAKY, FAILS). TEST=none BUG=44549 Review URL: http://codereview.chromium.org/2439001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48634 0039d316-1c4b-4281-b951-d872f2087c98
* Move net::HTTPSProber from net_base to netmnissler@chromium.org2010-06-014-4/+4
| | | | | | | | | | | | | net::HTTPSProber belongs into the net library, where also it's only user net::URLRequest is living. This fixes undefined references in net_base caused by net::HTTPSProber when not linking against net. BUG=45493 TEST=Building hresolv with the plain ld linker in shared library configuration should not generate undefined references. Review URL: http://codereview.chromium.org/2441001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48632 0039d316-1c4b-4281-b951-d872f2087c98
* Implement location arbitration (kudos to previous internal projects this is ↵joth@chromium.org2010-06-015-88/+426
| | | | | | | | | | | lifted from) BUG=38509 TEST=GeolocationLocationArbitratorTest.Arbitration Review URL: http://codereview.chromium.org/2376001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48631 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit roll 60467:60469pfeldman@chromium.org2010-06-011-1/+1
| | | | | | Review URL: http://codereview.chromium.org/2431002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48630 0039d316-1c4b-4281-b951-d872f2087c98
* Fix regression of websocket/tests/simple-stress.htmlukai@chromium.org2010-06-014-16/+38
| | | | | | | | | | | | | | | | | | Since stress-test.html tries to send 256K message, but we'll set 32K for max_pending_send_allowed in SocketStream. Thus, WebCore::SocketStreamHandle won't send full websocket frame for such large message since WebSocketJob doesn't notify OnSentData at all. Don't parse websocket frame for sending to avoid this issue for now. Also disable buffering and parsing websocket frame for receiving to fix performance regression. BUG=32018 TEST=LayoutTests/websocket/tests/stress-test.html passes Review URL: http://codereview.chromium.org/2453002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48629 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: inspector settings are now serialized into map, not a stringpfeldman@chromium.org2010-06-0113-31/+57
| | | | | | | | | | WebKit roll 60462:60647 Original review: http://codereview.chromium.org/2422001 Review URL: http://codereview.chromium.org/2459002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48628 0039d316-1c4b-4281-b951-d872f2087c98
* Add Filipino and Spanish Latin America to Languages and Input dialogsatorux@chromium.org2010-06-011-0/+5
| | | | | | | | | | | | | | As far as I've studied from the web, there seems to be no standard keyboard layout for Filipino, and XKB does not have keybouard layouts for Filipino. For now, associate Filipino with the US keyboard layout as tt seems that US keyboard layout is widely used. BUG=chromium-os:3644 3689 TEST=manually on the netbook Review URL: http://codereview.chromium.org/2456001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48627 0039d316-1c4b-4281-b951-d872f2087c98
* Don't run ProcessUtilTest.EnableLFH under Dr.Memorytimurrrr@chromium.org2010-06-011-0/+1
| | | | | | | TBR=glider Review URL: http://codereview.chromium.org/2461001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48626 0039d316-1c4b-4281-b951-d872f2087c98
* Fix Remove button in Languages and Input dialog, and a crash bug in the dialogsatorux@chromium.org2010-06-012-113/+140
| | | | | | | | | | | | | | | | - Users should not be able to remove a language that is set to the UI language - Users should not be able to disable all input methods in Languages and Input dialog - Languages and Input dialog should not crash even when there is no language Along the way, associate Indonesian with the US keyboard. This is nicer than showing "Display Chromium OS in this language" only. BUG=chromium-os:3686 3687 TEST=manually on the netbook Review URL: http://codereview.chromium.org/2420002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48625 0039d316-1c4b-4281-b951-d872f2087c98
* Add dependency to default_plugin in a case of inside_chromium_build=0tkent@google.com2010-06-011-1/+1
| | | | | | | | | | and non-Windows. BUG=none TEST=none Review URL: http://codereview.chromium.org/2421002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48624 0039d316-1c4b-4281-b951-d872f2087c98
* Don't run some of the base tests under Dr.Memorytimurrrr@chromium.org2010-06-011-0/+5
| | | | | | | TBR=glider Review URL: http://codereview.chromium.org/2417002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48623 0039d316-1c4b-4281-b951-d872f2087c98
* Add runner and analyzer for Dr.Memorytimurrrr@chromium.org2010-06-012-0/+213
| | | | | | | TBR=glider Review URL: http://codereview.chromium.org/2455001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48622 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit roll 60433:60462rolandsteiner@chromium.org2010-06-011-1/+1
| | | | | | | | | | | BUG=none TEST=none TBR=pkasting,tkent Review URL: http://codereview.chromium.org/2434002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48621 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: disable Scripts panel if remote debugging is enabledyurys@chromium.org2010-06-015-0/+21
| | | | | | Review URL: http://codereview.chromium.org/2429001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48620 0039d316-1c4b-4281-b951-d872f2087c98
* Add Chewing options windowzork@chromium.org2010-06-0110-0/+616
| | | | | | | | | BUG=chromium-os:2624 TEST=Open the IME settings window. Add Traditional Chinese. Check that there is an options dialog next to Chewing, and click on it. Review URL: http://codereview.chromium.org/2421001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48619 0039d316-1c4b-4281-b951-d872f2087c98
* Factor out WebSocket frame handler out of WebSocketJob.ukai@chromium.org2010-06-018-144/+565
| | | | | | | | | | | | | WebSocket frame handler might be used to count number of frames, variance of type or length of frame. It might be also used to compress/decompress message in websocket frame. BUG=none TEST=none Review URL: http://codereview.chromium.org/2078002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48615 0039d316-1c4b-4281-b951-d872f2087c98
* Remove deprecated file_util::ReplaceExtension API.tfarina@chromium.org2010-06-014-76/+1
| | | | | | | | | BUG=24672 TEST=out/Debug/base_unittests Review URL: http://codereview.chromium.org/2445001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48614 0039d316-1c4b-4281-b951-d872f2087c98
* Re-enable the offset computation logic for the vertical candidate window.satorux@chromium.org2010-06-011-14/+10
| | | | | | | | | | | | | | | | | | | | | | The problem with the original change was that it didn't call in GetHorizontalOffset() in OnSetLocationCursor(). Outside web contetns in Chrome, UpdateLookupTable signal is followed by SetLocationCursor signal. This caused: 1. OnUpdateLookupTable() to move the candidate window with the offset computed 2. Then OnSetLocationCursor() to move the candidate window without the offset. This resulted in a flicker of the candidate window. BUG=chromium-os:2720 TEST=manually on the netbook Review URL: http://codereview.chromium.org/2423001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48612 0039d316-1c4b-4281-b951-d872f2087c98
* Avoid calling CreateWindow while checking for previous instances of Chrome ↵robertshield@chromium.org2010-05-311-38/+8
| | | | | | | | | | | Frame. (Stuff the data in the lpfnWndProc member of the WNDCLASSEX structure instead). BUG=none TEST=none Review URL: http://codereview.chromium.org/2272002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48609 0039d316-1c4b-4281-b951-d872f2087c98
* Support Indonesian UI.yusukes@google.com2010-05-312-3/+26
| | | | | | | | | BUG=chromium-os:3643 TEST=manually Review URL: http://codereview.chromium.org/2425001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48603 0039d316-1c4b-4281-b951-d872f2087c98
* Revert v8 push because of several chrashes in reliability tests.ricow@chromium.org2010-05-311-1/+1
| | | | | | Review URL: http://codereview.chromium.org/2431001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48602 0039d316-1c4b-4281-b951-d872f2087c98
* Ectended one suppression for net_unittests, added another one.glider@chromium.org2010-05-311-1/+9
| | | | | | | | | BUG=44738 TBR=mbelshe Review URL: http://codereview.chromium.org/2428001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48601 0039d316-1c4b-4281-b951-d872f2087c98
* Fix test expectations for language tooltips.zork@chromium.org2010-05-311-3/+3
| | | | | | | | | BUG=none TEST=run browser_tests Review URL: http://codereview.chromium.org/2426001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48600 0039d316-1c4b-4281-b951-d872f2087c98
* Added cp service parameter to ClientLogin authentication.avayvod@google.com2010-05-318-128/+236
| | | | | | | | | | | Use received auth token to get user image from Contacts API. BUG=cros:2347 TEST=Verify that correct user image is downloaded on login and shown on consequent login. Review URL: http://codereview.chromium.org/2222007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48597 0039d316-1c4b-4281-b951-d872f2087c98
* Update V8 to revision 4756.ricow@chromium.org2010-05-311-1/+1
| | | | | | Review URL: http://codereview.chromium.org/2420001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48596 0039d316-1c4b-4281-b951-d872f2087c98
* Add Cangjie layout name.zork@chromium.org2010-05-312-0/+6
| | | | | | | | | BUG=chromium-os:3428 TEST=Open the IME config menu, check that cangjie has a readable name. Review URL: http://codereview.chromium.org/2412001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48595 0039d316-1c4b-4281-b951-d872f2087c98
* Updating trunk VERSION from 422.0 to 423.0chrome-release@google.com2010-05-311-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48593 0039d316-1c4b-4281-b951-d872f2087c98
* Add test name to OOP timeout log message so the log parser knows which one ↵pam@chromium.org2010-05-311-1/+1
| | | | | | | | | | timed out. BUG=34764 TEST=buildbot waterfall reports don't show "did not complete" when test times out Review URL: http://codereview.chromium.org/2342002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48591 0039d316-1c4b-4281-b951-d872f2087c98
* A quick fix for Issue 38417.hbono@chromium.org2010-05-311-1/+0
| | | | | | | | | | Our test_shell does not support on-the-spot (or over-the-spot) IME. For such applications, Windows sends two messages for inserting IME text: WM_IME_CHAR and WM_CHAR. Since WM_IME_CHAR messages are only for MBCS applications, our test_shell (which is a Unicode application) doesn't have to receive them. BUG=38417 TEST=run test_shell.exe, click its 'Google' link, enable an IME, insert an IME text, and verify test_shell inserts the IME text only once. Review URL: http://codereview.chromium.org/2349002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48590 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit roll 60341:60433rolandsteiner@chromium.org2010-05-311-1/+1
| | | | | | | | | | | BUG=none TEST=none TBR=pkasting,tkent Review URL: http://codereview.chromium.org/2415001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48589 0039d316-1c4b-4281-b951-d872f2087c98
* uppress another bunch of leaks for bug 44738.glider@chromium.org2010-05-311-1/+9
| | | | | | | | | BUG=44738 TBR=mbelshe Review URL: http://codereview.chromium.org/2416001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48588 0039d316-1c4b-4281-b951-d872f2087c98
* Initialize CookiesTreeModel with a cookie monster instead of a profil.jochen@chromium.org2010-05-317-30/+23
| | | | | | | | | BUG=45230 TEST=unit_tests Review URL: http://codereview.chromium.org/2369001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48587 0039d316-1c4b-4281-b951-d872f2087c98
* Use seperate consumers for search and query requests.jochen@chromium.org2010-05-313-13/+14
| | | | | | | | | BUG=41005 TEST=as described in the bug Review URL: http://codereview.chromium.org/2322005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48586 0039d316-1c4b-4281-b951-d872f2087c98
* Remove more occurrences of FromWStringHack from code base.tfarina@chromium.org2010-05-313-44/+42
| | | | | | | | | BUG=24672 TEST=trybots Review URL: http://codereview.chromium.org/2401001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48584 0039d316-1c4b-4281-b951-d872f2087c98
* Change the IME config dialog to present a list of checkboxes instead of ↵zork@chromium.org2010-05-314-93/+94
| | | | | | | | | | | radio buttons. BUG=chromium-os:2538 TEST=Open the IME config dialog. Select a language with multiple input types. Try to select more than one. Review URL: http://codereview.chromium.org/2221005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48583 0039d316-1c4b-4281-b951-d872f2087c98