summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* PPAPI: Add unlocking for PPP calls and callbacks. Add more locking.dmichael@chromium.org2012-02-1421-71/+235
| | | | | | | | | | | | | | With this patch, ppapi_tests pass locally when building with enable_pepper_threading=1. (They didn't before). TODO: Test more calls off the main thread, make sync completion callbacks work. BUG=92909 TEST= Review URL: http://codereview.chromium.org/9391006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121901 0039d316-1c4b-4281-b951-d872f2087c98
* Marks some ssl tests disabled as they're crashing on mac.sky@chromium.org2012-02-141-2/+18
| | | | | | | | | | | R=jcivelli@chromium.org TBR=jcivelli@chromium.org BUG=114185 TEST=none Review URL: https://chromiumcodereview.appspot.com/9361064 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121900 0039d316-1c4b-4281-b951-d872f2087c98
* Flakiness cleanup: disable flaky tests under webkit/evan@chromium.org2012-02-141-3/+3
| | | | | | | | | | See https://groups.google.com/a/chromium.org/group/chromium-dev/browse_thread/thread/fcec09fc659f39a6 BUG=51622 Review URL: https://chromiumcodereview.appspot.com/9387011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121899 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 121896 - Extract RenderWidgetHostView (for Chrome-like embedders) vs. ↵vollick@google.com2012-02-1424-354/+247
| | | | | | | | | | | | | | | | | | RenderWidgetHostViewBase (for content itself, and for embedders porting to other platforms). Attempting to fix win_aura build failure. BUG=98716 Review URL: http://codereview.chromium.org/9307055 TBR=joi@chromium.org Review URL: https://chromiumcodereview.appspot.com/9348090 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121898 0039d316-1c4b-4281-b951-d872f2087c98
* Additional suppression for bug_96101bradchen@google.com2012-02-141-1/+12
| | | | | | | | | | | TBR=ahendrickson@chromium.org BUG=96101 TEST= Review URL: https://chromiumcodereview.appspot.com/9348088 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121897 0039d316-1c4b-4281-b951-d872f2087c98
* Extract RenderWidgetHostView (for Chrome-like embedders) vs. ↵joi@chromium.org2012-02-1424-247/+354
| | | | | | | | | | | | | RenderWidgetHostViewBase (for content itself, and for embedders porting to other platforms). BUG=98716 Review URL: http://codereview.chromium.org/9307055 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121896 0039d316-1c4b-4281-b951-d872f2087c98
* Update .DEPS.gitchrome-admin@google.com2012-02-141-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121895 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit roll from 107663 to 107708loislo@chromium.org2012-02-141-1/+1
| | | | | | | | | | | BUG=none TEST=none TBR=tony@chromium.org Review URL: http://codereview.chromium.org/9358054 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121894 0039d316-1c4b-4281-b951-d872f2087c98
* Mac/Aura compile fails with new screen capture additionsdhollowa@chromium.org2012-02-141-0/+8
| | | | | | | | | | | | Fixes compile breakage on Mac that came from r121655. BUG=None TEST=Compile on 'mac_aura' bot R=sky@chromium.org, pkotwicz@chromium.org Review URL: https://chromiumcodereview.appspot.com/9389029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121893 0039d316-1c4b-4281-b951-d872f2087c98
* Cocoa: Handle re-open event in app modesail@chromium.org2012-02-145-4/+103
| | | | | | | | | | | | | | | | Currently when the Chrome icon is clicked with no windows open we always open a new browser window. This is incorrect in app mode. In app mode we should instead open an app window. To fix this I changed the reopen handler to call BrowserInit::LaunchBrowser() which does the correct thing depending on the current mode. BUG=112651 TEST= Review URL: http://codereview.chromium.org/9383040 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121892 0039d316-1c4b-4281-b951-d872f2087c98
* Disable Chrome's print preview in Chrome Frame.grt@chromium.org2012-02-144-1/+39
| | | | | | | | | | BUG=95568 TEST=do something on a page that calls window.print(); expect IE's print dialog to appear. should be covered by new test in chrome_frame_tests.exe. Review URL: http://codereview.chromium.org/9350044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121891 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 121889 - Add simple trace logging of received IPC messagesrbyers@chromium.org2012-02-143-28/+8
| | | | | | | | | | | | | | | | | | Somehow triggered a crash in the Windows linker Adds an entry to chrome://tracing for processing IPC messages that includes the IPC message type ID (which can be matched to a name with the ipclist tool), and in DEBUG builds (or other builds where IPC_MESSAGE_LOG_ENABLED has been set), the message name. Also adds shell_messages.h to the message generator headers (per the rules in ipc_message_macros.h) to fix broken IPC message logging. BUG=79942 TEST= Review URL: http://codereview.chromium.org/9389020 TBR=rbyers@chromium.org Review URL: https://chromiumcodereview.appspot.com/9365058 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121890 0039d316-1c4b-4281-b951-d872f2087c98
* Add simple trace logging of received IPC messagesrbyers@chromium.org2012-02-143-8/+28
| | | | | | | | | | | | | Adds an entry to chrome://tracing for processing IPC messages that includes the IPC message type ID (which can be matched to a name with the ipclist tool), and in DEBUG builds (or other builds where IPC_MESSAGE_LOG_ENABLED has been set), the message name. Also adds shell_messages.h to the message generator headers (per the rules in ipc_message_macros.h) to fix broken IPC message logging. BUG=79942 TEST= Review URL: http://codereview.chromium.org/9389020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121889 0039d316-1c4b-4281-b951-d872f2087c98
* Disable accelerated compositing in component extensionsrbyers@chromium.org2012-02-142-1/+15
| | | | | | | | | | | | | | | The policy for having accelerated compositing enabled for chrome WebUI should be consistent across the different types of URLs. In particular, this works around an issue that was causing the open file manager dialog to be extremely slow on Alex devices (it's still quite slow, but nearly 2x faster with this change - see crbug.com/112628). This change also removes a comment in related code that was stale (the code to which it refers was removed as part of TOUCH_UI cleanup). TBR=ben@chromium.org (trivial comment fix) BUG=105181 TEST=Run ChromeOS with the FPS counter enabled and verify that you don't get an FPS counter on Open file dialog windows. Review URL: http://codereview.chromium.org/9385011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121888 0039d316-1c4b-4281-b951-d872f2087c98
* Mark HTTPSRequestTest.HTTPSErrorsNoClobberTSSTest flaky.joi@chromium.org2012-02-141-1/+2
| | | | | | | | | | TBR=palmer@chromium.org BUG=114164 Review URL: http://codereview.chromium.org/9395011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121887 0039d316-1c4b-4281-b951-d872f2087c98
* Changed VideoCaptureController to use correct session id when stopping the ↵mflodman@chromium.org2012-02-141-2/+3
| | | | | | | | capture device. Review URL: http://codereview.chromium.org/9389006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121886 0039d316-1c4b-4281-b951-d872f2087c98
* Update .DEPS.gitchrome-admin@google.com2012-02-141-2/+2
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121885 0039d316-1c4b-4281-b951-d872f2087c98
* define SK_USE_COLOR_LUMINANCE for mac-onlyreed@google.com2012-02-142-1/+2
| | | | | | Review URL: https://chromiumcodereview.appspot.com/9391016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121884 0039d316-1c4b-4281-b951-d872f2087c98
* Update .DEPS.gitchrome-admin@google.com2012-02-141-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121883 0039d316-1c4b-4281-b951-d872f2087c98
* Update V8 to version 3.9.6.1ulan@chromium.org2012-02-141-1/+1
| | | | | | | | R=jkummerow@chromium.org Review URL: https://chromiumcodereview.appspot.com/9358053 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121882 0039d316-1c4b-4281-b951-d872f2087c98
* Update .DEPS.gitchrome-admin@google.com2012-02-141-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121881 0039d316-1c4b-4281-b951-d872f2087c98
* Update V8 to version 3.9.6.ulan@chromium.org2012-02-141-1/+1
| | | | | | | | | R=jkummerow@chromium.org Review URL: http://codereview.chromium.org/9361059 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121880 0039d316-1c4b-4281-b951-d872f2087c98
* Preventing directory rescan from stop renaming.serya@google.com2012-02-143-6/+71
| | | | | | | | | BUG=chromium-os:22824 TEST=Manual test. Review URL: https://chromiumcodereview.appspot.com/9289016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121879 0039d316-1c4b-4281-b951-d872f2087c98
* Allow SessionBackend::Init() to occur just-in-time in production builds.joi@chromium.org2012-02-142-3/+19
| | | | | | | | | | | | | | | | | This fixes a regression introduced in r113377 that caused the "old session" to be switched at start-up before being used to populate the recently closed menu. This is the simplest possible fix, intended for merge to M18. A more robust fix that prevents future regressions is likely possible and may be investigated as a follow-up. BUG=110785 TEST=see bug repro steps Review URL: https://chromiumcodereview.appspot.com/9361056 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121878 0039d316-1c4b-4281-b951-d872f2087c98
* [Sync] Split ExtensionsActivityMonitor into {Chrome,}ExtensionsActivityMonitorakalin@chromium.org2012-02-1423-388/+434
| | | | | | | | | | | | | | | | | Change ExtensionsActivityMonitor into an interface to remove the dependency on common from util/. Cleaned up thread semantics of ChromeExtensionsActivityMonitor. Cleaned up ChromeExtensionsActivityMonitor unit test. BUG=113723 TEST= Review URL: http://codereview.chromium.org/9385019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121877 0039d316-1c4b-4281-b951-d872f2087c98
* views: Fixes leak in TextExample::AddCombobox.tfarina@chromium.org2012-02-142-3/+8
| | | | | | | | | | | Combobox does not own its model, so the caller is responsible for deleting it. This patch does this by using a scoped_ptr. R=sky@chromium.org Review URL: https://chromiumcodereview.appspot.com/9389007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121876 0039d316-1c4b-4281-b951-d872f2087c98
* Whitelist PDF viewer and Google Talk plug-in for click-to-play.bauerb@chromium.org2012-02-141-0/+16
| | | | | | | | | BUG=113960 Review URL: http://codereview.chromium.org/9350039 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121875 0039d316-1c4b-4281-b951-d872f2087c98
* Disable flakey HTTPSRequestTest.HTTPSErrorsNoClobberTSSTest on Valgrind botsbradchen@google.com2012-02-141-0/+3
| | | | | | | | | | | TBR=palmer@chromium.org BUG=114164 TEST= Review URL: https://chromiumcodereview.appspot.com/9358051 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121874 0039d316-1c4b-4281-b951-d872f2087c98
* Fix brightness filter in Chrome OS Photo Editorkaznacheev@chromium.org2012-02-141-1/+2
| | | | | | | | | BUG=chromium-os:26201 TEST= Review URL: https://chromiumcodereview.appspot.com/9359031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121873 0039d316-1c4b-4281-b951-d872f2087c98
* Reworking the BrowsingData API signature to include an options object.mkwst@chromium.org2012-02-146-106/+165
| | | | | | | | | BUG=113194 TEST= Review URL: http://codereview.chromium.org/9361027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121872 0039d316-1c4b-4281-b951-d872f2087c98
* Clarify misleading comment in AutocompleteController constructor.jknotten@chromium.org2012-02-141-1/+1
| | | | | | | | | | | | | | | | The comment 'No search provider/"tab to search"' is misleading because it precedes code that adds a keyword search provider. Append 'on Android' to make it clear that this functionality is not applicable to the Android port. BUG=None TEST=None Review URL: http://codereview.chromium.org/9386009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121871 0039d316-1c4b-4281-b951-d872f2087c98
* Update .DEPS.gitchrome-admin@google.com2012-02-141-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121870 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit roll to 107663loislo@chromium.org2012-02-141-1/+1
| | | | | | | | | | | BUG=none TEST=none TBR=tony Review URL: http://codereview.chromium.org/9395002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121869 0039d316-1c4b-4281-b951-d872f2087c98
* List ignored failures for failing tests.bauerb@chromium.org2012-02-141-6/+8
| | | | | | | | | | | | When listing failed tests, this shows for every test whether the failure was ignored or not. BUG=none TEST=none Review URL: http://codereview.chromium.org/9380007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121868 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 121852 - Fix COM initialization in chrome_frame_tests.exe when built ↵joi@chromium.org2012-02-141-2/+4
| | | | | | | | | | | | | | | with the ATL included with VS2010. BUG=114609 TEST=chrome_frame_tests.exe Review URL: http://codereview.chromium.org/9391014 TBR=robertshield@chromium.org Review URL: https://chromiumcodereview.appspot.com/9360038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121865 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 121860 (linker error) - Make the auto-launch experiment profile-aware.finnur@chromium.org2012-02-1412-209/+45
| | | | | | | | | | | | | When writing to the registry key, append a hash of the profile directory path, so as to not clobber settings between profiles and add the --profile-directory=foo component to the directory as well. BUG=112118 TEST=Test this as you would test the autolaunch experiment normally (see original autolaunch bug), but make sure to test it with multiple profiles and side-by-side installations. Note: Only the Default profile gets to set this value at present time. Review URL: https://chromiumcodereview.appspot.com/9317002 TBR=finnur@chromium.org Review URL: https://chromiumcodereview.appspot.com/9361057 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121864 0039d316-1c4b-4281-b951-d872f2087c98
* Updating trunk VERSION from 1041.0 to 1042.0chrome-release@google.com2012-02-141-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121863 0039d316-1c4b-4281-b951-d872f2087c98
* Output some log info in GpuPixelBrowserTest.zmo@chromium.org2012-02-141-0/+9
| | | | | | | | | | | | This helps to figure out some failure to locate reference images in archive_results step. BUG= TEST= R=kbr Review URL: http://codereview.chromium.org/9394001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121861 0039d316-1c4b-4281-b951-d872f2087c98
* Make the auto-launch experiment profile-aware. finnur@chromium.org2012-02-1412-45/+209
| | | | | | | | | | When writing to the registry key, append a hash of the profile directory path, so as to not clobber settings between profiles and add the --profile-directory=foo component to the directory as well. BUG=112118 TEST=Test this as you would test the autolaunch experiment normally (see original autolaunch bug), but make sure to test it with multiple profiles and side-by-side installations. Note: Only the Default profile gets to set this value at present time. Review URL: https://chromiumcodereview.appspot.com/9317002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121860 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 121858 - [cros] Suggest sign-out/sign-in when sync login error appears.altimofeev@chromium.org2012-02-145-96/+7
| | | | | | | | | | | | | | | | Also, OAuth token is invalidated when sync error appears. This is done to force Gaia login flow after user's sign-out. BUG=chroimum-os:24883 TEST=manual Review URL: http://codereview.chromium.org/9320039 TBR=altimofeev@chromium.org Review URL: https://chromiumcodereview.appspot.com/9361055 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121859 0039d316-1c4b-4281-b951-d872f2087c98
* [cros] Suggest sign-out/sign-in when sync login error appears.altimofeev@chromium.org2012-02-145-7/+96
| | | | | | | | | | | | | Also, OAuth token is invalidated when sync error appears. This is done to force Gaia login flow after user's sign-out. BUG=chroimum-os:24883 TEST=manual Review URL: http://codereview.chromium.org/9320039 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121858 0039d316-1c4b-4281-b951-d872f2087c98
* Refactor FileSystemOperation to take callback for each method.kinaba@chromium.org2012-02-1427-1022/+1059
| | | | | | | | | | | | | | | | | (Reland of r121620, which was reverted because it broke chromeos-clang compilation and LayoutTests/fast/filesystem/file-writer-*) This patch is the first step for supporting cross-filesystem copy/move on the Filesystem API implementation. To accomplish it, I'm planning to crack FileSystemOperation::{Move,Copy} to a series of other FSO operations. For it, per-method callback is more handy. BUG=110121 TEST=*File* TEST=LayoutTest fast/filesystem Review URL: http://codereview.chromium.org/9372044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121857 0039d316-1c4b-4281-b951-d872f2087c98
* Stop the audio thread from within Stop (and not from the IO thread).tommi@chromium.org2012-02-144-46/+17
| | | | | | | | | | BUG=114001 TEST=Run media and content tests. Review URL: http://codereview.chromium.org/9390016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121855 0039d316-1c4b-4281-b951-d872f2087c98
* aura: Re-enable a test that has been fixed.sadrul@chromium.org2012-02-141-8/+1
| | | | | | | | | BUG=111262 TEST=aura_unittests.TransformGesture Review URL: https://chromiumcodereview.appspot.com/9390037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121853 0039d316-1c4b-4281-b951-d872f2087c98
* Fix COM initialization in chrome_frame_tests.exe when built with the ATL ↵robertshield@chromium.org2012-02-141-4/+2
| | | | | | | | | | | | included with VS2010. BUG=114609 TEST=chrome_frame_tests.exe Review URL: http://codereview.chromium.org/9391014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121852 0039d316-1c4b-4281-b951-d872f2087c98
* Add some instrumentation to track down a crash.eroman@chromium.org2012-02-144-0/+83
| | | | | | | | | | | See if the state machine in SSLClientSocketNSS is failing to cancel the origin bound certificate request. BUG=113233 Review URL: http://codereview.chromium.org/9383034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121851 0039d316-1c4b-4281-b951-d872f2087c98
* Protector bubble is re-displayed when browser window focus is lost and returned.ivankr@chromium.org2012-02-142-13/+61
| | | | | | | | | | BUG=111174 TEST=Manual: see bug description. Review URL: http://codereview.chromium.org/9379009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121850 0039d316-1c4b-4281-b951-d872f2087c98
* Add AsyncFlush when transferbuffer is > a certain sizegman@chromium.org2012-02-148-23/+114
| | | | | | | | | | | | TEST=unit tests BUG=113241 R=jbauman@chromium.org Review URL: http://codereview.chromium.org/9387014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121849 0039d316-1c4b-4281-b951-d872f2087c98
* Focus search field when Settings page loadstbreisacher@chromium.org2012-02-141-0/+18
| | | | | | | | | | BUG=113381 TEST=search field is focused Review URL: http://codereview.chromium.org/9392015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121848 0039d316-1c4b-4281-b951-d872f2087c98
* Fix build breaks when building content_unittests for android.satish@chromium.org2012-02-143-29/+20
| | | | | | | | | | | | | | Since http://codereview.chromium.org/9358028/ various method signatures have changed in jni_android.h and since the android bot doesn't build code under content/ yet we didn't notice build breaks in these files. BUG=None TEST= Review URL: http://codereview.chromium.org/9392024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121847 0039d316-1c4b-4281-b951-d872f2087c98