- 03 May, 2018 40 commits
-
-
Rune Lillesveen authored
Use horizontal-tb on UA stylesheet to make sure the controls look the same in all writing modes. Bug: 839142 Change-Id: I7c84afb4f1eef2cf741196b6a8639845aa72066c Reviewed-on: https://chromium-review.googlesource.com/1041025Reviewed-by:
Mounir Lamouri <mlamouri@chromium.org> Commit-Queue: Rune Lillesveen <futhark@chromium.org> Cr-Commit-Position: refs/heads/master@{#555670}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/f93c127f..23d4f20c Please follow these instructions for assigning/CC'ing issues: https://github.com/v8/v8/wiki/Triaging%20issues Please close rolling in case of a roll revert: https://v8-roll.appspot.com/ This only works with a Google account. CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_trusty_blink_rel;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel;luci.chromium.try:android_optional_gpu_tests_rel TBR=hablich@chromium.org,machenbach@chromium.org,kozyatinskiy@chromium.org,sergiyb@chromium.org Change-Id: I5d3119284742cb0b7e5430d97ff9a1d992a6444e Reviewed-on: https://chromium-review.googlesource.com/1041387Reviewed-by:
v8 autoroll <v8-autoroll@chromium.org> Commit-Queue: v8 autoroll <v8-autoroll@chromium.org> Cr-Commit-Position: refs/heads/master@{#555669}
-
Devlin Cronin authored
The dev mode extension bubble does not have a close button ('x') on cocoa, but does on views. This means that it should not have a cancel button on views (since it would be redundant with the 'x'), but it should on cocoa (since otherwise there's no way to close it, short of hitting the escape key). It looks like there was logic to try and ensure that the cocoa bubble always had a cancel button, but it was insufficient, since it uses MAC_VIEWS_BROWSER to check. However, MAC_VIEWS_BROWSER may be true, while Cocoa UI is still shown. This means that the Cocoa bubble may be shown without a cancel button, which is very bad (since it is exceedingly hard to close). Add the dismiss button back in for non-views-enabled mac builds. Bug: 838768 Change-Id: I61cf06bb3612607462fff28b72e4bfdd156a017b Reviewed-on: https://chromium-review.googlesource.com/1038231 Commit-Queue: Devlin <rdevlin.cronin@chromium.org> Reviewed-by:Elly Fong-Jones <ellyjones@chromium.org> Cr-Commit-Position: refs/heads/master@{#555668}
-
Joe Downing authored
This CL changes the data type used in platform independent code from a NativeKeyCode to a DomCode. This is a follow-up from a previous CL in which I received feedback that DomCode is the preferred mechanism for storing keyboard keys above the native API level. For this CL, I updated every interface which previously took a NativeKeyCode (or a set of them) to use DomCode. It updates some callsites which previously did a conversion to/from NativeKeyCode and simplified them to use DomCode. It also updates the KeyboardHook impl to use Domcode (platform impls will receive a NativeKeyCode from the OS which is now translated to a DomCode first before checking if it needs to be forwarded). BUG=680809 Change-Id: I0126a8ce65e317316bd0c85e35f7d80d89c63704 Reviewed-on: https://chromium-review.googlesource.com/1037927 Commit-Queue: Joe Downing <joedow@chromium.org> Reviewed-by:
Scott Violet <sky@chromium.org> Reviewed-by:
Kevin Schoedel <kpschoedel@chromium.org> Reviewed-by:
ccameron <ccameron@chromium.org> Cr-Commit-Position: refs/heads/master@{#555667}
-
Ramin Halavati authored
Network traffic annotation tests on trybots are triggered only if Chrome or remoting targets are modified. In cases that a file out of this scope, like in components, is modified, the test is not triggered and annotation changes miss tests. The test scope is expanded to all targets. It is expected that this does not have any negative speed effect as traffic annotation tests prefilter files that do not include any annotations. Bug: 690323 Change-Id: Iaa771443a40285c4b547b5e3c15f26f6cb61457e Reviewed-on: https://chromium-review.googlesource.com/1030270Reviewed-by:
Dirk Pranke <dpranke@chromium.org> Commit-Queue: Ramin Halavati <rhalavati@chromium.org> Cr-Commit-Position: refs/heads/master@{#555666}
-
Ehsan Karamad authored
Currently if a DomWindow in the page has a touch handler, the whole region for local frame root is added as touch region. This is incorrect as only the window for corresponding to the document/frame should be considered -- which is the same treatment that is given to |document|. Bug: 830626 Change-Id: Ieebd4116e9753f800fe2534cb0c89da812d22c56 Reviewed-on: https://chromium-review.googlesource.com/1005368Reviewed-by:
Robert Flack <flackr@chromium.org> Commit-Queue: Ehsan Karamad <ekaramad@chromium.org> Cr-Commit-Position: refs/heads/master@{#555665}
-
Max Moroz authored
That single-line change would be very helpful for hosting reports at GCS, as it provides a multi-platform dir structure for free. Bug: 836663 Change-Id: Ic9a984360cb352a23ace780d4aa600084be98a36 Reviewed-on: https://chromium-review.googlesource.com/1041282Reviewed-by:
Abhishek Arya <inferno@chromium.org> Commit-Queue: Abhishek Arya <inferno@chromium.org> Cr-Commit-Position: refs/heads/master@{#555664}
-
John Abd-El-Malek authored
AKA LoadImageBrowserTest.LoadImageW on Windows. Also remove 2 tests from the filter file that don't exist. Bug: 776589 Cq-Include-Trybots: master.tryserver.chromium.linux:linux_mojo Change-Id: Ic4e0171723a52ff1cbf403af5df1510a26c868e6 Reviewed-on: https://chromium-review.googlesource.com/1040741 Commit-Queue: John Abd-El-Malek <jam@chromium.org> Reviewed-by:
Jun Cai <juncai@chromium.org> Cr-Commit-Position: refs/heads/master@{#555663}
-
Johannes Henkel authored
I think it's better to do this directly on the field decl in the header than with every single constructor since it's easy to forget it there: at the moment it's missing from the third constructor in the .cc. It's possible that this makes no difference thus far but it's better to initialize it to avoid undefined behavior. R=caseq Change-Id: Ifd3e6b320bae593f9400f30ca7dc4769c391afb5 Reviewed-on: https://chromium-review.googlesource.com/1038820Reviewed-by:
Andrey Kosyakov <caseq@chromium.org> Reviewed-by:
Pavel Feldman <pfeldman@chromium.org> Commit-Queue: Andrey Kosyakov <caseq@chromium.org> Cr-Commit-Position: refs/heads/master@{#555662}
-
Kenneth Russell authored
Worked with zmo@ to develop this documentation along with the example CLs. Also added top-level links to the GPU docs and cleaned up some other now-incorrect documentation. More cleanups are still needed. Bug: 838970 Tbr: zmo@chromium.org Change-Id: I40e07adf864974a645490627f5a055ce686237a3 Reviewed-on: https://chromium-review.googlesource.com/1041273 Commit-Queue: Kenneth Russell <kbr@chromium.org> Reviewed-by:
Kenneth Russell <kbr@chromium.org> Cr-Commit-Position: refs/heads/master@{#555661}
-
chrome-release-bot authored
# This is an automated release commit. # Do not revert without consulting chrome-pmo@google.com. NOAUTOREVERT=true TBR=anantha@chromium.org Change-Id: Ia029f0b839985c95a263b3b9259a11068875bc66 Reviewed-on: https://chromium-review.googlesource.com/1041408Reviewed-by:
chrome-release-bot@chromium.org <chrome-release-bot@chromium.org> Cr-Commit-Position: refs/heads/master@{#555660}
-
Daniel Cheng authored
There's a weird crash right now in RequestBeginMainFrameNotExpected. The current theory is that somehow, Blink can't lookup the LocalFrame's corresponding WebLocalFrame. Add some tracing info to try to figure out how this is happening. Bug: 838348 Change-Id: Icbc357fcbb278e309d8b99a03cc652f9b9ccd771 Reviewed-on: https://chromium-review.googlesource.com/1041150Reviewed-by:
Kentaro Hara <haraken@chromium.org> Commit-Queue: Daniel Cheng <dcheng@chromium.org> Cr-Commit-Position: refs/heads/master@{#555659}
-
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/456cff40ed21..25309ca66e03 $ git log 456cff40e..25309ca66 --date=short --no-merges --format='%ad %ae %s' Created with: roll-dep src-internal BUG=chromium:835714 The AutoRoll server is located here: https://src-internal-chromium-roll.skia.org Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. TBR=mmoss@chromium.org Change-Id: Ie410b60509ad2bb2e98ec7ac600eec9428161c16 Reviewed-on: https://chromium-review.googlesource.com/1041220 Commit-Queue: src-internal-chromium-autoroll <src-internal-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Reviewed-by:
src-internal-chromium-autoroll <src-internal-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#555658}
-
Alexander Alekseev authored
This CL creates new component components/account_id/ by moving existing files out of components/signin/. Basically it moves: components/{signin/core => }/account_id/ components/{signin/public => account_id}/interfaces/BUILD.gn Most of the changes are purely mechanical: git-gs 'include .components/signin/core/account_id/account_id.h' | sed 's/:.*$//' | xargs sed -i 's#components/signin/core/account_id/account_id.h#components/account_id/account_id.h#' find . -mount -name DEPS | xargs sed -i 's#components/signin/core/account_id#components/account_id#' find . -mount -name '*mojom' | xargs sed -i 's#components/signin/public/#components/account_id#' find . -mount -name '*.gn' -type f | xargs sed -i 's#components/signin/core/account_id#components/account_id#' components/account_id/DEPS was created manually be stripping all the extra deps it had in components/signin/DEPS . Bug: 727549,462823 Change-Id: I9c0752a0503affef87c032453b6b5023b41e8e77 Reviewed-on: https://chromium-review.googlesource.com/1036504 Commit-Queue: Alexander Alekseev <alemate@chromium.org> Reviewed-by:Maksim Ivanov <emaxx@chromium.org> Reviewed-by:
Scott Violet <sky@chromium.org> Reviewed-by:
Alexander Alekseev <alemate@chromium.org> Reviewed-by:
Mustafa Emre Acer <meacer@chromium.org> Reviewed-by:
Mihai Sardarescu <msarda@chromium.org> Reviewed-by:
David Roger <droger@chromium.org> Reviewed-by:
Roger Tawa <rogerta@chromium.org> Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Cr-Commit-Position: refs/heads/master@{#555657}
-
https://chromium.googlesource.com/catapult.git/+log/02bb4b7da4db..978be7439d1e $ git log 02bb4b7da..978be7439 --date=short --no-merges --format='%ad %ae %s' 2018-05-02 simonhatch Dashboard - Remove internal_only from row. Created with: roll-dep src/third_party/catapult The AutoRoll server is located here: https://catapult-roll.skia.org Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. TBR=sullivan@chromium.org Change-Id: I4237e7ae839cf987bc4446330f48483e98ba51ba Reviewed-on: https://chromium-review.googlesource.com/1041014Reviewed-by:
catapult-chromium-autoroll <catapult-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Commit-Queue: catapult-chromium-autoroll <catapult-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#555656}
-
Patti authored
Update the "Site Settings" page in chrome://settings with new strings and add headings. This change is gated behind the #site-settings flag. Bug: 835712 Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation Change-Id: I944e14d1009a96f6728a9dbd0917136c27894fe5 Reviewed-on: https://chromium-review.googlesource.com/1036707 Commit-Queue: Patti <patricialor@chromium.org> Reviewed-by:
Dave Schuyler <dschuyler@chromium.org> Cr-Commit-Position: refs/heads/master@{#555655}
-
John Budorick authored
Bug: 838767 Change-Id: I0e589d218161e2cd45e1023093dbe7341c9899aa Reviewed-on: https://chromium-review.googlesource.com/1039149 Commit-Queue: John Budorick <jbudorick@chromium.org> Reviewed-by:
Stephen Martinis <martiniss@chromium.org> Cr-Commit-Position: refs/heads/master@{#555654}
-
Jun Cai authored
Network Service: Fix some LoginPromptBrowserTest by adding |do_not_prompt_for_login_| flag for URLLoader This CL fixes some LoginPromptBrowserTest by adding a |do_not_prompt_for_login_| flag for URLLoader. It is similar to what ResourceLoader::OnAuthRequired() does. Bug: 783990 Cq-Include-Trybots: master.tryserver.chromium.linux:linux_mojo Change-Id: I86d72fcf64429a3d78231ce55fc1bb07359c7caa Reviewed-on: https://chromium-review.googlesource.com/1015742 Commit-Queue: Jun Cai <juncai@chromium.org> Reviewed-by:
Matt Menke <mmenke@chromium.org> Reviewed-by:
Andrey Kosyakov <caseq@chromium.org> Reviewed-by:
John Abd-El-Malek <jam@chromium.org> Cr-Commit-Position: refs/heads/master@{#555653}
-
Ryan Hamilton authored
Merge internal change: 195142837 Change-Id: I39fd91432d12d60aea4299654dac48cc7dfd5b98 Reviewed-on: https://chromium-review.googlesource.com/1040660Reviewed-by:
Zhongyi Shi <zhongyi@chromium.org> Commit-Queue: Ryan Hamilton <rch@chromium.org> Cr-Commit-Position: refs/heads/master@{#555652}
-
Nasko Oskov authored
Currently this test navigates to a file that is not copied over to the device, which causes it to fail on the bots inconsistently. This CL makes sure the file is present in the location copied to the device and updates the path in the test. Bug: 838161 Change-Id: Icc8f7aa4537ba89575cda19fe1fd00b84e375323 Reviewed-on: https://chromium-review.googlesource.com/1040873Reviewed-by:
Bo <boliu@chromium.org> Commit-Queue: Nasko Oskov <nasko@chromium.org> Cr-Commit-Position: refs/heads/master@{#555651}
-
https://webrtc.googlesource.com/src.git/+log/219958059034..6f7e6d6ff353 $ git log 219958059..6f7e6d6ff --date=short --no-merges --format='%ad %ae %s' Created with: roll-dep src/third_party/webrtc The AutoRoll server is located here: https://webrtc-chromium-roll.skia.org Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_chromium_archive_rel_ng;master.tryserver.chromium.mac:mac_chromium_archive_rel_ng TBR=webrtc-chromium-sheriffs-robots@google.com Change-Id: Ic73ab77163de035ecdd8bb59faed90b2db587573 Reviewed-on: https://chromium-review.googlesource.com/1041148Reviewed-by:
webrtc-chromium-autoroll <webrtc-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Commit-Queue: webrtc-chromium-autoroll <webrtc-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#555650}
-
Joel Hockey authored
Replace the logic in NavigationListModel.prototype.item and NavigationListModel.prototype.length_ to instead calculate the order and preserve it in an array in reorderNavigationItems_. This makes the ordering rules clearer and should also give faster performance for the more frequently accessed item function. Update tests to include recent. This change in done in advance of adding crostini Linux Files. Bug: 834103 Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation Change-Id: I08c3222b4317b0d38524c52e320545d6717ef9b0 Reviewed-on: https://chromium-review.googlesource.com/1039207 Commit-Queue: Joel Hockey <joelhockey@chromium.org> Reviewed-by:
Sasha Morrissey <sashab@chromium.org> Cr-Commit-Position: refs/heads/master@{#555649}
-
Robert Ogden authored
Adds user action reasons and fleshes out all UMA recording around why data savings may have been cleared. Also adds another histogram, DataReductionProxy.DeleteBrowsingHistory.NumBuckets to track how many buckets are deleted when browsing history is cleared. Bug: 812922 Change-Id: I8cf989fa724f23c62bda8232f1215f8ff6b7839a Reviewed-on: https://chromium-review.googlesource.com/1030880 Commit-Queue: Robert Ogden <robertogden@chromium.org> Reviewed-by:
Istiaque Ahmed <lazyboy@chromium.org> Reviewed-by:
Theresa <twellington@chromium.org> Reviewed-by:
Robert Kaplow <rkaplow@chromium.org> Reviewed-by:
Tommy Nyquist <nyquist@chromium.org> Reviewed-by:
Ryan Sturm <ryansturm@chromium.org> Cr-Commit-Position: refs/heads/master@{#555648}
-
Khushal authored
Integrate SkStrikeServer/SkStrikeClient to remote glyph generation for OOP raster. This includes the following changes: 1) Use a SkTextBlobCacheDiffCanvas during serialization to analyze text blobs serialized as a part of raster commands. This is used to track the set of glyphs that will be required to raster these commands. 2) Use the SkStrikeServer::DiscardableHandleManager to let skia allocate and lock discardable handles. Each handle is allocated a unique id that skia can internally serialize and map to an instance of SkGlyphCache on the GPU process. This allows the renderer to pin glyph caches on the GPU until dependent raster commands are executed on the service. 3) In the GPU process, deserialize the font data prior to executing the raster commands. The deserialization populates the requisite glyph caches with the glyphs generated by the renderer. Once the raster commands have been executed, unlock all the discardable handles. R=enne@chromium.org, piman@chromium.org TBR=bsalomon@chromium.org Cq-Include-Trybots: luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;master.tryserver.blink:linux_trusty_blink_rel;luci.chromium.try:win_optional_gpu_tests_rel Change-Id: Ifff356a30bb2ac235eea0bc80e00180a508bce81 Reviewed-on: https://chromium-review.googlesource.com/1006181 Commit-Queue: Khushal <khushalsagar@chromium.org> Reviewed-by:
Khushal <khushalsagar@chromium.org> Reviewed-by:
Tom Sepez <tsepez@chromium.org> Reviewed-by:
Sadrul Chowdhury <sadrul@chromium.org> Reviewed-by:
enne <enne@chromium.org> Reviewed-by:
Antoine Labour <piman@chromium.org> Cr-Commit-Position: refs/heads/master@{#555647}
-
https://chromium.googlesource.com/angle/angle.git/+log/9aef36705b66..e708f004bce5 $ git log 9aef36705..e708f004b --date=short --no-merges --format='%ad %ae %s' 2018-05-02 tobine Set ANGLE lib apk targetSdkVersion to 28 2018-04-30 jmadill Scope ANGLE_UNUSED_VARIABLE. 2018-05-02 geofflang Pass a context pointer to SurfaceImpl::[bind|release]TexImage. 2018-03-09 cwallez Use packed enums for QueryType. Created with: roll-dep src/third_party/angle The AutoRoll server is located here: https://angle-chromium-roll.skia.org Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel TBR=cwallez@chromium.org Change-Id: I13e2713e43f6704aa01a880a581ade23316b3d8e Reviewed-on: https://chromium-review.googlesource.com/1040882Reviewed-by:
angle-chromium-autoroll <angle-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Commit-Queue: angle-chromium-autoroll <angle-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#555646}
-
John Chen authored
Android Chrome 67 has just been promoted to Beta. Copy ToT Java test filters to Beta, and remove obsolete Python test filters. TBR=kereliuk@chromium.org Change-Id: I811bbe653025675a6660652e82d6c169e94ca0d8 Reviewed-on: https://chromium-review.googlesource.com/1041211Reviewed-by:
John Chen <johnchen@chromium.org> Commit-Queue: John Chen <johnchen@chromium.org> Cr-Commit-Position: refs/heads/master@{#555645}
-
Chromium WPT Sync authored
Using wpt-import in Chromium dbf8b1b5. Build: https://ci.chromium.org/buildbot/chromium.infra.cron/wpt-importer/16702 Note to sheriffs: This CL imports external tests and adds expectations for those tests; if this CL is large and causes a few new failures, please fix the failures by adding new lines to TestExpectations rather than reverting. See: https://chromium.googlesource.com/chromium/src/+/master/docs/testing/web_platform_tests.md Directory owners for changes in this CL: alexander.shalamov@intel.com, mikhail.pozdnyakov@intel.com, rijubrata.bhaumik@intel.com, timvolodine@chromium.org: external/wpt/generic-sensor jsbell@chromium.org: external/wpt/resources TBR=kereliuk No-Export: true Change-Id: If0d0b706d7e437f3f4099cd5f4b71be345948a10 Reviewed-on: https://chromium-review.googlesource.com/1040948 Commit-Queue: Blink WPT Bot <blink-w3c-test-autoroller@chromium.org> Reviewed-by:
Blink WPT Bot <blink-w3c-test-autoroller@chromium.org> Cr-Commit-Position: refs/heads/master@{#555644}
-
Victor Costan authored
base::AdaptCallbackForRepeating was introduced to help migrate from base::Callback to base::OnceCallback / base::RepeatingCallback. However, the methods used by ServiceWorkerContextCore have been converted to take base::OnceCallback, so the adapter isn't needed anymore. Bug: 730593 Change-Id: I6eb27da059494075d457d3a3609faf80ca7087a2 Reviewed-on: https://chromium-review.googlesource.com/1040986Reviewed-by:
Matt Falkenhagen <falken@chromium.org> Commit-Queue: Victor Costan <pwnall@chromium.org> Cr-Commit-Position: refs/heads/master@{#555643}
-
Zhiling Huang authored
Bug: 837790 Change-Id: Ibecf02ab361f83b3b14d6b69e25682b408482ca2 Reviewed-on: https://chromium-review.googlesource.com/1041213Reviewed-by:
John Budorick <jbudorick@chromium.org> Commit-Queue: Zhiling Huang <hzl@chromium.org> Cr-Commit-Position: refs/heads/master@{#555642}
-
Evan Stade authored
The ash::kWindowPositionManagedTypeKey was inverted in Mash compared to classic Ash (see BrowserFrameAsh::SetWindowAutoManaged()). This fixes BrowserTestParam.TabbedOrAppBrowserWindowAutoManagementTest, largely by updating that test - to deal with the asynchronicity of mash - to use Widget and BrowserWindow interfaces instead of NativeWindow when dealing with bounds (more closely matches production code) - to appropriately test handling of initial widget bounds Change-Id: I68914c360908973a27d432248316ff12243ae932 Reviewed-on: https://chromium-review.googlesource.com/1033489 Commit-Queue: Evan Stade <estade@chromium.org> Reviewed-by:
Scott Violet <sky@chromium.org> Cr-Commit-Position: refs/heads/master@{#555641}
-
Andrey Lushnikov authored
This patch changes the behavior of Target.disposeBrowserContext method to force-close all the belonging WebContents. R=dgozman BUG=836272 Change-Id: Iec3da859363120a22c2648b31102457aee20e6cb Reviewed-on: https://chromium-review.googlesource.com/1031774 Commit-Queue: Andrey Lushnikov <lushnikov@chromium.org> Reviewed-by:
Scott Violet <sky@chromium.org> Reviewed-by:
Dmitry Gozman <dgozman@chromium.org> Reviewed-by:
Alex Clarke <alexclarke@chromium.org> Reviewed-by:
Andrey Kosyakov <caseq@chromium.org> Cr-Commit-Position: refs/heads/master@{#555640}
-
Varun Mohan authored
This metric measures the time a call to ComputeNativeWindowOcclusionStatus takes. It will be used when deciding whether or not to pursue native window occlusion tracking on Windows going forward. Change-Id: I497f77682dc88dc48373c9171109f24102eb101c Reviewed-on: https://chromium-review.googlesource.com/1036461Reviewed-by:
Scott Violet <sky@chromium.org> Reviewed-by:
Robert Kaplow <rkaplow@chromium.org> Reviewed-by:
Sébastien Marchand <sebmarchand@chromium.org> Commit-Queue: Varun Mohan <varunmohan@google.com> Cr-Commit-Position: refs/heads/master@{#555639}
-
Ramya Nagarajan authored
Bug: 837798, 837784, 839152 Change-Id: I7ab82dd70af2408cd57bae0e93b3175427af7470 Reviewed-on: https://chromium-review.googlesource.com/1040684Reviewed-by:
Ilya Sherman <isherman@chromium.org> Commit-Queue: Ramya Nagarajan <ramyan@chromium.org> Cr-Commit-Position: refs/heads/master@{#555638}
-
Chris Harrelson authored
This means they will show up by default in telemetry trace output. Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel;master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2 Change-Id: Ia67721c41f3347e1f58d1b37ebf69032fd06ddb7 Reviewed-on: https://chromium-review.googlesource.com/1041146Reviewed-by:
Ned Nguyen <nednguyen@google.com> Commit-Queue: Chris Harrelson <chrishtr@chromium.org> Cr-Commit-Position: refs/heads/master@{#555637}
-
Bo Liu authored
Add counts that uses whether a renderer is a subframe process or not. Dependent changes: * Rename RenderProcessHost::GetFrameDepthForTesting. * Add explicit constructor and assignment operator for TerminationInfo. This means no longer using list initialization. Bug: 813232 Change-Id: I80de8004d344cf012bd906eb01c8a4c63c218bda Reviewed-on: https://chromium-review.googlesource.com/1040675Reviewed-by:
Scott Graham <scottmg@chromium.org> Reviewed-by:
Maria Khomenko <mariakhomenko@chromium.org> Reviewed-by:
Alex Moshchuk <alexmos@chromium.org> Commit-Queue: Bo <boliu@chromium.org> Cr-Commit-Position: refs/heads/master@{#555636}
-
Andrey Kosyakov authored
Bug: 832045 Change-Id: I30edba5188f28a67d20de4dbfe75cc2e419c107f Reviewed-on: https://chromium-review.googlesource.com/1040664Reviewed-by:
Dmitry Gozman <dgozman@chromium.org> Commit-Queue: Andrey Kosyakov <caseq@chromium.org> Cr-Commit-Position: refs/heads/master@{#555635}
-
rbpotter authored
Remove the register button which was migrated from the old UI. This feature will be removed from the componentized UI. Bug: 832312 Cq-Include-Trybots: master.tryserver.chromium.linux:closure_compilation Change-Id: I0d65e275e90aab7452798fe84e8bdc382c301c65 Reviewed-on: https://chromium-review.googlesource.com/1041013Reviewed-by:
Demetrios Papadopoulos <dpapad@chromium.org> Commit-Queue: Rebekah Potter <rbpotter@chromium.org> Cr-Commit-Position: refs/heads/master@{#555634}
-
Vikas Soni authored
This CL is adding a new class that provides run-time support for working with AImage, AImageReader and ANativeWindow objects on Android O systems without requiring building for the Android O NDK level. Bug : 838725 Cq-Include-Trybots: luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel Change-Id: I30b3cd69af1f387344301bb6b8472f98b8ff0cf3 Reviewed-on: https://chromium-review.googlesource.com/1031113 Commit-Queue: vikas soni <vikassoni@chromium.org> Reviewed-by:
Eric Karl <ericrk@chromium.org> Reviewed-by:
Dale Curtis <dalecurtis@chromium.org> Cr-Commit-Position: refs/heads/master@{#555633}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/5fe1d392..f93c127f Please follow these instructions for assigning/CC'ing issues: https://github.com/v8/v8/wiki/Triaging%20issues Please close rolling in case of a roll revert: https://v8-roll.appspot.com/ This only works with a Google account. CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_trusty_blink_rel;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel;luci.chromium.try:android_optional_gpu_tests_rel TBR=hablich@chromium.org,machenbach@chromium.org,kozyatinskiy@chromium.org,sergiyb@chromium.org Change-Id: I6d0955bcbf8db06622e8191aa4bb40767ad2f31d Reviewed-on: https://chromium-review.googlesource.com/1041106Reviewed-by:
v8 autoroll <v8-autoroll@chromium.org> Commit-Queue: v8 autoroll <v8-autoroll@chromium.org> Cr-Commit-Position: refs/heads/master@{#555632}
-
Nate Chapin authored
Bug: 624061 Change-Id: Ibe1c69d7329590ce86d53463e030e594ff079bf4 Reviewed-on: https://chromium-review.googlesource.com/1040787Reviewed-by:
Nasko Oskov <nasko@chromium.org> Commit-Queue: Nate Chapin <japhet@chromium.org> Cr-Commit-Position: refs/heads/master@{#555631}
-