summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Changes to compile use_aura=1 use_webkit_compositor=1 against ToT WebKitbacker@chromium.org2011-12-012-0/+19
| | | | | | | | | BUG=none TEST=compile against WebKit gclient and master Review URL: http://codereview.chromium.org/8771008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112475 0039d316-1c4b-4281-b951-d872f2087c98
* aura: Fix unit_tests on linuxsadrul@chromium.org2011-12-016-94/+25
| | | | | | | | | | | | | | | | | Make sure the aura::Desktop is destroyed with the message-loop. This is done by adding a DestroyMessagePump notification to MessagePumpObserver. Also remove some views_unittests that were added to test NativeWidgetViews (which aren't used anymore), and do proper cleanup in AccessibilityEventRouter unittest. TBR=darin@chromium.org BUG=104559, 105613 TEST=unit_tests Review URL: http://codereview.chromium.org/8566037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112474 0039d316-1c4b-4281-b951-d872f2087c98
* Define DevTools content APIyurys@chromium.org2011-12-0148-644/+828
| | | | | | | | | | | | | | | The API consists of the following parts: * DevToolsManager routes messages between devtools agents and clients * DevToolsAgentHost provides an abstract interface to the debuggee, currently it is either RenderViewHost or Shared Worker. Client can obtain DevToolsAgentHost from DevToolsAgentHostRegistry. * DevToolsClientHost is an API that should be implemented by DevTools front-end. There is a default Chromium implementation living in chrome/ and a remote debugging server which also implements this interface. Clients can extend it in order to provide custom front-end. There is a default DevTools front-end implementation and content/ provides a way for creating corresponding DevToolsClientHost by means of DevToolsClientHost::CreateDevToolsFrontendHost. The embedder just needs to provide a concrete delegate. * This patch also removes DevToolsHost_ForwardToAgent and DevToolsHost_ForwardToClient IPC messages which were used to forward only one message. DevTools IPC messages are now hidden behind the devtools content API. BUG=104625 TEST=Existing tests Review URL: http://codereview.chromium.org/8549022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112473 0039d316-1c4b-4281-b951-d872f2087c98
* Infrastructure for accessing and manipulating network UI data.mnissler@chromium.org2011-12-016-1/+502
| | | | | | | | | | BUG=chromium-os:23124 TEST=compiles and passes tests, no observable changes. Review URL: http://codereview.chromium.org/8728030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112472 0039d316-1c4b-4281-b951-d872f2087c98
* Add some language aliases to track changes to base/ui/l10n_util.cc.grt@chromium.org2011-12-012-6/+72
| | | | | | | | | | | | Alias Australian, Canadian, New Zealand and South African English to British English, and explicitly alias "es-es" to "es" so it doesn't become "es-419" by way of the wildcard match. BUG=none TEST=covered by installer_util_unittests.exe --gtest_filter=*LanguageSelectorAliasTest* Review URL: http://codereview.chromium.org/8488006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112471 0039d316-1c4b-4281-b951-d872f2087c98
* Photo Editor: Fix the Share buttonkaznacheev@chromium.org2011-12-011-9/+15
| | | | | | | | | | BUG=chromium-os:23608,chromium-os:23609 TEST= Review URL: http://codereview.chromium.org/8773008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112470 0039d316-1c4b-4281-b951-d872f2087c98
* views: Move the remaining file from views/ to ui/views/.tfarina@chromium.org2011-12-01154-229/+230
| | | | | | | | | | BUG=104039 R=ben@chromium.org TBR=stevenjb@chromium.org Review URL: http://codereview.chromium.org/8771006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112469 0039d316-1c4b-4281-b951-d872f2087c98
* Exclude PPAPI Audio_* tests from the memcheck bots.rnk@chromium.org2011-12-011-0/+4
| | | | | | | | | | TBR=timurrrr@chromium.org BUG=106036 TEST=bots Review URL: http://codereview.chromium.org/8775012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112468 0039d316-1c4b-4281-b951-d872f2087c98
* Need to release the GL context.backer@chromium.org2011-12-011-1/+3
| | | | | | | | | | | When the threaded compositor is enabled (via CompositorCC::Initialize(true) in desktop.cc), the GL context is created on one thread and ownership transferred to another. It's important to release the context before the transfer of ownership occurs, so that the context is not current on multiple threads. BUG=none TEST=build GYP_DEFINES="use_aura=1 use_webkit_compositor=1" with the change described above Review URL: http://codereview.chromium.org/8725041 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112467 0039d316-1c4b-4281-b951-d872f2087c98
* Change drmemory_analyze to print reports and suppressions to stdouttimurrrr@chromium.org2011-12-011-1/+3
| | | | | | | | | | | This way it should be processed by the gtest_command log parser (looks like it doesn't look into stderr...) TBR=bruening Review URL: http://codereview.chromium.org/8770007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112464 0039d316-1c4b-4281-b951-d872f2087c98
* Geolocation InfoBar sometimes doesn't expire when navigating back.bulach@chromium.org2011-12-012-0/+51
| | | | | | | | | | | | | Implements GeolocationConfirmInfoBarDelegate::ShouldExpire so the infobar is removed when the back navigation is committed. BUG=106025 TEST=unit_tests: new GeolocationPermissionContextTests.InfoBarUsesCommittedEntry. Review URL: http://codereview.chromium.org/8775004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112463 0039d316-1c4b-4281-b951-d872f2087c98
* [filebrowser] Support renaming in Gallery.dgozman@chromium.org2011-12-016-24/+181
| | | | | | | | | BUG=chromium-os:23434,chromium-os:23435 TEST=See bug. Review URL: http://codereview.chromium.org/8745013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112462 0039d316-1c4b-4281-b951-d872f2087c98
* Fixed ChromeOS clang build.joaodasilva@chromium.org2011-12-013-1/+12
| | | | | | | | | | | | | LockScreen and UnlockScreen became overloaded names in TestingAutomationProvider after http://codereview.chromium.org/8664014 Missing virtual after adding OVERRIDE in http://codereview.chromium.org/8761010 TBR=sque@chromium.org, alicet@chromium.org Review URL: http://codereview.chromium.org/8774004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112461 0039d316-1c4b-4281-b951-d872f2087c98
* [filebrowser] Change file sizes to KB, MB, etc.dgozman@chromium.org2011-12-011-1/+1
| | | | | | | | | BUG=chromium-os:22812 TEST=See bug. Review URL: http://codereview.chromium.org/8776003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112460 0039d316-1c4b-4281-b951-d872f2087c98
* Refactoring: Task to get the session name moved to separate filetmuehlbauer@google.com2011-12-0110-93/+180
| | | | | | | | | | | Moved task to get the session name and its dependencies from chrome/browser/sync/glue/session_model_associator to chrome/browser/sync/util/get_session_name_task BUG=103970 TEST=SessionModelAssociatorTest.*,GetSessionNameTaskTest.* Review URL: http://codereview.chromium.org/8698004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112459 0039d316-1c4b-4281-b951-d872f2087c98
* Photo Editor: Corrected sliders vertical alignmentkaznacheev@chromium.org2011-12-011-0/+1
| | | | | | | | | | BUG=chromium-os:21076 TEST= Review URL: http://codereview.chromium.org/8775003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112458 0039d316-1c4b-4281-b951-d872f2087c98
* Added recommended pref store on Windows.joaodasilva@chromium.org2011-12-0111-64/+92
| | | | | | | | | BUG=49941 TEST=Set policies for Chromium/Chrome in a registry subkey named "Recommended". Those policies become the default values and can be overridden by the user. Review URL: http://codereview.chromium.org/8551010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112456 0039d316-1c4b-4281-b951-d872f2087c98
* Switch to IWYU for files that previously were getting a bunch ofjoi@chromium.org2011-12-0184-19/+85
| | | | | | | | | | | header files via io_thread.h or browser_thread.h TBR=owners (previously approved on codereview 8477004) BUG=98716 Review URL: http://codereview.chromium.org/8746023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112455 0039d316-1c4b-4281-b951-d872f2087c98
* Disable PPAPITest.WebSocket_* on mac valgrind.toyoshim@chromium.org2011-12-011-2/+3
| | | | | | | | | | BUG=105551 TBR=rnk@chromium.org TEST=n/a Review URL: http://codereview.chromium.org/8769006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112454 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 112452 - Support mozc suggest window on ChromeOS.mazda@chromium.org2011-12-0110-278/+124
| | | | | | | | | | | | | | | | | Ordinal IME shows candidate window under the cursor, but Mozc should show "suggest window"(same view but different location) and it's location is sent by mozc-engine. BUG=chromium-os:21356 TEST=manually confirmed it works fine and no conflict with other CJK engine. Review URL: http://codereview.chromium.org/8505051 TBR=nona@chromium.org Review URL: http://codereview.chromium.org/8776004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112453 0039d316-1c4b-4281-b951-d872f2087c98
* Support mozc suggest window on ChromeOS.nona@chromium.org2011-12-0110-124/+278
| | | | | | | | | | | | | | Ordinal IME shows candidate window under the cursor, but Mozc should show "suggest window"(same view but different location) and it's location is sent by mozc-engine. BUG=chromium-os:21356 TEST=manually confirmed it works fine and no conflict with other CJK engine. Review URL: http://codereview.chromium.org/8505051 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112452 0039d316-1c4b-4281-b951-d872f2087c98
* Update HelpApp manifest file with new content_security_policydpolukhin@chromium.org2011-12-011-2/+2
| | | | | | | | | BUG=chromium-os:16101 TEST=none Review URL: http://codereview.chromium.org/8746016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112451 0039d316-1c4b-4281-b951-d872f2087c98
* Make XHRs from extensions invisible to blocking webRequest API handlersbattre@chromium.org2011-12-013-3/+158
| | | | | | | | | | | | This CL hides XmlHttpRequests from blocking webRequest API handlers that were triggered by the same extension that owns the handler. This is necessary because of a deadlock. Synchronous XHRs block the extension and prevent the handler from being executed. BUG=105656 TEST=no Review URL: http://codereview.chromium.org/8729028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112450 0039d316-1c4b-4281-b951-d872f2087c98
* Improve thumnbail display in the File Browser and Photo Editor.kaznacheev@chromium.org2011-12-018-32/+44
| | | | | | | | | | BUG=chromium-os:22961 TEST= Review URL: http://codereview.chromium.org/8748008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112449 0039d316-1c4b-4281-b951-d872f2087c98
* Add one more boring callertimurrrr@chromium.org2011-12-011-0/+2
| | | | | | | TBR=thestig Review URL: http://codereview.chromium.org/8776002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112448 0039d316-1c4b-4281-b951-d872f2087c98
* Update .DEPS.gitchrome-admin@google.com2011-12-011-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112447 0039d316-1c4b-4281-b951-d872f2087c98
* Update V8 to version 3.7.12.svenpanne@chromium.org2011-12-011-1/+1
| | | | | | Review URL: http://codereview.chromium.org/8769004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112446 0039d316-1c4b-4281-b951-d872f2087c98
* Print out the generated suppressions for Dr.Memory reportstimurrrr@chromium.org2011-12-011-11/+76
| | | | | | | | | | | | | | The output format is very close to the one used by other tools, it should be parseable by the buildbot log parsers. Still TODO: the generated suppressions are too long since they disregard the -callstack_truncate_below flag, see http://code.google.com/p/drmemory/issues/detail?id=700 TBR=bruening Review URL: http://codereview.chromium.org/8771003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112443 0039d316-1c4b-4281-b951-d872f2087c98
* Replace OldCompletionCallbacks and TestOldCompletionCallbacks in ↵yutak@chromium.org2011-12-011-31/+31
| | | | | | | | | | | | SocketStreamTest. BUG=105683 TEST=none Review URL: http://codereview.chromium.org/8757016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112442 0039d316-1c4b-4281-b951-d872f2087c98
* Updating trunk VERSION from 956.0 to 957.0chrome-release@google.com2011-12-011-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112441 0039d316-1c4b-4281-b951-d872f2087c98
* Disable the Spelling featurehbono@chromium.org2011-12-012-14/+28
| | | | | | | | | | | This change enables the Spelling feature againg only when we run Chrome with '--enable-experimental-spellchecker-features' because this feature is punted to M18. BUG=93746 TEST=none Review URL: http://codereview.chromium.org/8763021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112439 0039d316-1c4b-4281-b951-d872f2087c98
* Fixed test data for bookmarks.BookmarksTest.testURLTypes.joaodasilva@chromium.org2011-12-011-1/+1
| | | | | | | | | TBR=nirnimesh@chromium.org TEST=bookmarks.BookmarksTest.testURLTypes passes Review URL: http://codereview.chromium.org/8772003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112438 0039d316-1c4b-4281-b951-d872f2087c98
* Fix bookmarks.BookmarksTest.testURLTypesnirnimesh@chromium.org2011-12-011-1/+1
| | | | | | | | | | It was probably broken by r112400 which gets rid of extraneous whitespace around bookmark titles. TBR=dennisjeffrey Review URL: http://codereview.chromium.org/8763023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112437 0039d316-1c4b-4281-b951-d872f2087c98
* Introduce IPC for querying CPU usage of a renderer process.ulan@chromium.org2011-12-015-18/+49
| | | | | | | | | | | | | | | | Currently a renderer process samples the CPU usage itself, which produces incorrect results if the process is sandboxed. This CL moves CPU usage sampling to the browser process (render_process_host) and allows the renderer process to query the CPU usage via IPC. BUG=105611 TEST= Review URL: http://codereview.chromium.org/8692014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112436 0039d316-1c4b-4281-b951-d872f2087c98
* Move print_dialog_cloud_uitests to interactive_ui_tests for troubleshooting ↵oshima@chromium.org2011-12-012-2/+9
| | | | | | | | | | | | | | for aura. Move the test to interactive_ui_tests to keep browser_test green while troubleshooting the issue for aura. This may actually be necessary as it's using SendKey functions. (no other tests in browser_tests uses it and all other tests that uses SendKey/Events are in interative_ui_tests) BUG=103497 TEST=none Review URL: http://codereview.chromium.org/8735016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112435 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 110890 - Adds an option item that enables/disables using the Spelling ↵hbono@chromium.org2011-12-012-14/+0
| | | | | | | | | | | | | | | | | | service. This change re-enables a check-box item "Use a web service to help resolve spelling errors", which allows users to stop using the Spelling service, on Win Chrome. I would like to revert this change because this feature has been punted to M18. BUG=103840 TEST=manual Review URL: http://codereview.chromium.org/8586043 TBR=hbono@chromium.org Review URL: http://codereview.chromium.org/8775001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112434 0039d316-1c4b-4281-b951-d872f2087c98
* Convert TestOldCompletionCallback in WebSocketJobTest.yutak@chromium.org2011-12-011-3/+3
| | | | | | | | | | BUG=105683 TEST=none Review URL: http://codereview.chromium.org/8763024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112433 0039d316-1c4b-4281-b951-d872f2087c98
* Added RefreshPolicies automation call.joaodasilva@chromium.org2011-12-0112-138/+523
| | | | | | | | | | | Also added CloudPolicyProvider.RefreshPolicies to support it, and extended CloudPolicyObserver to also observe platform provider updates. BUG=chromium-os:21956 Review URL: http://codereview.chromium.org/8591001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112431 0039d316-1c4b-4281-b951-d872f2087c98
* Extension Storage API: make the onChanged event pass in a map of changes ratherkalman@chromium.org2011-12-015-108/+27
| | | | | | | | | | | | | than a list. BUG= TEST=*ExtensionSetting* (unit_tests, browser_tests) Review URL: http://codereview.chromium.org/8744004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112430 0039d316-1c4b-4281-b951-d872f2087c98
* Slightly simplify the command line when one invokes chrome_tests with ↵timurrrr@chromium.org2011-12-011-2/+11
| | | | | | | | | --gtest_filter=One.Test This is also helpful if you want to run one excluded test locally. Review URL: http://codereview.chromium.org/8751001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112429 0039d316-1c4b-4281-b951-d872f2087c98
* [cros] Few corrections to Guest session strings.nkostylev@chromium.org2011-12-011-2/+2
| | | | | | | | | BUG=chromium-os:22839 TEST=None Review URL: http://codereview.chromium.org/8729034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112428 0039d316-1c4b-4281-b951-d872f2087c98
* Change app notification channel setup code to be based on new OAuth2 ↵munjal@chromium.org2011-12-013-157/+82
| | | | | | | | | fetchers I added so that we rely on never expiring OAuth2 tokens. Make appropriate changes to tests. Review URL: http://codereview.chromium.org/8745026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112427 0039d316-1c4b-4281-b951-d872f2087c98
* PPB_TCPSocket_Private/PPB_UDPSocket_Private are exposed to Renderer process.dpolukhin@chromium.org2011-12-0118-0/+2130
| | | | | | | | | BUG=105859 TEST=build, tests are in next CL with render implementation Review URL: http://codereview.chromium.org/8555002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112426 0039d316-1c4b-4281-b951-d872f2087c98
* Support for screenlock - keyboard shortcut + wrench menu itemachuith@chromium.org2011-12-016-1/+23
| | | | | | | | | BUG=chromium-os:21845 TEST=ctrl-shift-L should lock the screen. Wrench menu should have a Cros-only Lock Screen option. Review URL: http://codereview.chromium.org/8678029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112425 0039d316-1c4b-4281-b951-d872f2087c98
* Omit the startupWMClass from Aura build.mukai@chromium.org2011-12-011-7/+29
| | | | | | | | | | BUG=chromium:100346 TEST=manually Review URL: http://codereview.chromium.org/8566039 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112424 0039d316-1c4b-4281-b951-d872f2087c98
* Make sure the document's scroll position is always up-to-date beforedmazzoni@chromium.org2011-12-012-0/+19
| | | | | | | | | | | | | | | sending an accessibility notification. This can be removed once https://bugs.webkit.org/show_bug.cgi?id=73460 is fixed, but it's useful to have this change in the meantime because it enables progress on other bugs to proceed in the meantime. BUG=72318,104468 TEST=Compare the rects of web objects using accessibility inspectors before and after scrolling. Review URL: http://codereview.chromium.org/8748019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112423 0039d316-1c4b-4281-b951-d872f2087c98
* WebSocket Pepper API: minor properties implementationtoyoshim@chromium.org2011-12-015-49/+94
| | | | | | | | | | | | | - GetURL() - GetProtocol() BUG=87310 TEST=ui_tests --gtest_filter='PPAPITest.WebSocket*' Review URL: http://codereview.chromium.org/8744011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112422 0039d316-1c4b-4281-b951-d872f2087c98
* Change string for opening zip archives in file browser from "Open archive" ↵tbarzic@chromium.org2011-12-011-1/+1
| | | | | | | | | | | | to "Open zip file" TEST=None BUG=chromium-os:22811 Review URL: http://codereview.chromium.org/8515015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112421 0039d316-1c4b-4281-b951-d872f2087c98
* Add missing CONTENT_EXPORT to fix Linux shared build after r112415yurys@chromium.org2011-12-011-1/+1
| | | | | | | | | | BUG=104625 TEST=None TBR=pfeldman Review URL: http://codereview.chromium.org/8763022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112420 0039d316-1c4b-4281-b951-d872f2087c98
* WebSocket Pepper API: GetBufferedAmount() implementationtoyoshim@chromium.org2011-12-013-11/+63
| | | | | | | | | | BUG=87310 TEST=n/a because of waiting for landing WebKit side API change Review URL: http://codereview.chromium.org/8748002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112419 0039d316-1c4b-4281-b951-d872f2087c98