summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add missing ALLOW_THIS_IN_INITIALIZER_LIST...phajdan.jr@chromium.org2009-05-141-1/+3
| | | | | | | | TBR=jcampan Review URL: http://codereview.chromium.org/113398 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16054 0039d316-1c4b-4281-b951-d872f2087c98
* Extract Windows-specific parts of TaskManager.phajdan.jr@chromium.org2009-05-149-519/+633
| | | | | | | | | | | | | | - task_manager.cc compiles on POSIX - task_manager_unittest.cc passes on Linux - stub TaskManagerViewImpl for Linux (so that the unit test can pass) TEST=Task manager should not be obviously broken on Windows. http://crbug.com/11461 Review URL: http://codereview.chromium.org/115295 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16053 0039d316-1c4b-4281-b951-d872f2087c98
* Add initial version of DevTools Profiler.mnaganov@chromium.org2009-05-1410-2/+486
| | | | | | | | | To activate it, run Chromium with the following additional js-flags: "--prof --noprof_auto --logfile=*" Review URL: http://codereview.chromium.org/115299 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16052 0039d316-1c4b-4281-b951-d872f2087c98
* Remove bad DCHECK.abarth@chromium.org2009-05-141-1/+0
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16050 0039d316-1c4b-4281-b951-d872f2087c98
* Build fix.abarth@chromium.org2009-05-143-14/+8
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16049 0039d316-1c4b-4281-b951-d872f2087c98
* Factor SSLPolicyBackend out of SSLManager.abarth@chromium.org2009-05-1411-274/+364
| | | | | | | | | | | This reduces the complexity of SSLManager. The idea is eventually to be able to test SSLPolicy by substituting a fake SSLPolicyBackend. TBR=jcampan TEST=No behavior changes. Review URL: http://codereview.chromium.org/113395 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16048 0039d316-1c4b-4281-b951-d872f2087c98
* Reverting 15832 since this test is finished.hbono@chromium.org2009-05-145-29/+3
| | | | | | | BUG=11046 "Need to back out hbono's test fix" Review URL: http://codereview.chromium.org/112021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16047 0039d316-1c4b-4281-b951-d872f2087c98
* Resubmit 16044 with typo fixed.abarth@chromium.org2009-05-144-42/+40
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16046 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 16044abarth@chromium.org2009-05-144-40/+42
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16045 0039d316-1c4b-4281-b951-d872f2087c98
* Minor cleanup of SSL UI code.abarth@chromium.org2009-05-144-42/+40
| | | | | | | | | TBR=jcampan TEST=No functionality change. Review URL: http://codereview.chromium.org/113392 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16044 0039d316-1c4b-4281-b951-d872f2087c98
* Refactor the inner classes from SSLManager to their own files to reduce the ↵abarth@chromium.org2009-05-1413-3273/+3362
| | | | | | | | | | | | complexity of SSLManager. Heading towards unit testability of this code. TBR=jcampan TEST=No functionality change. Review URL: http://codereview.chromium.org/113391 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16041 0039d316-1c4b-4281-b951-d872f2087c98
* Fix #includes in os_exchange_data.h.thestig@chromium.org2009-05-141-1/+3
| | | | | | Review URL: http://codereview.chromium.org/113378 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16040 0039d316-1c4b-4281-b951-d872f2087c98
* Linux: Delay the deletion of the RWHVGtk object.willchan@chromium.org2009-05-144-25/+7
| | | | | | | | | | | This object may be deleted within a signal handler for its widget, which causes a DCHECK. Fix by using MessageLoop::DeleteSoon() instead. BUG=http://www.crbug.com/11847 TEST=Open browser, navigate to www.google.com. Navigate to www.yahoo.com. This will delete the old RWHV. It shouldn't crash. Review URL: http://codereview.chromium.org/113316 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16039 0039d316-1c4b-4281-b951-d872f2087c98
* Clean-up of the accelerator code.jcampan@chromium.org2009-05-1415-93/+101
| | | | | | | | | | | | | | | The View::CanProcessTabKeyEvents and View::ShouldLookUpAccelerator have both been replaced with a new method, SkipDefaultKeyEventProcessing. This new method provides for a view that has focus a way to prevent a key event from being processed for tab traversal or accelerators. Also, fixed a regression where the Ctrl-Tab accelerator was not working anymore when the omnibox was focused. BUG=11538 TEST=Thoroughly test accelerators, making sure they work when the page, the omnibox and the find-bar text-field have focus. Also test that tab traversal still work as expected in the browser and in the option dialog. Review URL: http://codereview.chromium.org/113307 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16037 0039d316-1c4b-4281-b951-d872f2087c98
* layout tests: fix aa's typoevan@chromium.org2009-05-141-2/+2
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16035 0039d316-1c4b-4281-b951-d872f2087c98
* Check in missing html.jam@chromium.org2009-05-141-0/+37
| | | | | | Review URL: http://codereview.chromium.org/115339 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16034 0039d316-1c4b-4281-b951-d872f2087c98
* mehaa@chromium.org2009-05-141-2/+4
| | | | | | Review URL: http://codereview.chromium.org/115338 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16033 0039d316-1c4b-4281-b951-d872f2087c98
* Revert "Revert "implemented extensions api windows.update().""aa@chromium.org2009-05-147-10/+193
| | | | | | | | | | This reverts commit 81242e3b9c6e6fbc42ccf5f973b27ed4cf4401d6. This wasn't the cause of the breakage. Review URL: http://codereview.chromium.org/115337 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16032 0039d316-1c4b-4281-b951-d872f2087c98
* Add some more expected webkit failures.aa@chromium.org2009-05-141-0/+3
| | | | | | Review URL: http://codereview.chromium.org/113387 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16031 0039d316-1c4b-4281-b951-d872f2087c98
* Revert "implemented extensions api windows.update()."aa@chromium.org2009-05-147-193/+10
| | | | | | | | This reverts commit f2d9a44f3886aeab1378c8dbc1ce445202bc0ca5. Review URL: http://codereview.chromium.org/115335 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16030 0039d316-1c4b-4281-b951-d872f2087c98
* implemented extensions api windows.update().rafaelw@chromium.org2009-05-147-10/+193
| | | | | | | | | | | | | currently only supports {left, top, width, height}. Also, added extensions_api_client_unittest tests for CreateWindow, UpdateWindow & RemoveWindow BUG=11200 R=mpComplete Review URL: http://codereview.chromium.org/115316 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16029 0039d316-1c4b-4281-b951-d872f2087c98
* Remove the remaining WaitForSingleObject(INFINITE) call.wtc@chromium.org2009-05-141-47/+55
| | | | | | | | | | | | We now wait with a zero timeout. If the wait times out, we take the same code path as WSAEWOULDBLOCK/WSA_IO_PENDING. R=rvargas http://crbug.com/9258 TEST=Covered by existing unit tests Review URL: http://codereview.chromium.org/113371 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16028 0039d316-1c4b-4281-b951-d872f2087c98
* Make WidgetWin redraw child windows that are in a different process ↵jam@chromium.org2009-05-145-13/+147
| | | | | | | | | | | asynchronously. This helps with jank (i.e. bug 11701 which I couldn't repro with this) and also with deadlocks (fixes 11421 for painting). BUG=11421,11701 Review URL: http://codereview.chromium.org/115216 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16027 0039d316-1c4b-4281-b951-d872f2087c98
* If Schannel's InitializeSecurityContext calls returnwtc@chromium.org2009-05-141-2/+17
| | | | | | | | | | | | | | | | | | | certificate errors, do not map them to our (server) certificate errors because the errors are referring to the (missing) client certificate. If we incorrectly handle them as server certificate errors, we will crash because we can't get the server certificate from Schannel when the handshake fails. Fumitoshi Ukai of Google tracked down the bug and proposed an alternative fix. R=rvargas,ukai BUG=http://crbug.com/11646 TEST=Visit https://www.cdep.ro/. Chromium should not crash. Review URL: http://codereview.chromium.org/113375 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16026 0039d316-1c4b-4281-b951-d872f2087c98
* Retry r16006.estade@chromium.org2009-05-147-26/+40
| | | | | | Review URL: http://codereview.chromium.org/113369 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16025 0039d316-1c4b-4281-b951-d872f2087c98
* test_shell: flush message loop before destroying the shell.evan@chromium.org2009-05-141-7/+11
| | | | | | | | | | | | | Valgrind pointed out that we need extra events like focus-out to be processed before we delete the object. (While I'm at it, remove a useless if statement.) BUG=9500 Review URL: http://codereview.chromium.org/113382 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16024 0039d316-1c4b-4281-b951-d872f2087c98
* Add GTK options window (no options actually configurable yet.)evan@chromium.org2009-05-146-3/+211
| | | | | | | | | BUG=11507 Review URL: http://codereview.chromium.org/113377 Patch from Matt Mueller <mattm@google.com>. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16023 0039d316-1c4b-4281-b951-d872f2087c98
* Switch to upstream versions of V8DocumentLocationCustom.cpp and ↵levin@chromium.org2009-05-143-123/+2
| | | | | | | | | | | | | V8CanvasPixelArrayCustom.cpp TEST=Use the dom elements: document.location and the canvas pixels BUG=http://crbug.com/11917 Review URL: http://codereview.chromium.org/113364 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16022 0039d316-1c4b-4281-b951-d872f2087c98
* Undo 16020glen@chromium.org2009-05-1420-436/+140
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16021 0039d316-1c4b-4281-b951-d872f2087c98
* Allow the new tab page to be themed (you may want to review DOMUIThemeSource ↵glen@chromium.org2009-05-1420-140/+436
| | | | | | | | | | | | | as a whole and not just these changes). Change global std::strings to chars* in browser theme provider. Add ability for ReplaceStringPlaceHolder to take up to 9 replacements. BUG=11235,11685 Review URL: http://codereview.chromium.org/115172 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16020 0039d316-1c4b-4281-b951-d872f2087c98
* Handle log report events so that reliability_tests.exe isn't inturrupted by ↵ace@google.com2009-05-141-0/+11
| | | | | | | | dcheck failures when running page load tests with --enable-dcheck. Review URL: http://codereview.chromium.org/113314 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16019 0039d316-1c4b-4281-b951-d872f2087c98
* Add a 48x48 chromium icon for Linux.mmoss@chromium.org2009-05-131-0/+0
| | | | | | | | | This was requested for Ubuntu packaging. Review URL: http://codereview.chromium.org/115332 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16018 0039d316-1c4b-4281-b951-d872f2087c98
* Add another known crash for reliability tests.aa@chromium.org2009-05-131-0/+1
| | | | | | Review URL: http://codereview.chromium.org/113373 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16017 0039d316-1c4b-4281-b951-d872f2087c98
* Add comment about our SSL UI notifications as requested by wtc.abarth@chromium.org2009-05-131-0/+16
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16016 0039d316-1c4b-4281-b951-d872f2087c98
* Ensure that IO thread is not called in last actions by SDCH shutdownjar@chromium.org2009-05-134-2/+23
| | | | | | | | | | | | | Unregister the sdch_dictionary_fetcher so that it destroys any pending URLFetcher instances when we are nearing shutdown time. Dictionaries are only *potentially* useful (and not needed) for future SDCH fetches, so abandoning any pending items is safe and harmless. b=9669 r=wtc Review URL: http://codereview.chromium.org/113235 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16015 0039d316-1c4b-4281-b951-d872f2087c98
* Fix valigrind complaint about invalid file descriptor on close.shess@chromium.org2009-05-131-12/+32
| | | | | | | | | | Fixes FileDescriptorSet.BasicAddAndClose and FileDescriptorSet.SetDescriptors. http://crbug.com/11724 Review URL: http://codereview.chromium.org/115326 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16014 0039d316-1c4b-4281-b951-d872f2087c98
* Save/restore the focused subview.avi@google.com2009-05-134-14/+27
| | | | | | | | http://crbug.com/9420 Review URL: http://codereview.chromium.org/100358 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16013 0039d316-1c4b-4281-b951-d872f2087c98
* Stubs out OSExchangeData for views on gtk.sky@chromium.org2009-05-1311-11/+115
| | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/113321 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16012 0039d316-1c4b-4281-b951-d872f2087c98
* YUV scaling and conversion refactored into low levels per platform that do a ↵fbarchard@chromium.org2009-05-1310-738/+1054
| | | | | | | | | | | row and high levels that step thru the image. Low level is implemented in MMX assembly. Mac and Linux use reference code for this version. Review URL: http://codereview.chromium.org/113247 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16011 0039d316-1c4b-4281-b951-d872f2087c98
* Split NetUtilTest.IDNToUnicode into IDNToUnicodeFast and IDNToUnicodeSlow. ↵thestig@chromium.org2009-05-132-277/+299
| | | | | | | | | Enable IDNToUnicodeFast test under Valgrind. BUG=9172 Review URL: http://codereview.chromium.org/113370 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16010 0039d316-1c4b-4281-b951-d872f2087c98
* Remove a comment referencing tab contents type switching.brettw@chromium.org2009-05-131-3/+1
| | | | | | Review URL: http://codereview.chromium.org/99047 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16009 0039d316-1c4b-4281-b951-d872f2087c98
* I filed a P1 bug against myself to work on this layout test regression.darin@chromium.org2009-05-131-0/+2
| | | | | | | | | TBR=mpcomplete BUG=11924 Review URL: http://codereview.chromium.org/115329 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16008 0039d316-1c4b-4281-b951-d872f2087c98
* revert r16006 due to msvc warning.estade@chromium.org2009-05-137-40/+26
| | | | | | | | TBR=playmobil Review URL: http://codereview.chromium.org/113367 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16007 0039d316-1c4b-4281-b951-d872f2087c98
* Properly convert from UTF8 to UTF16 in WebTextInputImpl.estade@chromium.org2009-05-137-26/+40
| | | | | | | | | String util changes by darin@chromium.org. BUG=11699 Review URL: http://codereview.chromium.org/115215 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16006 0039d316-1c4b-4281-b951-d872f2087c98
* Remove duplicate mac test failure.tc@google.com2009-05-131-1/+1
| | | | | | | | | TBR=dglazkov Review URL: http://codereview.chromium.org/113366 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16005 0039d316-1c4b-4281-b951-d872f2087c98
* Hide the "show full history" link when editing the thumbnails.arv@chromium.org2009-05-131-1/+1
| | | | | | | | | | | BUG=11330 TEST=Go to the NTP and click "Remove thumbnails". This should hide the "Show full history" link. Review URL: http://codereview.chromium.org/112020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16004 0039d316-1c4b-4281-b951-d872f2087c98
* Fix some issues with the omnibox2 popup:beng@google.com2009-05-132-7/+13
| | | | | | | | | | | - turn off transparency when glass isn't active - make transparency when glass is active more opaque - decrease the size of text to match the current omnibox popup - make dim text in highlighted rows invert. Review URL: http://codereview.chromium.org/113242 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16003 0039d316-1c4b-4281-b951-d872f2087c98
* linux: gyp should fail if the build dependencies aren't met.evan@chromium.org2009-05-132-54/+24
| | | | | | | | | | | | The alternative is that gyp silently succeeds and your build mysteriously doesn't link, even after you've installed the dependencies, and you need to know to rerun "gclient runhooks --force". BUG=11432 Review URL: http://codereview.chromium.org/114007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16002 0039d316-1c4b-4281-b951-d872f2087c98
* remove chrome.gyp cruftestade@chromium.org2009-05-131-3/+0
| | | | | | | | TBR=thestig Review URL: http://codereview.chromium.org/115324 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16000 0039d316-1c4b-4281-b951-d872f2087c98
* Don't try to compile .mk files when building shared librariessgk@google.com2009-05-131-0/+1
| | | | | | | (to exclude third_party/skia/src/core/core_files.mk). Review URL: http://codereview.chromium.org/115320 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15999 0039d316-1c4b-4281-b951-d872f2087c98