summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Move chrome_version_info target into chrome_common.evan@chromium.org2010-08-233-63/+63
| | | | | | | | | | | | | | The source files live in chrome/common, and they're there because we need to get at version infomation all over the product (not just from the exe, like the gyp files are currently written). This refactoring is necessary for a follow-up change. TEST=compiles Review URL: http://codereview.chromium.org/3113026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57084 0039d316-1c4b-4281-b951-d872f2087c98
* Disk cache: Extend the internal buffering performed by each entryrvargas@google.com2010-08-2311-543/+1079
| | | | | | | | | | | | | | | | | | | | | | to cover external files. We now keep a variable-size buffer and use it even after we know that the data is not going to be stored by a block-file. The backend keeps track of the total memory used by all entries and prevents that value from going over a max value that depends on the total memory available. This CL removes the tests that were checking the synchronous operation of sparse IO because that model is no longer supported by the public API, and this CL would add complexity to them (they fail due to thread safety concerns). BUG=6626 TEST=net_unittests Review URL: http://codereview.chromium.org/3167020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57082 0039d316-1c4b-4281-b951-d872f2087c98
* Adds support for EXT_framebuffer_multisamplegman@chromium.org2010-08-2318-62/+665
| | | | | | | | | | | | | | | I probably need more tests but in order to test I need to figure out how to init the system with different caps enabled from the unit tests and that's probably not a small amount of work so leaving that till later. TEST=some unit tests, ran conformance tests BUG=none Review URL: http://codereview.chromium.org/3122033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57081 0039d316-1c4b-4281-b951-d872f2087c98
* DOMUI prefs: Fix a race condition in pushing search engine information to DOMUIstuartmorgan@chromium.org2010-08-231-1/+7
| | | | | | | | | BUG=None TEST=Load DOMUI options, go to another page, load DOMUI options again, and manage search engines; the table should not be empty. Review URL: http://codereview.chromium.org/3116023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57077 0039d316-1c4b-4281-b951-d872f2087c98
* --auth-schemes specifies which authentication schemes are supported on the ↵cbentzel@chromium.org2010-08-235-51/+95
| | | | | | | | | | | | | | | command line. --auth-schemes should be a command separated list containing one or more of the following schemes: basic, digest, ntlm, or negotiate. This will primarily be used to help triage user-reported bugs. BUG=None TEST=specify --auth-schemes and ensure that only the specified schemes are supported. Also, when unspecified all schemes should be supported. Review URL: http://codereview.chromium.org/3199002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57073 0039d316-1c4b-4281-b951-d872f2087c98
* Add VP8 codec enum to video decoder.fgalligan@chromium.org2010-08-232-0/+3
| | | | | | | | | | BUG=52594 TEST=Play a WebM file in debug Chrome build and renderer should not crash. Review URL: http://codereview.chromium.org/3189013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57070 0039d316-1c4b-4281-b951-d872f2087c98
* Changing options page so it is in the center, has less padding, a drop ↵dhg@chromium.org2010-08-231-3/+5
| | | | | | | | | | shadow and a border. BUG=chromium-os:5956 TEST=none Review URL: http://codereview.chromium.org/3146030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57068 0039d316-1c4b-4281-b951-d872f2087c98
* Fix small bug in BookmarkDragData: GURL specs are UTF-8, not ASCII.viettrungluu@chromium.org2010-08-231-1/+1
| | | | | | | | | BUG=none TEST=I can't be bothered Review URL: http://codereview.chromium.org/3137031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57067 0039d316-1c4b-4281-b951-d872f2087c98
* New translate test for pyauto.alyssad@google.com2010-08-233-0/+106
| | | | | | | | New pyauto functional test for translate on history and downloads pages. Review URL: http://codereview.chromium.org/3109017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57065 0039d316-1c4b-4281-b951-d872f2087c98
* Adds ui_test_utils::SendAndWaitForKeyPress and converts callers (wheresky@chromium.org2010-08-238-77/+91
| | | | | | | | | | | | appropriate) to use it. Hopefully this will help isolate why tests are failing on bot. BUG=none TEST=none; test only change. Review URL: http://codereview.chromium.org/3117030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57064 0039d316-1c4b-4281-b951-d872f2087c98
* Remove sync handling of IsSearchProviderInstalled on the browser UI thread.levin@chromium.org2010-08-236-79/+0
| | | | | | | | | | | | This is to avoid a deadlock on Windows. It will be replaced by a handler on the I/O thread in a subsequent patch. BUG=38475 TEST=None Review URL: http://codereview.chromium.org/3142029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57063 0039d316-1c4b-4281-b951-d872f2087c98
* Nothing is ever added to hosts_to_delete_, so this code does nothing useful.levin@chromium.org2010-08-232-28/+0
| | | | | | | | | BUG=None TEST=unit_tests --gtest_filer=TemplateURL*.* Review URL: http://codereview.chromium.org/3161038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57062 0039d316-1c4b-4281-b951-d872f2087c98
* Mac: Re-fix hidden CoreAnimation plugins.thakis@chromium.org2010-08-235-39/+74
| | | | | | | | | | | | | Stuart fixed this in http://codereview.chromium.org/2147002 and I regressed it in http://codereview.chromium.org/3010054 Note that the reduced testcase on the bug is still broken. Since it's broken in Safari too, that's a WebKit problem. BUG=52914,51748 TEST=See bug Review URL: http://codereview.chromium.org/3125033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57061 0039d316-1c4b-4281-b951-d872f2087c98
* Fixed error message bubbles according to the latest mocksdpolukhin@chromium.org2010-08-2317-47/+172
| | | | | | | | | BUG=chromium-os:5762, chromium-os:5761 TEST=Enter wrong password on Chrome OS login screen. Review URL: http://codereview.chromium.org/3201003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57060 0039d316-1c4b-4281-b951-d872f2087c98
* Address post-review comments on r56727.agl@chromium.org2010-08-232-13/+14
| | | | | | | | | BUG=none TEST=none http://codereview.chromium.org/3107030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57059 0039d316-1c4b-4281-b951-d872f2087c98
* Mac: Unregress right-clicks for CoreAnimation plugins.thakis@chromium.org2010-08-231-0/+9
| | | | | | | | | BUG=52593,51748 TEST=Right-click a youtube video. Should get context menu. Review URL: http://codereview.chromium.org/3117035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57058 0039d316-1c4b-4281-b951-d872f2087c98
* Add cros to src/third_party svn:ignore.maruel@chromium.org2010-08-230-0/+0
| | | | | | | NO CODE CHANGE. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57057 0039d316-1c4b-4281-b951-d872f2087c98
* Missed a file from last checkin. histograms_recorded member variable ismbelshe@chromium.org2010-08-231-1/+0
| | | | | | | | | | | no longer needed. (I thought we had a warning for that?) BUG=none TEST=none Review URL: http://codereview.chromium.org/3199013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57056 0039d316-1c4b-4281-b951-d872f2087c98
* Sort svn:ignore on src/third_party.maruel@chromium.org2010-08-230-0/+0
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57055 0039d316-1c4b-4281-b951-d872f2087c98
* Use <if expr".."> to use a single bug report html for both Chrome and Chrome OS.rkc@google.com2010-08-234-177/+61
| | | | | | Review URL: http://codereview.chromium.org/3122034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57054 0039d316-1c4b-4281-b951-d872f2087c98
* Added browser test for the OOBE update screen.denisromanov@chromium.org2010-08-237-16/+302
| | | | | | | | | BUG=chromium-os:2265 TEST=Make and run out/Debug/browser_tests Review URL: http://codereview.chromium.org/3130044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57053 0039d316-1c4b-4281-b951-d872f2087c98
* Gateway Location Providerallanwoj@chromium.org2010-08-237-40/+378
| | | | | | | | | | Location provider using the MAC address of a router the user is connected to via Ethernet to find a position fix. BUG=NONE TEST=Unit test Review URL: http://codereview.chromium.org/3153031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57052 0039d316-1c4b-4281-b951-d872f2087c98
* Add functions to get the length or compute a substring of UTF8 and UTF16dmazzoni@chromium.org2010-08-234-0/+279
| | | | | | | | | | | encoded strings. BUG=none TEST=Added new unit tests for each. Review URL: http://codereview.chromium.org/3133028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57051 0039d316-1c4b-4281-b951-d872f2087c98
* Add new entrythomasvl@chromium.org2010-08-231-0/+3
| | | | | | | | | TBR=thestig TEST=none BUG=53076 Review URL: http://codereview.chromium.org/3142031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57050 0039d316-1c4b-4281-b951-d872f2087c98
* Add temporary test expectations for layout test failures from WK roll to 65800rolandsteiner@chromium.org2010-08-231-0/+6
| | | | | | | | | BUG=53073 TEST=see list Review URL: http://codereview.chromium.org/3130046 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57049 0039d316-1c4b-4281-b951-d872f2087c98
* Ensure that a browser action is never passed to a function which expects a ↵skerner@chromium.org2010-08-233-4/+13
| | | | | | | | | | | | | page action. (Changed review name, because the solution has changed) BUG=53041 TEST=On a mac, install a browser action and a page action, right click on each icon, select "Inspect Popup". Review URL: http://codereview.chromium.org/3176021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57048 0039d316-1c4b-4281-b951-d872f2087c98
* Force re-run of tests (thouch build/whitespace_file.txt)rolandsteiner@chromium.org2010-08-231-1/+1
| | | | | | | | | BUG=none TEST=none TBR=dumi git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57046 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit roll 65740: 65800rolandsteiner@chromium.org2010-08-231-1/+1
| | | | | | | | | | | BUG=none TEST=none TBR=dumi Review URL: http://codereview.chromium.org/3132034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57045 0039d316-1c4b-4281-b951-d872f2087c98
* Fix compilation errors of 56862 byandreip@chromium.org2010-08-2313-4/+316
| | | | | | | | | | | | | | | - making the include path lower case in renderer_webidbransaction_impl.cc, - adding a newline at the end of indexed_db_dispatcher.cc - fixing the initialization order of member variables in indexed_db_callbacks.h Revert "Revert 56862 - Add transaction coordinator. Allow idle transactions to be aborted when their parent JS context finishes executing." This reverts commit 6b25a433481c9127f8dbcbadc7f0685dc643d6de. Review URL: http://codereview.chromium.org/3163028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57042 0039d316-1c4b-4281-b951-d872f2087c98
* Updating trunk VERSION from 503.0 to 504.0chrome-release@google.com2010-08-231-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57040 0039d316-1c4b-4281-b951-d872f2087c98
* Reland 56832 - Support change detection and reloading in ↵mnissler@chromium.org2010-08-233-21/+432
| | | | | | | | | | | ConfigDirPolicyProvider. BUG=52418 TEST=unit tests Review URL: http://codereview.chromium.org/3156040 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57038 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: remove injected script from resources.pfeldman@chromium.org2010-08-238-28/+0
| | | | | | Review URL: http://codereview.chromium.org/3180017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57037 0039d316-1c4b-4281-b951-d872f2087c98
* Implement device_orientation::Provider.hans@chromium.org2010-08-239-8/+701
| | | | | | | | | | | | Provider provides its registered observers with device orientation data by finding and polling a DataFetcher on a background thread. BUG=44654 TEST=unit_tests --gtest_filter="DeviceOrientationProviderTest.*" Review URL: http://codereview.chromium.org/3136008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57036 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 57034 - WebKit roll 65740:65765rolandsteiner@chromium.org2010-08-231-1/+1
| | | | | | | | | | | | | | BUG=none TEST=none TBR=dumi Review URL: http://codereview.chromium.org/3200005 TBR=rolandsteiner@chromium.org Review URL: http://codereview.chromium.org/3164033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57035 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit roll 65740:65765rolandsteiner@chromium.org2010-08-231-1/+1
| | | | | | | | | | | BUG=none TEST=none TBR=dumi Review URL: http://codereview.chromium.org/3200005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57034 0039d316-1c4b-4281-b951-d872f2087c98
* Reland 56669: Initial change that allows to disable bookmarksdpolukhin@chromium.org2010-08-234-4/+18
| | | | | | | | | | | | | | | | Original CL: http://codereview.chromium.org/3191007 Initial change that allows to disable bookmarks in Chrome for Chrome OS (BWSI mode). Added disable-bookmarks flag and disabled some UI elements. BUG=chromium-os:4302 TEST=Run Chrome build for Chrome OS with --disable-bookmarks flag and verify that the corresponding UI is disabled. Verify that BWSI mode runs with this flag. Review URL: http://codereview.chromium.org/3156035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57033 0039d316-1c4b-4281-b951-d872f2087c98
* Use ChromeThread::IO instead of virtual set_request_contextukai@chromium.org2010-08-234-16/+10
| | | | | | | | | | | | ChromeThread::IO will be used to cancel URLFetcher request and clean up URLRequestContextGetter. BUG=52562,52826 TEST=valgrind passes Review URL: http://codereview.chromium.org/3176028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57032 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 57026 - WebKit roll 65740:65791rolandsteiner@chromium.org2010-08-231-1/+1
| | | | | | | | | | | | | | BUG=None TEST=None TBR=dumi Review URL: http://codereview.chromium.org/3111025 TBR=rolandsteiner@chromium.org Review URL: http://codereview.chromium.org/3108039 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57031 0039d316-1c4b-4281-b951-d872f2087c98
* Remove suppression for SocketStreamTest.CloseFlushPendingWriteukai@chromium.org2010-08-231-8/+0
| | | | | | | | | BUG=51055 TEST=no bug_51055 suppressions used in memory test:net Review URL: http://codereview.chromium.org/3175029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57027 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit roll 65740:65791rolandsteiner@chromium.org2010-08-231-1/+1
| | | | | | | | | | | BUG=None TEST=None TBR=dumi Review URL: http://codereview.chromium.org/3111025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57026 0039d316-1c4b-4281-b951-d872f2087c98
* Added "Look Up in Dictionary" item to context menu for Mac. tkent@chromium.org2010-08-236-0/+49
| | | | | | | | | | BUG=46153 TEST=manual Patch by morrita@google Original code review: http://codereview.chromium.org/3139007/show git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57025 0039d316-1c4b-4281-b951-d872f2087c98
* Suppresses the leak for Bug 53044.hbono@chromium.org2010-08-231-0/+7
| | | | | | | | | TBR=timurrrr BUG=53044 TEST=make the "Linux Tests (valgrind)(1)" bot green. Review URL: http://codereview.chromium.org/3134025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57024 0039d316-1c4b-4281-b951-d872f2087c98
* Fix bug where pushed SPDY streams were never actually closed.mbelshe@chromium.org2010-08-235-137/+271
| | | | | | | | | | | | | | | | | | | | | | | | The fix uncovers a few things. Previously, when we had an unclaimed push stream, we'd leave it as an "active" stream, even if the EOF had already been received on that stream. I changed it so that the push stream is removed from the active stream as soon as it is inactive, but it remains on the unclaimed_pushed_streams list. This seems more correct. The hardest part of the test was getting the test to verify the fix. To verify the fix, I modified the Push tests so that we leave the session open (e.g. terminate the list of reads with an ERR_IO_PENDING rather than an EOF so that it sits open), which gives us the opportunity to check if there are active streams left on the session when we completed the test. If so, then we'll pop an error. BUG=52898 TEST=Updated existing tests. Review URL: http://codereview.chromium.org/3108038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57023 0039d316-1c4b-4281-b951-d872f2087c98
* Add option to simulate alternate protocol always being present.mbelshe@chromium.org2010-08-224-3/+84
| | | | | | | | | | | | | | | It's a bit hardcoded (port 443, NPN/SPDY2), but it is just for testing purposes. To use this mode, run chrome with: chrome.exe --use-spdy=npn,force-alt-protocols BUG=none TEST=http_alternate_protocols_unittest.cc Review URL: http://codereview.chromium.org/3195015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57022 0039d316-1c4b-4281-b951-d872f2087c98
* Remove wstrings from bookmarks, part 12.viettrungluu@chromium.org2010-08-2238-115/+150
| | | | | | | | | | | | | | - This changes RecentlyUsedFoldersComboModel::GetItemAt() to return a string16 instead of a wstring. - This entailed changing the base class, ComboboxModel, and shaving a herd of yaks. BUG=23581 TEST=builds and passes tests Review URL: http://codereview.chromium.org/3159031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57021 0039d316-1c4b-4281-b951-d872f2087c98
* Spelling correction: "nonexistant" -> "nonexistent".viettrungluu@chromium.org2010-08-2213-32/+32
| | | | | | | | | BUG=none TEST=good spellers are slightly happier Review URL: http://codereview.chromium.org/3143037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57020 0039d316-1c4b-4281-b951-d872f2087c98
* Build fixes to the CLrkc@google.com2010-08-2230-910/+1730
| | | | | | Review URL: http://codereview.chromium.org/3061044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57019 0039d316-1c4b-4281-b951-d872f2087c98
* Updating trunk VERSION from 502.0 to 503.0chrome-release@google.com2010-08-221-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57017 0039d316-1c4b-4281-b951-d872f2087c98
* Fix the windows build by casting for ICU.brettw@chromium.org2010-08-221-1/+2
| | | | | | | TEST=none BUG=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57015 0039d316-1c4b-4281-b951-d872f2087c98
* Add support for Pepper charset conversions.brettw@chromium.org2010-08-225-0/+187
| | | | | | | TEST=included unit test BUG=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57014 0039d316-1c4b-4281-b951-d872f2087c98