- 29 Sep, 2017 40 commits
-
-
Hidehiko Abe authored
BUG=None TEST=Ran bots. Change-Id: Ica33fca6c8e2d4e52f9f6ece39b5082cdba61dbf Reviewed-on: https://chromium-review.googlesource.com/675024 Commit-Queue: Hidehiko Abe <hidehiko@chromium.org> Reviewed-by:
Luis Hector Chavez <lhchavez@chromium.org> Reviewed-by:
Mattias Nissler <mnissler@chromium.org> Cr-Commit-Position: refs/heads/master@{#505311}
-
Giovanni Ortuño Urquidi authored
This reverts commit 300dbd0e. Reason for revert: Timing out on MSAN: https://luci-milo.appspot.com/buildbot/chromium.webkit/WebKit%20Linux%20Trusty%20MSAN/3438 Original change's description: > Make passing mojo blobs over IndexedDB work. > > Like other CLs this only adds a mojo blob handle for lifetime purposes, > but browser-side code still uses the separately passed UUID to actually > access the blob data. > > Bug: 740744 > Change-Id: I880db368d033473d4b923083b5e84be54e8e1716 > Reviewed-on: https://chromium-review.googlesource.com/608744 > Reviewed-by: Daniel Cheng <dcheng@chromium.org> > Reviewed-by: Kentaro Hara <haraken@chromium.org> > Reviewed-by: Daniel Murphy <dmurph@chromium.org> > Commit-Queue: Marijn Kruisselbrink <mek@chromium.org> > Cr-Commit-Position: refs/heads/master@{#505159} TBR=dcheng@chromium.org,dmurph@chromium.org,mek@chromium.org,haraken@chromium.org Change-Id: I570eaf73fa9dc307c50a9593fe51faf61537d0a8 No-Tree-Checks: true No-Try: true Bug: 740744 Reviewed-on: https://chromium-review.googlesource.com/691396Reviewed-by:
Giovanni Ortuño Urquidi <ortuno@chromium.org> Commit-Queue: Giovanni Ortuño Urquidi <ortuno@chromium.org> Cr-Commit-Position: refs/heads/master@{#505310}
-
Kent Tamura authored
Code like: if (isFooElement(n)) { auto* foo = ToFooElement(n) ... can be simplified by ToFooElementOrNull(): if (auto* foo = ToFooElementOrNull(n)) { ... Cq-Include-Trybots: master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2 Change-Id: I0113d96de08d09f849ed42683b04826eb3d8fdb2 Reviewed-on: https://chromium-review.googlesource.com/690556Reviewed-by:
Hayato Ito <hayato@chromium.org> Commit-Queue: Kent Tamura <tkent@chromium.org> Cr-Commit-Position: refs/heads/master@{#505309}
-
Ken MacKay authored
Our timing for delayed tasks is only accurate to about 15ms or so; the min buffer time should be bigger than that so that underrun prevention actually works. Bug: Change-Id: I40cf658ea4d131cc8c6eaeeae5d3323575d0d798 Reviewed-on: https://chromium-review.googlesource.com/691302Reviewed-by:
Luke Halliwell <halliwell@chromium.org> Commit-Queue: Kenneth MacKay <kmackay@chromium.org> Cr-Commit-Position: refs/heads/master@{#505308}
-
mark a. foltz authored
This reverts commit 9764561c. Reason for revert: Need to revert https://chromium-review.googlesource.com/c/chromium/src/+/656597, which this patch depends on. Original change's description: > [Desktop Capture] Replace audio_share with an enum. > > This is a followup change to > https://chromium-review.googlesource.com/c/chromium/src/+/656597 > > Changes in DesktopMediaId: > - Adds a Capture enum to indicate what is being captured > - Type enum renamed to Source to distinguish it from Capture > - type renamed to source_type > - audio_share boolean replaced with capture_type enum > - Adds methods to query/set capture type > > Bug: 766728 > Change-Id: I95c6c8ec4b12a7c2e78b360843f91956b223dcfa > Reviewed-on: https://chromium-review.googlesource.com/673093 > Commit-Queue: mark a. foltz <mfoltz@chromium.org> > Reviewed-by: Sergey Ulanov <sergeyu@chromium.org> > Reviewed-by: Zijie He <zijiehe@chromium.org> > Reviewed-by: Guido Urdaneta <guidou@chromium.org> > Reviewed-by: Scott Violet <sky@chromium.org> > Reviewed-by: Jochen Eisinger <jochen@chromium.org> > Cr-Commit-Position: refs/heads/master@{#504590} TBR=sky@chromium.org,mfoltz@chromium.org,sergeyu@chromium.org,guidou@chromium.org,jochen@chromium.org,zijiehe@chromium.org # Not skipping CQ checks because original CL landed > 1 day ago. Bug: 766728 Change-Id: I844800849ec527c12ee7330b45bc90a25f12dc9e Reviewed-on: https://chromium-review.googlesource.com/691107 Commit-Queue: mark a. foltz <mfoltz@chromium.org> Reviewed-by:
mark a. foltz <mfoltz@chromium.org> Cr-Commit-Position: refs/heads/master@{#505307}
-
Xianzhu Wang authored
TBR=wangxianzhu@chromium.org Cq-Include-Trybots: master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2 Change-Id: I9df9206c57314109dfd9fb903b301d46b741d934 Reviewed-on: https://chromium-review.googlesource.com/691018 Commit-Queue: Xianzhu Wang <wangxianzhu@chromium.org> Reviewed-by:
Xianzhu Wang <wangxianzhu@chromium.org> Cr-Commit-Position: refs/heads/master@{#505306}
-
Brandon Jones authored
This CL only enables the creation of exclusive VRSession objects. It does not provide the ability to present to a headset, or many of the functions of a VRSession. Those will be added in follow up CLs to allow the more complicated logic to be reviewed independently. Bug: 670510 Change-Id: Ic2b3b1801bf8f3ee4263d009daab8215b0b179d5 Reviewed-on: https://chromium-review.googlesource.com/685396 Commit-Queue: Brandon Jones <bajones@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Reviewed-by:
Michael Thiessen <mthiesse@chromium.org> Cr-Commit-Position: refs/heads/master@{#505305}
-
Hidehiko Abe authored
crrev.com/c/604219 introduced ARC_SECURITY_OWNERS, but it was applied only to files under components/arc/common. This CL adds owners in the file for other components/arc security reviews. BUG=None TEST=N/A Change-Id: I76ceabc862deb910ac26d2fc5d89c0458d9d2c17 Reviewed-on: https://chromium-review.googlesource.com/691637Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Commit-Queue: Hidehiko Abe <hidehiko@chromium.org> Cr-Commit-Position: refs/heads/master@{#505304}
-
Alice Boxhall authored
Bug: 560525 Change-Id: I8ab96299a63d33830d7c779ed15c0bee0bcbc28f Reviewed-on: https://chromium-review.googlesource.com/644626 Commit-Queue: Alice Boxhall <aboxhall@chromium.org> Reviewed-by:
Joel Einbinder <einbinder@chromium.org> Reviewed-by:
Andrey Lushnikov <lushnikov@chromium.org> Cr-Commit-Position: refs/heads/master@{#505303}
-
tzik authored
This CL removes RefPtr<>::Get() in order to rename it to get(). Bug: 763844 Change-Id: I90f05a57d9f9bdf493983656a731585a7fb15ed8 Reviewed-on: https://chromium-review.googlesource.com/686515Reviewed-by:
Kentaro Hara <haraken@chromium.org> Reviewed-by:
Yuta Kitamura <yutak@chromium.org> Commit-Queue: Taiju Tsuiki <tzik@chromium.org> Cr-Commit-Position: refs/heads/master@{#505302}
-
Aaron Leventhal authored
Bug: None Change-Id: I44961962ccc51fe4fdcb5e1df07b8fb9e876c868 Reviewed-on: https://chromium-review.googlesource.com/688036Reviewed-by:
Nektarios Paisios <nektar@chromium.org> Commit-Queue: Aaron Leventhal <aleventhal@chromium.org> Cr-Commit-Position: refs/heads/master@{#505301}
-
Tao Bai authored
This test doesn't run on any trybot until we have one for Android O. Bug: 717658 Change-Id: If775e7b6770d53cab12f32ed061590dc2a0530b1 Reviewed-on: https://chromium-review.googlesource.com/690753Reviewed-by:
Changwan Ryu <changwan@chromium.org> Commit-Queue: Tao Bai <michaelbai@chromium.org> Cr-Commit-Position: refs/heads/master@{#505300}
-
Alok Priyadarshi authored
Also rearranges code so that WorkerThreadForTest can be defined in one place instead of having to declare FakeWorkerGlobalScope in between. No functional change is done here. Purley moving the code around. Split from https://chromium-review.googlesource.com/c/chromium/src/+/636684 Bug: 750311 Change-Id: Ic79600567401604651ad579542ee5aabbeb5fa5f Reviewed-on: https://chromium-review.googlesource.com/691301 Commit-Queue: Alok Priyadarshi <alokp@chromium.org> Reviewed-by:
Hiroki Nakagawa <nhiroki@chromium.org> Reviewed-by:
Yutaka Hirano <yhirano@chromium.org> Cr-Commit-Position: refs/heads/master@{#505299}
-
tzik authored
RefPtr<>::Get() is being renamed to get() for a preparation of the unification of RefPtr and scoped_refptr. This CL updates calles of Get() in core/animation/ to use get(). Bug: 763844 Change-Id: I784542c713551b8028a4f7690687b83a7c59d1ac Reviewed-on: https://chromium-review.googlesource.com/688261Reviewed-by:
Kouhei Ueno <kouhei@chromium.org> Commit-Queue: Taiju Tsuiki <tzik@chromium.org> Cr-Commit-Position: refs/heads/master@{#505298}
-
Lutz Justen authored
Don't allow changing GSSAPI library name on Chrome OS (there's no reason to). Note that the GSSAPILibraryName policy is not supported on Chrome OS, which means that it already cannot be set through policy. This CL is an additional security measure. BUG=chromium:755153 TEST=Compiled, trybots Change-Id: Ibc2eb7e0ce59ccc5e7f7c8fd66078bc0efb2e3a5 Reviewed-on: https://chromium-review.googlesource.com/685836Reviewed-by:
Nicolas Zea <zea@chromium.org> Reviewed-by:
Matt Menke <mmenke@chromium.org> Reviewed-by:
Asanka Herath <asanka@chromium.org> Commit-Queue: Lutz Justen <ljusten@chromium.org> Cr-Commit-Position: refs/heads/master@{#505297}
-
tzik authored
This CL contains: 1. Remove unneeded WebAudioBusPrivate and casts from/to it. 2. Avoid applying AdoptRef twice for single AudioBus. 3. Use nullptr instead of 0 around WebAudioBus The main part is (2). An upcoming change bans multiple invocation of WTF::AdoptRef for a single object, and as its preparation, this CL removes a failing case. Bug: 763844 Tbr: rtoy@chromium.org Change-Id: I362a83cd03d49b77ef9e4d81544bd5c7a9b2bc5e Reviewed-on: https://chromium-review.googlesource.com/686088 Commit-Queue: Taiju Tsuiki <tzik@chromium.org> Reviewed-by:
Hongchan Choi <hongchan@chromium.org> Cr-Commit-Position: refs/heads/master@{#505296}
-
Patti authored
Since r503089 removed factory-default settings from the Page Info, there is now room to always show page certificate information. This patch turns on the --show-cert-link flag, which will do this, by default. Bug: 718553 Change-Id: Ic293c720337d5638f6097b481cfa7bc341b6abdf Reviewed-on: https://chromium-review.googlesource.com/686093 Commit-Queue: Patti <patricialor@chromium.org> Reviewed-by:
Lucas Garron <lgarron@chromium.org> Cr-Commit-Position: refs/heads/master@{#505295}
-
Emil A Eklund authored
Tbr: tzik@chromium.org Change-Id: I961dd6a0775fbf6458e268cd332cc1fdb509e3a0 Reviewed-on: https://chromium-review.googlesource.com/691454Reviewed-by:
Emil A Eklund <eae@chromium.org> Commit-Queue: Emil A Eklund <eae@chromium.org> Cr-Commit-Position: refs/heads/master@{#505294}
-
Katie Dektar authored
Offscreen is now calculated separately and is no longer in the state list. Bug: 717677 Change-Id: I6957d3de38e3b4c8356be1ff5f818c2c205ccc46 Reviewed-on: https://chromium-review.googlesource.com/688498 Commit-Queue: Dominic Mazzoni <dmazzoni@chromium.org> Reviewed-by:
Dominic Mazzoni <dmazzoni@chromium.org> Cr-Commit-Position: refs/heads/master@{#505293}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/5edc0327..11d773db 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;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel;master.tryserver.chromium.android:android_optional_gpu_tests_rel TBR=hablich@chromium.org,machenbach@chromium.org,kozyatinskiy@chromium.org Change-Id: I1b4f85d034b3f960c5ae2a5b452e32284d4caf89 Reviewed-on: https://chromium-review.googlesource.com/691315Reviewed-by:
v8 autoroll <v8-autoroll@chromium.org> Commit-Queue: v8 autoroll <v8-autoroll@chromium.org> Cr-Commit-Position: refs/heads/master@{#505292}
-
catapult-deps-roller@chromium.org authored
https://chromium.googlesource.com/catapult.git/+log/f8b2cb4efd8c..4022e0e9056d $ git log f8b2cb4ef..4022e0e90 --date=short --no-merges --format='%ad %ae %s' 2017-09-28 nednguyen Make sure snap_page combined iframe serialized dom Created with: roll-dep src/third_party/catapult BUG=763119 Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, see: http://www.chromium.org/developers/tree-sheriffs/sheriff-details-chromium#TOC-Failures-due-to-DEPS-rolls CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.android:android_optional_gpu_tests_rel TBR=sullivan@chromium.org Change-Id: Ie996c1b46a32dcdcea15c4575ba139aa6e6567e9 Reviewed-on: https://chromium-review.googlesource.com/691159 Reviewed-by: <catapult-deps-roller@chromium.org> Commit-Queue: <catapult-deps-roller@chromium.org> Cr-Commit-Position: refs/heads/master@{#505291}
-
Shakti Sahu authored
1 - Changed Download Home IPH pulse from rectangle to circle (in chrome home bottom sheet) 2 - Reduced circle radius size for chrome home to 12dp (crbug/769429) 3 - Multi-window : Fixed chrome home IPH on bottom window from getting below the bottom toolbar. (crbug/763813) 4 - Landscape mode : Fixed bubble arrow not aligning to menu button in landscape. (crbug/757971) Bug: 769429, 763813, 757971 Change-Id: Ic41c02ca34f4a3b9e6827ce4cec9f3438eb64bf0 Reviewed-on: https://chromium-review.googlesource.com/688254 Commit-Queue: Shakti Sahu <shaktisahu@chromium.org> Reviewed-by:
David Trainor <dtrainor@chromium.org> Cr-Commit-Position: refs/heads/master@{#505290}
-
Ken Rockot authored
BUG=673417 Change-Id: I033dde3fa6c5940cd35e341acc9c415b2b64eaff Reviewed-on: https://chromium-review.googlesource.com/688751Reviewed-by:
Dirk Pranke <dpranke@chromium.org> Reviewed-by:
Michael Moss <mmoss@chromium.org> Commit-Queue: Ken Rockot <rockot@chromium.org> Cr-Commit-Position: refs/heads/master@{#505289}
-
Kouhei Ueno authored
Intent-to-ship thread w/ 3 lgtms: https://groups.google.com/a/chromium.org/d/msg/blink-dev/ut-Mr0jt5X8/Q8B4F3wxBQAJ Bug: 711706 Change-Id: Ib28083a8473fb74a1f6222c4c6cf84d9a810564a Reviewed-on: https://chromium-review.googlesource.com/691394Reviewed-by:
Kinuko Yasuda <kinuko@chromium.org> Commit-Queue: Kouhei Ueno <kouhei@chromium.org> Cr-Commit-Position: refs/heads/master@{#505288}
-
Michael Giuffrida authored
The --log-file switch lets users specify the logging location. It was added as a generic flag and implemented in app_shell in crrev.com/c/647314. This CL expands the switch to other logging configurers, notably including chrome and content_shell. In Chrome, --log-file=<PATH> will override the $CHROME_LOG_FILE environmental variable if both are present. Bug: 760431 Change-Id: I72448b1a8cdea5b5818badd340594a2f9d6d8cd2 Reviewed-on: https://chromium-review.googlesource.com/685997Reviewed-by:
Jochen Eisinger <jochen@chromium.org> Commit-Queue: Michael Giuffrida <michaelpg@chromium.org> Cr-Commit-Position: refs/heads/master@{#505287}
-
John Chen authored
These tests were failing due to https://crrev.com/504124. The fix is based on unit tests in that CL. Bug: chromedriver:2044 Change-Id: Ied0f6ba1b472317f85ebb740accaac7b4c288309 Reviewed-on: https://chromium-review.googlesource.com/688680Reviewed-by:
Shuotao Gao <stgao@chromium.org> Commit-Queue: John Chen <johnchen@chromium.org> Cr-Commit-Position: refs/heads/master@{#505286}
-
Zentaro Kavanagh authored
- Replace uses of MD5 implementation in base with boringssl. - Replace uses of internal MD4 implementation with boringssl. - Use DES directly from boringssl and remove mozilla DES code. - The existing DES code was partially using boringssl already. - The existing DES code was setting parity itself. Now uses boringssl's DES_set_odd_parity - Re-implemented the mapping of a 128 bit NTLM hash onto three DES keys in Create3DesKeysFromNtlmHash BUG=chromium:755368,chromium:22532 Change-Id: I9f363b66c32dc8f7529627887ac46023403637e4 Reviewed-on: https://chromium-review.googlesource.com/616801 Commit-Queue: Zentaro Kavanagh <zentaro@google.com> Reviewed-by:
David Benjamin <davidben@chromium.org> Reviewed-by:
Ryan Sleevi <rsleevi@chromium.org> Reviewed-by:
Asanka Herath <asanka@chromium.org> Cr-Commit-Position: refs/heads/master@{#505285}
-
Yuki Awano authored
- Fix GetBounds to return bounds which can be passed to AXNodeData.location. Bounds are returned in the following coordinates. - Bounds of root node are relative to its container, i.e. focused window. - Bounds of non-root node are relative to its tree's root. - Bounds are returned in non-dip value. Android window with ChromeVox. Confirm that focus rectangle is shown on right location. Bug: 764870 Test: enable --enable-chromevox-arc-support and navigate elements on Change-Id: I052c3da643cd3e017b6256372221a6947410da65 Reviewed-on: https://chromium-review.googlesource.com/671168 Commit-Queue: Yuki Awano <yawano@chromium.org> Reviewed-by:
David Tseng <dtseng@chromium.org> Cr-Commit-Position: refs/heads/master@{#505284}
-
Ryan Landay authored
Long-pressing on a webpage in Android calls SelectionController::SelectClosestWordFromHitTestResult(), which calls CreateVisibleSelectionWithGranularity() to attempt to select the closest word. In some cases, this creates an invalid range (which ends before it starts), which causes a crash. This is currently the #3 top renderer crash in Chrome 61 for Android. This CL adds a check for an invalid selection range to avoid a crash that we can merge into the M62 release. We should properly fix CreateVisibleSelectionWithGranularity() at a later point to not return invalid ranges. Bug: 735774 Change-Id: If035606403df9f3d13961e49dce80f0129b96318 Reviewed-on: https://chromium-review.googlesource.com/691060 Commit-Queue: Ryan Landay <rlanday@chromium.org> Reviewed-by:
Yoshifumi Inoue <yosin@chromium.org> Cr-Commit-Position: refs/heads/master@{#505283}
-
Dale Curtis authored
kUnreliableDuration now means we can't rely on OnDurationChange events, which is fine since we generally use this with bad media. This also removes the run limit since the fuzzer seems to run fine locally now > 500000. BUG=758631 TEST=local long run Change-Id: I4b585776c64c1860c72ae89fc8ab5c020f266bdb Reviewed-on: https://chromium-review.googlesource.com/688002Reviewed-by:
Max Moroz <mmoroz@chromium.org> Commit-Queue: Dale Curtis <dalecurtis@chromium.org> Cr-Commit-Position: refs/heads/master@{#505282}
-
Xianzhu Wang authored
In the following few cases we intentionally allow under-invalidations in cached subsequences: - offscreen image animation - media buffered range We intentionally don't update each time the contents change to improve performance or avoid complex implementation of real time change notification. Now allow cache skipping in cached subsequences. Enable under-invalidation checking for tests that would have reported under-invalidation with the checking enabled. This also helps clusterfuzz not to trigger under-invaldiation checking failures when it creates a test for the above cases. Bug: 769729 Cq-Include-Trybots: master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2 Change-Id: I2149e9d2304dbad5d7486c822d5452c5dba237fe Reviewed-on: https://chromium-review.googlesource.com/690851 Commit-Queue: Xianzhu Wang <wangxianzhu@chromium.org> Reviewed-by:
Chris Harrelson <chrishtr@chromium.org> Cr-Commit-Position: refs/heads/master@{#505281}
-
Lei Zhang authored
No longer needed since Mac builds are targeting 10.9. Change-Id: I2ff87eda6ba3f9af5c2ae3d9cdd034791542b7cf Reviewed-on: https://chromium-review.googlesource.com/686295Reviewed-by:
Robert Sesek <rsesek@chromium.org> Reviewed-by:
Sadrul Chowdhury <sadrul@chromium.org> Reviewed-by:
Dirk Pranke <dpranke@chromium.org> Reviewed-by:
Giovanni Ortuño Urquidi <ortuno@chromium.org> Commit-Queue: Lei Zhang <thestig@chromium.org> Cr-Commit-Position: refs/heads/master@{#505280}
-
Pramod B S authored
Change-Id: I6c688cd5019fd0a425093b44c62981c0bb6bc8d2 Reviewed-on: https://chromium-review.googlesource.com/683934 Commit-Queue: Philip Jägenstedt <foolip@chromium.org> Reviewed-by:
Philip Jägenstedt <foolip@chromium.org> Cr-Commit-Position: refs/heads/master@{#505279}
-
Alice Boxhall authored
Bug: 470311 Change-Id: Iccf06495bcbeb87748990cf8a66e5c6be0b47d0f Reviewed-on: https://chromium-review.googlesource.com/674508Reviewed-by:
Dmitry Gozman <dgozman@chromium.org> Commit-Queue: Alice Boxhall <aboxhall@chromium.org> Cr-Commit-Position: refs/heads/master@{#505278}
-
Alice Boxhall authored
Bug: 560525 Change-Id: I36e4144ea8a66e430dd7c3b0b9010b900dd7398d Reviewed-on: https://chromium-review.googlesource.com/641694Reviewed-by:
Andrey Lushnikov <lushnikov@chromium.org> Reviewed-by:
Joel Einbinder <einbinder@chromium.org> Reviewed-by:
Dominic Mazzoni <dmazzoni@chromium.org> Commit-Queue: Alice Boxhall <aboxhall@chromium.org> Cr-Commit-Position: refs/heads/master@{#505277}
-
Adenilson Cavalcanti authored
In inflate_fast() the output pointer always has plenty of room to write. This means that so long as the target is capable, wide un-aligned loads and stores can be used to transfer several bytes at once. When the reference distance is too short simply unroll the data a little to increase the distance. Patch by Simon Hosie. PNG decoding performance gains should be around 30-33%. This also includes the fix reported in madler/zlib#245. Bug: 697280 Change-Id: I90a9866cc56aa766df5de472cd10c007f4b560d8 Reviewed-on: https://chromium-review.googlesource.com/689961Reviewed-by:
Chris Blume <cblume@chromium.org> Commit-Queue: Adenilson Cavalcanti <cavalcantii@chromium.org> Cr-Commit-Position: refs/heads/master@{#505276}
-
Hajime Hoshi authored
This CL adds a new UKM Document.OutliveTimeAfterShutdown, that is recorded when a Document object survives 5, 10, 20 or 50 garbage collections after detached. If a document outlives such long time, the document might be leaked. The UKM would be very useful to know where such leaky documents exist and to fix them. Design doc: https://docs.google.com/document/d/1fbs5smdd-pBLLMpq7u8EkyddZILtI7CZPJlo_AA1kak/edit?usp=sharing Bug: 757374 Change-Id: Idc05b03f625db11ab54c5203d18344b1ca72b4eb Reviewed-on: https://chromium-review.googlesource.com/647050 Commit-Queue: Hajime Hoshi <hajimehoshi@chromium.org> Reviewed-by:
Kent Tamura <tkent@chromium.org> Reviewed-by:
Chris Palmer <palmer@chromium.org> Reviewed-by:
Steven Holte <holte@chromium.org> Reviewed-by:
Brett Wilson <brettw@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Reviewed-by:
Nico Weber <thakis@chromium.org> Cr-Commit-Position: refs/heads/master@{#505275}
-
Xianzhu Wang authored
We seem to have some under-invalidation of effect paint properties. This CL avoids the bug for SPv1. We will fix the bug in SPv175/SPv2. Bug: 769769 Cq-Include-Trybots: master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2 Change-Id: Iade52f8b1748318edacf959c872552278a116321 Reviewed-on: https://chromium-review.googlesource.com/690616Reviewed-by:
Philip Rogers <pdr@chromium.org> Reviewed-by:
Tien-Ren Chen <trchen@chromium.org> Commit-Queue: Xianzhu Wang <wangxianzhu@chromium.org> Cr-Commit-Position: refs/heads/master@{#505274}
-
smut authored
Bug: 769870 Change-Id: Icbd3f71ee151fd4a6f17df2de0fbf5bef3f42d9b Reviewed-on: https://chromium-review.googlesource.com/691518Reviewed-by:
Dirk Pranke <dpranke@chromium.org> Reviewed-by:
Andrii Shyshkalov <tandrii@chromium.org> Commit-Queue: smut <smut@google.com> Cr-Commit-Position: refs/heads/master@{#505273}
-
Max Moroz authored
There are some build issues with fuzz targets for blink. Also, we've decided to postpone the switch towards component build because of potential issues with sancov-based generation of code coverage stats and reports. TBR=dpranke@chromium.org, ochang@chromium.org Bug: 768918, 701825 Change-Id: Iea97a0db39796e142a420821f05726137addba78 Reviewed-on: https://chromium-review.googlesource.com/691212 Commit-Queue: Max Moroz <mmoroz@chromium.org> Reviewed-by:
Dirk Pranke <dpranke@chromium.org> Reviewed-by:
Max Moroz <mmoroz@chromium.org> Cr-Commit-Position: refs/heads/master@{#505272}
-