summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Remove unused LanugageHangulOptions variable from options.htmlmazda@chromium.org2011-04-151-1/+0
| | | | | | | | | | BUG=chromium-os:14016 TEST=Opened chrome://settings/ and checked that no errors appeared. Review URL: http://codereview.chromium.org/6825070 Patch from Yoshiki IGUCHI <yoshiki@chromium.com>. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81685 0039d316-1c4b-4281-b951-d872f2087c98
* Add another missing includejam@chromium.org2011-04-151-0/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81684 0039d316-1c4b-4281-b951-d872f2087c98
* Fix missing includejam@chromium.org2011-04-151-0/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81683 0039d316-1c4b-4281-b951-d872f2087c98
* Fix missing includejam@chromium.org2011-04-151-0/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81682 0039d316-1c4b-4281-b951-d872f2087c98
* Move RenderProcess to content.jam@chromium.org2011-04-1526-23/+31
| | | | | | | TBR=avi Review URL: http://codereview.chromium.org/6864001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81681 0039d316-1c4b-4281-b951-d872f2087c98
* Cursor doesn't move to next input field when tab is used, and Bidi UIdhollowa@chromium.org2011-04-152-20/+18
| | | | | | | | | | | Changes Autofill layout to move the list delete icon outside of the text box so that it is more apparent when tabbing through. Also, moves some things around so that Bidi languages look better. BUG=78776, 78744 TEST=Manual inspection according to bugs. Review URL: http://codereview.chromium.org/6854036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81680 0039d316-1c4b-4281-b951-d872f2087c98
* Added GpuMsg_VisibilityChanged message.amarinichev@chromium.org2011-04-157-1/+38
| | | | | | | | | | | The message is sent from the UI thread of the browser process to the GPU process when a tab changes visibility. It will be a hint for the GPU process to hold on to visible tabs. BUG=61038 TEST=breakpoint Review URL: http://codereview.chromium.org/6840034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81679 0039d316-1c4b-4281-b951-d872f2087c98
* Changing the flash version so that pyauto test passessunandt@google.com2011-04-152-2/+2
| | | | | | | | BUG=73902 TEST=plugins_check.PluginsCheck.testPluginsStates Review URL: http://codereview.chromium.org/6835037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81678 0039d316-1c4b-4281-b951-d872f2087c98
* Fix DEPS checkjam@chromium.org2011-04-151-0/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81677 0039d316-1c4b-4281-b951-d872f2087c98
* Adds "Save identity and password" checkbox to 802.1X Wi-Fi connectionsgspencer@chromium.org2011-04-145-6/+74
| | | | | | | | | | | Needed for enterprise support so we can avoid saving credentials to disk. BUG=chromium-os:14056 TEST=Forgot all your saved networks. Join a 802.1X network that requires a password. Verify there is a checkbox "Save identity and password" in the dialog, and that it defaults to checked. Verify you can join the network. Disconnect from the network. Join again. Verify you do not see a password prompt (because the password was saved). Forgot the network. Join it again, but this time uncheck the "Save password" checkbox. Verify you can join the network. Disconnect and reconnect. Verify you are prompted again for a password, and the password text field is blank (password was not saved). Review URL: http://codereview.chromium.org/6854006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81676 0039d316-1c4b-4281-b951-d872f2087c98
* Remove non-functional 802.1X widgets from Wi-Fi Connection Details panel.gspencer@chromium.org2011-04-146-131/+3
| | | | | | | | | | | | Get rid of identity, certificate path, and private key password fields, in favor of the versions built into the "Join Wi-Fi network" panel. BUG=chromium-os:13892 TEST=Join a public Wi-Fi network, open connection details, verify it does not say "access is protected". Join a password-protected Wi-Fi network, verify connection details says "access is protected". Join an 802.1X PEAP network, verify connection details does not have widgets related to certificates and private keys, and does say "access is protected". Using the enterprise extension for Google-A, verify you can still connect to that network. Review URL: http://codereview.chromium.org/6825083 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81675 0039d316-1c4b-4281-b951-d872f2087c98
* Avoid sending notification of losing focus to the renderer side when a ↵yzshen@chromium.org2011-04-141-0/+7
| | | | | | | | | | | | | context menu is shown. This fixes the CrOS behavior, making it the same as Linux Chromium. BUG=None TEST=On CrOS: (1) use Pepper flash to show a .swf file; (2) select some text on the flash; (3) click right button on the selection. The selection should not disappear. Review URL: http://codereview.chromium.org/6840067 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81674 0039d316-1c4b-4281-b951-d872f2087c98
* Move RenderThread to content\renderer.jam@chromium.org2011-04-1451-58/+58
| | | | | | | TBR=avi Review URL: http://codereview.chromium.org/6861005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81673 0039d316-1c4b-4281-b951-d872f2087c98
* Hide Wi-Fi 802.1X EAP-TLS and LEAP under a flag.gspencer@chromium.org2011-04-145-23/+73
| | | | | | | | | | | | EAP-TLS and LEAP support are still experimental, so for M12 we're going to hide them behind an --enable-experimental-eap flag. BUG=chromium-os:14047 TEST=Try to join "Google-A" or other EAP-TLS network. In the Join Wi-Fi network dialog you should only see EAP methods "PEAP" and "EAP-TTLS". There should be a "server CA cert" combobox, but not a "user cert" combobox. Then start chrome with the command line flag "--enable-experimental-eap" and try again. You should now see "EAP-TLS" as an option and a combobox to select a client certificate. Review URL: http://codereview.chromium.org/6824065 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81672 0039d316-1c4b-4281-b951-d872f2087c98
* Roll WebKit revision 83807:83911crogers@google.com2011-04-141-1/+1
| | | | | | | | BUG=none TEST=none TBR=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81671 0039d316-1c4b-4281-b951-d872f2087c98
* Fix erratic HTML5 audio playbackdavej@chromium.org2011-04-144-21/+77
| | | | | | | | | | | | | | | This was affecting all platforms. The major issue was that he SetPlaybackRate(1) which is used to start playback was being done in the middle of the series of Seek operations. So doing Seek() followed by SetPlaybackRate(1) was done, the Seek could immediately stop the playback. To fix, Seek() was made atomic with regards to SetPlaybackRate() by delaying the execution of SetPlaybackRate until after the Seek sequence has completely finished. To make things run even smoother, a short delay was added before recyclilng a used audio stream in the Dispatcher. This gives the stream time to 'power down' before being reused. Tested on Linux, Chrome-OS (Cr48) and Mac with great results, making HTML5 audio much more usable for games. BUG=73045,59369,59370,65618 TEST=Manual, Quickly playing/stopping HTML5 audio should play cleanly. Review URL: http://codereview.chromium.org/6822019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81670 0039d316-1c4b-4281-b951-d872f2087c98
* Fix Linux audio playbackdavej@chromium.org2011-04-142-2/+26
| | | | | | | | | | | | | Playing audio files shorter than about 11000 samples on Linux was either not working at all, or re-playing (starting and stopping on the same audio object) was working only intermittently. It was possible to stop audio playback before the first buffer was played, resulting in no sound at all. Also, if replaying, the buffer may have been dirty from the previous playback on the same device. So on Linux at least, these issues appear fixed. BUG=73045,47761,59367,59369,59370,65618 TEST=Manual, quickly playing short audio files on Linux should work Review URL: http://codereview.chromium.org/6776024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81669 0039d316-1c4b-4281-b951-d872f2087c98
* In debug mode, copy the mark (0x36) into all the free'd region.rtenneti@chromium.org2011-04-141-0/+6
| | | | | | | | | | | This could help us to cacth code that is accessing free'd memory. TEST=None BUG=78791 R=jar Review URL: http://codereview.chromium.org/6814038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81668 0039d316-1c4b-4281-b951-d872f2087c98
* Landing issue 6828049 on behalf of KushalP.apatrick@chromium.org2011-04-1421-192/+192
| | | | | | | | | | | | | http://codereview.chromium.org/6826049/ Original message: Renaming GPUProcessor to GpuScheduler TEST=try BUG=76585 Review URL: http://codereview.chromium.org/6853027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81667 0039d316-1c4b-4281-b951-d872f2087c98
* Remove the rest of the Chrome dependencies from RenderThread.jam@chromium.org2011-04-1419-105/+128
| | | | | | Review URL: http://codereview.chromium.org/6853029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81666 0039d316-1c4b-4281-b951-d872f2087c98
* Fix a regression in command buffer TexSubImage2D.zmo@google.com2011-04-141-1/+2
| | | | | | | | | BUG=79507 TEST=none TBR=gman@google.com Review URL: http://codereview.chromium.org/6858003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81665 0039d316-1c4b-4281-b951-d872f2087c98
* Proactively preventing build break when ↵zelidrag@chromium.org2011-04-141-0/+6
| | | | | | | | | | | https://bugs.webkit.org/show_bug.cgi?id=58456 lands. TBR=darin BUG=https://bugs.webkit.org/show_bug.cgi?id=58456 TEST=none Review URL: http://codereview.chromium.org/6852031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81664 0039d316-1c4b-4281-b951-d872f2087c98
* Draft version of the HW video decode tester and few other changes.scherkus@chromium.org2011-04-1415-32/+1721
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Intention is that this tester can be used to decouple HW decode accelerator integration from running the whole Chrome browser. Features: - Independent GUnit executable, which should be possible to use in autotests. - Mimics Renderer process from Gpu video pipeline perspective. * Test bench contains implementation of FakeClient which essentially mimics Renderer process from the GpuVideoDecodeAccelerator's point of view. * FakeClient runs on it's own thread and will communicate with using the IPC messages that are used also within the real use case. * FakeClient will allocate memories using same SharedMemory stuff as the real Renderer code. * Currently reads H.264 Annex B bitstream from file and parses it to NAL units before feeding to the decoder * TODO: Polish and improving the features and configurability. * TODO: GLES texture allocation for textures. - Allows building various test cases and error behaviour as well both on AcceleratedVideoDecoder interface as well as erroneous behaviour from the client. - Allows also checking expected order of calls if we want to enforce certain behaviour across various implementations. Patch by vmr@chromium.org: http://codereview.chromium.org/6720040/ BUG=none TEST=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81663 0039d316-1c4b-4281-b951-d872f2087c98
* Make wifi compliance tests more stable.stanleyw@chromium.org2011-04-144-11/+117
| | | | | | | | | | | | | | | | Added timeouts to the power strip module code which was causing tests to previously hang when any of the read_until() calls did not encounter the search string. Also made the code more robust by eliminating 'Connection reset by peer' situations. Modified timeout duration for call to ConnectToWifiNetwork since flimflam has a connection timeout of 45 seconds. Added the rest of the routers defined in the router configuration file. BUG=chromium-os:14052,chromium-os:13606 TEST=Run chromeos_wifi_compliance pyauto test. STATUS=Fixed Review URL: http://codereview.chromium.org/6837015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81661 0039d316-1c4b-4281-b951-d872f2087c98
* Fix up login screen for remoting.dmaclach@chromium.org2011-04-142-24/+29
| | | | | | | | | BUG=79048 TEST=Log in via remoting and make sure insertion point is in form, and enter submits. Review URL: http://codereview.chromium.org/6822065 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81660 0039d316-1c4b-4281-b951-d872f2087c98
* first-run: Eliminate the ifdefs in upgrade_util.htfarina@chromium.org2011-04-149-54/+73
| | | | | | | | | | | BUG=79203 TEST=None R=jhawkins@chromium.org Review URL: http://codereview.chromium.org/6853022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81659 0039d316-1c4b-4281-b951-d872f2087c98
* Mitigate XSS in the bookmark manager using Content-Security-Policy.abarth@chromium.org2011-04-145-1609/+1625
| | | | | | | | | We're adding support for Content-Security-Policy (CSP) support to WebKit, which helps prevent XSS by letting sites whitelist where they can load scripts from. This patch adds a CSP policy to the bookmark manager that only allows script loads from extensions and from "chrome" URLs. Adding the policy required only a tiny change the bookmark manager (moving the main script block to be external), but required changing some of the infrastructure for packing component extensions (to avoid inlining external scripts). CSP forbids inline script (and inline event handlers) because it can't tell whether those scripts are a result of XSS. Review URL: http://codereview.chromium.org/6831008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81658 0039d316-1c4b-4281-b951-d872f2087c98
* Change the client-side phishing detection request format. Instead ofnoelutz@google.com2011-04-1424-198/+313
| | | | | | | | | | | | just sending the URL with the computed score we also send back all the extracted features. BUG=NONE TEST=ClientSideDetectionHostTest,ClientSideDetectionServiceTest,PhishingClassifierTest,PhishingClassifierDelegateTest Review URL: http://codereview.chromium.org/6810020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81657 0039d316-1c4b-4281-b951-d872f2087c98
* Whitelist access to the disk in URLRequestResourceBundleJob::GetData.abarth@chromium.org2011-04-141-2/+11
| | | | | | | | | | | | | This function is run on the IO thread, which means it shouldn't touch the disk, but it does. There's already a bug on file for fixing this issue (which covers this instance and the same instance in some of the other URLRequestJob subclasses). I'm adding ScopedAllowIO in this patch to silence the DCHECK while we work on the bug. BUG=59849 Review URL: http://codereview.chromium.org/6851026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81656 0039d316-1c4b-4281-b951-d872f2087c98
* Trace whenever renderer waits for command buffer space.jbauman@chromium.org2011-04-142-11/+27
| | | | | | | | | | | This lets us determine whether the renderer is spinning waiting for command buffer space to open up. BUG= TEST= Review URL: http://codereview.chromium.org/6833005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81655 0039d316-1c4b-4281-b951-d872f2087c98
* net: cut an HSTS hole out at latest.chrome.google.comagl@chromium.org2011-04-142-2/+11
| | | | | | | | | BUG=none TEST=none http://codereview.chromium.org/6852030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81653 0039d316-1c4b-4281-b951-d872f2087c98
* Implement private API for web store to determine app ID ofaa@chromium.org2011-04-1412-104/+352
| | | | | | | | | | | a given frame. BUG=73225 TEST= Review URL: http://codereview.chromium.org/6823068 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81652 0039d316-1c4b-4281-b951-d872f2087c98
* Refactored size tests to put all slow download job refs in same function.rdsmith@chromium.org2011-04-141-26/+30
| | | | | | | | | | BUG=None TEST=All known download tests. Review URL: http://codereview.chromium.org/6833015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81651 0039d316-1c4b-4281-b951-d872f2087c98
* Make dev channel warning more apparent by showing an alert confirmation when ↵chocobo@chromium.org2011-04-144-18/+55
| | | | | | | | | | the user tries to change the channel to dev. And if they select ok, we inline the arning below the combo box. If they switch back to Stable or Beta, we remove the inlined warning. BUG=chromium-os:13787 TEST=try changing channel to dev and see the warning. If selecting ok, the channel should be changed. When selecting cancel, we revert back to previous selection. Review URL: http://codereview.chromium.org/6831003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81648 0039d316-1c4b-4281-b951-d872f2087c98
* [cros] Integrate SIM unlock flow with libcros.nkostylev@chromium.org2011-04-149-69/+558
| | | | | | | | | BUG=chromium-os:12007 TEST=Manual. Inserted locked SIM, entered incorrect PIN, entered correct PIN. Review URL: http://codereview.chromium.org/6840018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81647 0039d316-1c4b-4281-b951-d872f2087c98
* Disk Cache: Perform extra validations to data comming fromrvargas@google.com2011-04-146-11/+93
| | | | | | | | | | disk to detect obvious corruption going undetected. BUG=77841 TEST=net_unittests Review URL: http://codereview.chromium.org/6840035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81646 0039d316-1c4b-4281-b951-d872f2087c98
* Update translations using strings from launchpad.net r181tony@chromium.org2011-04-1437-1071/+683
| | | | | | | | Patch from Fabien Tassin <fta@sofaraway.org>. Review URL: http://codereview.chromium.org/6854031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81645 0039d316-1c4b-4281-b951-d872f2087c98
* Disable some failing popup tests on chromeosnirnimesh@chromium.org2011-04-141-0/+2
| | | | | | | | | | BUG=chromium-os:12653 TEST= Review URL: http://codereview.chromium.org/6840065 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81644 0039d316-1c4b-4281-b951-d872f2087c98
* Update flash version for plugins_check on chromeosnirnimesh@chromium.org2011-04-141-1/+1
| | | | | | | | | | R=krisr@chromium.org BUG= TEST= Review URL: http://codereview.chromium.org/6850025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81643 0039d316-1c4b-4281-b951-d872f2087c98
* Added svn:ignore property for mkl directory to third_party.kbr@chromium.org2011-04-140-0/+0
| | | | | | | BUG=none TBR=nsylvain git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81642 0039d316-1c4b-4281-b951-d872f2087c98
* Call OnVisibleBoundsChanged on the view itself as well as child views.oshima@google.com2011-04-141-0/+5
| | | | | | | | | | | This fixes crosbug.com/14079 BUG=chromium-os:14079, chromium-os:79269 TEST=none Review URL: http://codereview.chromium.org/6837010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81641 0039d316-1c4b-4281-b951-d872f2087c98
* Added documentation for the point.h file as an example for engineers to follow.jond@google.com2011-04-141-8/+69
| | | | | | Review URL: http://codereview.chromium.org/6825050 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81640 0039d316-1c4b-4281-b951-d872f2087c98
* Tag ProxyService as NonThreadSafe.willchan@chromium.org2011-04-142-3/+15
| | | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/6831018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81639 0039d316-1c4b-4281-b951-d872f2087c98
* Fix repaint problems in omnibox by invalidating the omnibox when unfreezing, ↵pkasting@chromium.org2011-04-141-4/+5
| | | | | | | | | | instead of just asking for a paint. The lack of invalidation was previously disguised by our global painting code that invalidated children much more frequently. BUG=78787 TEST=Paste in address bar, then press the left arrow key. You should not see an unblinking cursor-like black line at the end of the text. Review URL: http://codereview.chromium.org/6831023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81638 0039d316-1c4b-4281-b951-d872f2087c98
* Moves responsibility for showing profile error dialog out of Browsersky@chromium.org2011-04-1424-115/+78
| | | | | | | | | | | | | and into a standalone function. This way we can show the error dialog if no browser is around (as can happen during startup). BUG=74639 TEST=none R=ben@chromium.org,avi@chromium.org,estade@chromium.org Review URL: http://codereview.chromium.org/6838031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81637 0039d316-1c4b-4281-b951-d872f2087c98
* Make the usage stats checkbox on EULA screen speak and focus.chaitanyag@chromium.org2011-04-143-1/+20
| | | | | | | | BUG=chromium-os:14128 TEST=Test manually, see issue 14128 Review URL: http://codereview.chromium.org/6852008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81636 0039d316-1c4b-4281-b951-d872f2087c98
* Mac: Roll GTM 439:440thakis@chromium.org2011-04-141-1/+1
| | | | | | | | | | | | The only change is http://code.google.com/p/google-toolbox-for-mac/source/detail?r=440 , which added a single assert. BUG=none TEST=none Review URL: http://codereview.chromium.org/6849034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81635 0039d316-1c4b-4281-b951-d872f2087c98
* Add missing dependencies in content_renderer project.sergeyu@chromium.org2011-04-141-0/+2
| | | | | | | | | BUG=None TEST=Compiles Review URL: http://codereview.chromium.org/6854029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81634 0039d316-1c4b-4281-b951-d872f2087c98
* All your base/mac are belong to us.mark@chromium.org2011-04-141-0/+2
| | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/6851018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81631 0039d316-1c4b-4281-b951-d872f2087c98
* All your base are belong to us.mark@chromium.org2011-04-141-0/+6
| | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/6852028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81630 0039d316-1c4b-4281-b951-d872f2087c98