summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Update translations for the chromium_strings template using launchpad.net r119tony@chromium.org2011-02-119-12/+109
| | | | | | Review URL: http://codereview.chromium.org/6474020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74641 0039d316-1c4b-4281-b951-d872f2087c98
* Sync: Separate the styling and scripts from gaia_login.html into theirjhawkins@chromium.org2011-02-113-378/+372
| | | | | | | | | | | appropriate CSS/JS files. BUG=72363 TEST=none Review URL: http://codereview.chromium.org/6471014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74640 0039d316-1c4b-4281-b951-d872f2087c98
* Pick up the new icu.gyp with the better flag name.thomasvl@chromium.org2011-02-111-1/+1
| | | | | | Review URL: http://codereview.chromium.org/6489035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74639 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 74574 - Update V8 to verstion 3.1.3tony@chromium.org2011-02-111-1/+1
| | | | | | | | | | | Trying to see if this is related to the media_unittests crash. Review URL: http://codereview.chromium.org/6486026 TBR=ricow@chromium.org Review URL: http://codereview.chromium.org/6504001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74638 0039d316-1c4b-4281-b951-d872f2087c98
* Make the implementation .cc files go away, instead have the authors give us ↵tsepez@chromium.org2011-02-1113-17/+598
| | | | | | | | a header only. Review URL: http://codereview.chromium.org/6410007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74637 0039d316-1c4b-4281-b951-d872f2087c98
* Make sure to lockPixels() before reading one in ImageTest.CheckSkiaColor.rsesek@chromium.org2011-02-111-0/+2
| | | | | | | | | BUG=none TEST=Clang gfx_unittest passes Review URL: http://codereview.chromium.org/6502001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74636 0039d316-1c4b-4281-b951-d872f2087c98
* Fix re-entrant destroy issues in pepperpiman@google.com2011-02-111-0/+34
| | | | | | | | | | | | | | When the pepper plugin is called into, it has the ability to remove itself from the DOM, using the Var interface. To prevent the instance from going away while it's still in the stack, we need to keep a reference to it, any time we call into the plugin but need to access the interface afterwards. BUG=chromium-os:11694 TEST=With pepper flash (needs separate fix), go to www.nick.com, let it play the video and check it doesn't crash Review URL: http://codereview.chromium.org/6488017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74635 0039d316-1c4b-4281-b951-d872f2087c98
* Fix clang warning in chromium:72576 again.xiyuan@chromium.org2011-02-112-2/+2
| | | | | | | | | | | Missed the const param part last time. BUG=chromium:72576 TEST=Build should pass without warning. Review URL: http://codereview.chromium.org/6499001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74634 0039d316-1c4b-4281-b951-d872f2087c98
* Update WebKit to r78320.pkasting@chromium.org2011-02-111-1/+1
| | | | | | | | | BUG=none TEST=none TBR=hamaji Review URL: http://codereview.chromium.org/6474043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74633 0039d316-1c4b-4281-b951-d872f2087c98
* Reland r74561 after fixing ChromeOS build breakage.willchan@chromium.org2011-02-1131-1151/+1436
| | | | | | | | | | | | | | | | | Introduce OffTheRecordProfileIOData and ProfileImplIOData. They both inherit from ProfileIOData. The former is for the off the record (incognito) profile. The latter is for the normal ProfileImpl profile. All of the IO related Profile objects are now initialized at the same time, in the subtype implementations of ProfileIOData::LazyInitializeInternal(). I also took this opportunity to clean URLRequestContext up so it is a class and keeps its member variables private. This required touching a fair number of files. TODO: Remove lots of the refcounting of member variables, since they can now be owned by ProfileIOData. BUG=67237 TEST=none Review URL: http://codereview.chromium.org/6500002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74632 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 74571 - Use SSE2 block differ for chromotingdhollowa@chromium.org2011-02-119-211/+112
| | | | | | | | | | | | | | | | | | | | | | We have the SSE2 lying around in the tree just never being used. This will allow us to use it. A number of Windows bots have gone red in media_tests on the waterfall: http://build.chromium.org/p/chromium/builders/XP%20Tests%20%281%29 http://build.chromium.org/p/chromium/builders/XP%20Tests%20%281%29/builds/501/steps/media_unittests/logs/stdio This seems to be related to r74571. So am reverting to see. BUG=None TEST=Chromoting to a host machine and the diff will work correctly Review URL: http://codereview.chromium.org/6469022 TBR=hclam@chromium.org Review URL: http://codereview.chromium.org/6502002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74630 0039d316-1c4b-4281-b951-d872f2087c98
* Fix views_unittests. It turns out it wasn't safe to register the observer ↵ben@chromium.org2011-02-112-34/+5
| | | | | | | | | | | | from the place it was being registered in all cases, so I am moving the message tracking to use the existing widget message loop observer which is added post-window-create. Need to talk to jar/darin about exposing this functionality on MessageLoop. BUG=none TEST=views_unittests passes TBR=sky Review URL: http://codereview.chromium.org/6474042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74626 0039d316-1c4b-4281-b951-d872f2087c98
* Update accelerometer data with more data, both confirmed and preliminary.avi@chromium.org2011-02-111-16/+40
| | | | | | | | | BUG=none TEST=find those machines, verify Review URL: http://codereview.chromium.org/6487025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74625 0039d316-1c4b-4281-b951-d872f2087c98
* Add ui::gfx::Image to eventually replace gfx::ScopedImage.rsesek@chromium.org2011-02-119-0/+681
| | | | | | | | | | | | | This achieves the same goal as ScopedImage, namely encapsulating the memory management of any image type. But ui::gfx::Image goes further by providing conversion helpers between different image types. BUG=carnitas TEST=gfx_unittests and unit_tests Review URL: http://codereview.chromium.org/6312159 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74624 0039d316-1c4b-4281-b951-d872f2087c98
* Extend Mac popup to handle more directionality.avi@chromium.org2011-02-115-89/+105
| | | | | | | | | BUG=71326 TEST=verify popup is correct with test page noted in bug writeup. Review URL: http://codereview.chromium.org/6410125 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74622 0039d316-1c4b-4281-b951-d872f2087c98
* Clean outdated test_expectations after webkit roll.zmo@google.com2011-02-111-2/+0
| | | | | | | | | | BUG=none TEST=none TBR=pkasting Review URL: http://codereview.chromium.org/6474041 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74621 0039d316-1c4b-4281-b951-d872f2087c98
* touch: Fix build after NativeEvent2 change.sadrul@chromium.org2011-02-112-4/+6
| | | | | | TBR=ben@chromium.org git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74619 0039d316-1c4b-4281-b951-d872f2087c98
* [cros] Enable disk IO restriction on IOThread.nkostylev@chromium.org2011-02-112-4/+7
| | | | | | | | | | | Mark safe_browsing_thread_ as safe for thread join on shutdown. BUG=chromium:60211, chromium:72696 TEST=bots Review URL: http://codereview.chromium.org/6476033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74618 0039d316-1c4b-4281-b951-d872f2087c98
* Autofill doesn't fill months properly if they are not zero-paddeddhollowa@chromium.org2011-02-115-12/+189
| | | | | | | | | | | Adds logic in |select_control_handler.cc| to fill months that are not zero-padded. Also, addes unit tests for major functionality of the |autofill::FillSelectControl()| function. BUG=64282 TEST=SelectControlHandlerTest.* Review URL: http://codereview.chromium.org/6482012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74616 0039d316-1c4b-4281-b951-d872f2087c98
* Adds the ability to construct a KeyEvent from a NativeEvent[2], and converts ↵ben@chromium.org2011-02-1132-177/+442
| | | | | | | | | | | | | some code to use it. Removes some of the Windows-specific stuff from KeyEvent. BUG=72040 TEST=none Review URL: http://codereview.chromium.org/6487002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74614 0039d316-1c4b-4281-b951-d872f2087c98
* clang: Make it possible to run Elliot's plugin on the botsthakis@chromium.org2011-02-112-0/+45
| | | | | | | | | | | | | To make it possible to change the exact plugin command line without a master restart, the command line is loaded from a bash script. This script is used if clang_use_chrome_plugins and clang are both set in GYP_DEFINES when runhooks runs. BUG=none TEST=none Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=74597 Review URL: http://codereview.chromium.org/6461026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74611 0039d316-1c4b-4281-b951-d872f2087c98
* Removes unneeded suppression. The leak occurred because of a commitsky@chromium.org2011-02-111-25/+0
| | | | | | | | | | | | | that I ended up reverting. I've since landed the change, but I believe everything has been cleaned up. BUG=72542 TEST=none TBR=timurrrr@chromium.org Review URL: http://codereview.chromium.org/6490023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74610 0039d316-1c4b-4281-b951-d872f2087c98
* Fix user-to-system-level installation delegation. This looks to have been ↵robertshield@chromium.org2011-02-114-18/+19
| | | | | | | | | | | | broken since r66096. BUG=72620 TEST=Install user level Chrome then system level Chrome. Observer that user level Chrome removes itself and delegates to system level. Review URL: http://codereview.chromium.org/6490008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74609 0039d316-1c4b-4281-b951-d872f2087c98
* [cros] Report captive portal message when we suspect that might be the case.nkostylev@chromium.org2011-02-117-3/+39
| | | | | | | | | | | Update shutdown button default color. BUG=chromium-os:3281, chromium-os:9941 TEST=Manual Review URL: http://codereview.chromium.org/6469027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74608 0039d316-1c4b-4281-b951-d872f2087c98
* Introduced better UI for the Omaha policy to disable updates for Chrome.pastarmovj@chromium.org2011-02-114-9/+55
| | | | | | | | | | | In case the policy is set the generic error message is replaced by a more concrete message stating that updates are disabled by the administrator. BUG=61056 TEST=Set the Omaha policy to disable updates, go the About Chrome box and check the message in the lower part of the window. Review URL: http://codereview.chromium.org/6482022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74606 0039d316-1c4b-4281-b951-d872f2087c98
* roll to 784, picks up important ganesh fix now that command-buffer doesn'treed@google.com2011-02-111-1/+1
| | | | | | | | support vertexptrs Review URL: http://codereview.chromium.org/6487023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74605 0039d316-1c4b-4281-b951-d872f2087c98
* Mac implementation of the UserDataDir policy.pastarmovj@chromium.org2011-02-114-2/+102
| | | | | | | | | BUG=49601 TEST=Manual. Set the policy in the plist file and it should be equivalent to using the --user-data-dir option. Review URL: http://codereview.chromium.org/6349082 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74602 0039d316-1c4b-4281-b951-d872f2087c98
* Modify about:flags to support switches with values.gavinp@chromium.org2011-02-113-32/+111
| | | | | | | | | | | | | | about:flags right now doesn't support switches like "--foo=bar". It only handles simple switches like "--quux". The prerender feature has a few options, and to avoid confusing contradictory mixes of simple switches, we want to use valued switches. But for that, we'll need lab support. BUG=none TEST=AboutFlagsTest.* Review URL: http://codereview.chromium.org/6483015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74599 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 74597 - clang: Make it possible to run Elliot's plugin on the botsthakis@chromium.org2011-02-112-44/+0
| | | | | | | | | | | | | | To make it possible to change the exact plugin command line without a master restart, the command line is loaded from a bash script. This script is used if clang_use_chrome_plugins and clang are both set in GYP_DEFINES when runhooks runs. BUG=none TEST=none Review URL: http://codereview.chromium.org/6461026 TBR=thakis@chromium.org Review URL: http://codereview.chromium.org/6489036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74598 0039d316-1c4b-4281-b951-d872f2087c98
* clang: Make it possible to run Elliot's plugin on the botsthakis@chromium.org2011-02-112-0/+44
| | | | | | | | | | | To make it possible to change the exact plugin command line without a master restart, the command line is loaded from a bash script. This script is used if clang_use_chrome_plugins and clang are both set in GYP_DEFINES when runhooks runs. BUG=none TEST=none Review URL: http://codereview.chromium.org/6461026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74597 0039d316-1c4b-4281-b951-d872f2087c98
* Initialize ModuleEnumerator member.finnur@chromium.org2011-02-111-1/+2
| | | | | | | | | | BUG=None TEST=None CID=14206 Review URL: http://codereview.chromium.org/6482027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74596 0039d316-1c4b-4281-b951-d872f2087c98
* Use DispatchX for dispatching X events.sadrul@chromium.org2011-02-1110-16/+16
| | | | | | | | | | This fixes an error clang shows with -Woverloaded-virtual. BUG=72575 TEST=none Review URL: http://codereview.chromium.org/6487004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74595 0039d316-1c4b-4281-b951-d872f2087c98
* Initialize StatsTable::Private members.finnur@chromium.org2011-02-111-2/+9
| | | | | | | | | | BUG=None TEST=None CID=13412 Review URL: http://codereview.chromium.org/6483011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74594 0039d316-1c4b-4281-b951-d872f2087c98
* Initialize members of ThreadLocalStorage::Slot.finnur@chromium.org2011-02-112-4/+6
| | | | | | | | | | BUG=None TEST=None CID=14347 Review URL: http://codereview.chromium.org/6476028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74593 0039d316-1c4b-4281-b951-d872f2087c98
* Disable AudioOutputControllerTest.CreateAndClose since it crashes on Windows ↵maruel@chromium.org2011-02-111-0/+5
| | | | | | | | | | | in release. BUG=72718 TEST=none Review URL: http://codereview.chromium.org/6489032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74590 0039d316-1c4b-4281-b951-d872f2087c98
* [cros] Check local help topic file existence on FILE thread.nkostylev@chromium.org2011-02-118-36/+46
| | | | | | | | | BUG=chromium-os:11105 TEST=N/A. Review URL: http://codereview.chromium.org/6482026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74589 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 74583 - Revert 74571 - Use SSE2 block differ for chromotingfinnur@chromium.org2011-02-119-112/+211
| | | | | | | | | | | | | | | | | | | | (Quick test to see if it is the cause of crashes in media_unittests) (Test showed this CL is not to blame) We have the SSE2 lying around in the tree just never being used. This will allow us to use it. BUG=None TEST=Chromoting to a host machine and the diff will work correctly Review URL: http://codereview.chromium.org/6469022 TBR=hclam@chromium.org Review URL: http://codereview.chromium.org/6488023 TBR=finnur@chromium.org git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74588 0039d316-1c4b-4281-b951-d872f2087c98
* Update GYP to trunk r887, to pick up:mark@chromium.org2011-02-111-1/+1
| | | | | | | | | | | Back out GYP r884, which is causing problems for people who use the make generator and have CC set to something that includes an argument. BUG=none TEST=none Review URL: http://codereview.chromium.org/6487022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74587 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress leaks from ProfileIOData (issue 72689)glider@chromium.org2011-02-111-0/+59
| | | | | | | | | BUG=72698 TBR=willchan Review URL: http://codereview.chromium.org/6486030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74586 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 74571 - Use SSE2 block differ for chromotingfinnur@chromium.org2011-02-119-211/+112
| | | | | | | | | | | | | | | | | (Quick test to see if it is the cause of crashes in media_unittests) We have the SSE2 lying around in the tree just never being used. This will allow us to use it. BUG=None TEST=Chromoting to a host machine and the diff will work correctly Review URL: http://codereview.chromium.org/6469022 TBR=hclam@chromium.org Review URL: http://codereview.chromium.org/6488023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74583 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 74579 - Revert 74570 - Roll webkit rev from r78262 to r78309finnur@chromium.org2011-02-111-1/+1
| | | | | | | | | | | | | | | | | | | (This change was suspected of causing media_unittest crashes) (... but it turned out to be not related) BUG=none TEST=none TBR=hamaji Review URL: http://codereview.chromium.org/6495001 TBR=zmo@google.com Review URL: http://codereview.chromium.org/6488021 TBR=finnur@chromium.org Review URL: http://codereview.chromium.org/6488022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74582 0039d316-1c4b-4281-b951-d872f2087c98
* Updating trunk VERSION from 668.0 to 669.0chrome-release@google.com2011-02-111-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74581 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 74570 - Roll webkit rev from r78262 to r78309finnur@chromium.org2011-02-111-1/+1
| | | | | | | | | | | | | | | (This change was suspected of causing media_unittest crashes) BUG=none TEST=none TBR=hamaji Review URL: http://codereview.chromium.org/6495001 TBR=zmo@google.com Review URL: http://codereview.chromium.org/6488021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74579 0039d316-1c4b-4281-b951-d872f2087c98
* Wigtspace change to trigger a build.thestig@chromium.org2011-02-111-1/+1
| | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/6488020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74578 0039d316-1c4b-4281-b951-d872f2087c98
* Disable FormStructureBrowserTest.DataDrivenHeuristicsisherman@chromium.org2011-02-111-1/+2
| | | | | | | | | | | | Logging acquired, re-disable. BUG=72401 TEST=none TBR= dhollowa@chromium.org Review URL: http://codereview.chromium.org/6474033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74577 0039d316-1c4b-4281-b951-d872f2087c98
* Update V8 to verstion 3.1.3ricow@chromium.org2011-02-111-1/+1
| | | | | | Review URL: http://codereview.chromium.org/6486026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74574 0039d316-1c4b-4281-b951-d872f2087c98
* Use SSE2 block differ for chromotinghclam@chromium.org2011-02-119-112/+211
| | | | | | | | | | | | We have the SSE2 lying around in the tree just never being used. This will allow us to use it. BUG=None TEST=Chromoting to a host machine and the diff will work correctly Review URL: http://codereview.chromium.org/6469022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74571 0039d316-1c4b-4281-b951-d872f2087c98
* Roll webkit rev from r78262 to r78309zmo@google.com2011-02-111-1/+1
| | | | | | | | | | BUG=none TEST=none TBR=hamaji Review URL: http://codereview.chromium.org/6495001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74570 0039d316-1c4b-4281-b951-d872f2087c98
* Reenable FormStructureBrowserTest.DataDrivenHeuristics for debuggingisherman@chromium.org2011-02-111-2/+1
| | | | | | | | | | BUG=72401 TEST=none TBR= dhollowa@chromium.org Review URL: http://codereview.chromium.org/6484020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74569 0039d316-1c4b-4281-b951-d872f2087c98
* Refactor TOUCH_UI to match other refactor.backer@chromium.org2011-02-118-31/+36
| | | | | | | | | | | A few files were missed in a previous refactor (http://codereview.chromium.org/6480001/). BUG=72040 TEST=none Review URL: http://codereview.chromium.org/6488006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74568 0039d316-1c4b-4281-b951-d872f2087c98