- 14 May, 2019 40 commits
-
-
Christos Froussios authored
Bug: 962677,960322 Change-Id: I6c33767531b7416469cb1766b41299d15398885b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1610764 Auto-Submit: Christos Froussios <cfroussios@chromium.org> Commit-Queue: Robert Kaplow <rkaplow@chromium.org> Reviewed-by:
Robert Kaplow <rkaplow@chromium.org> Cr-Commit-Position: refs/heads/master@{#659484}
-
v8-ci-autoroll-builder authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/ca6dbeca..9cbdd437 Please follow these instructions for assigning/CC'ing issues: https://v8.dev/docs/triage-issues Please close rolling in case of a roll revert: https://v8-roll.appspot.com/ This only works with a Google account. CQ_INCLUDE_TRYBOTS=luci.chromium.try:linux-blink-rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:linux_optional_gpu_tests_rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:mac_optional_gpu_tests_rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:win_optional_gpu_tests_rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel TBR=hablich@chromium.org,v8-waterfall-sheriff@grotations.appspotmail.com Change-Id: If6b84d38173f913bf52239448020790709903048 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1611250Reviewed-by:
v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Commit-Queue: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#659483}
-
Mihai Sardarescu authored
SyncSettingsTableViewController is only used pre-Unified Consent and DCHECKs that Unified Consent is disabled. This CL ensures that SyncSettingsTableViewControllerTest runs with Unified Consent disable. This is a pre-requisite for enabling Unified Consent by default on iOS. Bug: 960260 Change-Id: I0499985052763eeac1fb640701b341ccdcdfc949 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1611605Reviewed-by:
Gauthier Ambard <gambard@chromium.org> Commit-Queue: Mihai Sardarescu <msarda@chromium.org> Cr-Commit-Position: refs/heads/master@{#659482}
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/136ad09848f5..c2aea5938d0d git log 136ad09848f5..c2aea5938d0d --date=short --no-merges --format='%ad %ae %s' 2019-05-14 recipe-mega-autoroller@chops-service-accounts.iam.gserviceaccount.com Roll recipe dependencies (nontrivial). Created with: gclient setdep -r src/third_party/skia@c2aea5938d0d The AutoRoll server is located here: https://autoroll.skia.org/r/skia-autoroll 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-blink-rel;luci.chromium.try:linux-chromeos-compile-dbg;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=michaelludwig@google.com Change-Id: Ie277cbba56e98c7ae0f920d1915b6ad87560895f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1611759Reviewed-by:
chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Commit-Queue: chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#659481}
-
Jérôme Lebel authored
Adding comments for ChromeIdentityService to accept nil as |callback| for ChromeIdentityService::GetAvatarForIdentity(). And Adding support for nil callback in FakeChromeIdentityService. Related to: crrev.com/i/1296954 Change-Id: I0d96d8a3abcd934705ec7743d7711b760ea1b459 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1609842 Commit-Queue: Jérôme Lebel <jlebel@chromium.org> Reviewed-by:
Mihai Sardarescu <msarda@chromium.org> Cr-Commit-Position: refs/heads/master@{#659480}
-
Saman Sami authored
This reverts commit 1374013c. Reason for revert: causes jank https://crbug.com/947587 The original reason for landing this CL does not apply anymore. It is no longer the case that viz skips a BeginFrame if an undrawn frame exists. See https://crrev.com/c/1521967 Original change's description: > Skip MISSED frames in browser compositor > > This CL fixes a dropped frame issue when a scroll transitions from > dragging to a momentum "fling" phase. When the user is scrolling and > lifts their finger with velocity, the scroll continues according to a > decelerating animation curve. When this happens, the FlingController > receives a FlingStart instead of a ScrollUpdate and it uses that to > create an animation curve. > > When this happens the browser process registers itself as an animation > observer so that it begins to receive BeginFrame signals. However, the > display service issues a MISSED BeginFrame for the frame in which the > animation was registered. This will frequently miss submission in the > current frame, so it submit next frame and won't receive a BeginFrame > then. This leads to a frame without the browser ticking the fling > animation. See https://crbug.com/882907#c50 for a diagram and more > complete explanation of the issue. > > The browser process shouldn't require processing MISSED frames so in > this CL we simply drop MISSED frames if we're in the browser compositor > (commit_to_active_tree is true). Longer term, the display scheduler > should make these decisions but this is an immediate fix for the fling > issue. > > Bug: 882907 > Change-Id: Ieb6d14051dc05c5e177da1920dbd27684f941d29 > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1517164 > Commit-Queue: David Bokan <bokan@chromium.org> > Reviewed-by: Sunny Sachanandani <sunnyps@chromium.org> > Cr-Commit-Position: refs/heads/master@{#640172} TBR=bokan@chromium.org,sunnyps@chromium.org # Not skipping CQ checks because original CL landed > 1 day ago. Bug: 947587,882907 Change-Id: I216a0aa63a39f5046879e49209702c1bc318bbd6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1610853Reviewed-by:
Saman Sami <samans@chromium.org> Reviewed-by:
David Bokan <bokan@chromium.org> Commit-Queue: Saman Sami <samans@chromium.org> Cr-Commit-Position: refs/heads/master@{#659479}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/394095a0eb17..94454d8433df Created with: gclient setdep -r src-internal@94454d8433df The AutoRoll server is located here: https://autoroll-internal.skia.org/r/src-internal-chromium-autoroll 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.chrome.try:linux-chromeos-chrome TBR=fergal@google.com,avi@google.com,btolsch@google.com,andypaicu@google.com Change-Id: I4705c623f188abde12b2121c9e7b920c37543dcd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1611761Reviewed-by:
chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#659478}
-
Martin Robinson authored
Since the platform-independent code doesn't support scrolling a node to a particular location in the window, we calculate the appropriate offset for each type of scroll and scroll using the ScrollTo API. Bug: 932708 Change-Id: I2428a40815e276ffe51620496d7782b6340347ec Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1602713Reviewed-by:
Joanmarie Diggs <jdiggs@igalia.com> Commit-Queue: Martin Robinson <mrobinson@igalia.com> Cr-Commit-Position: refs/heads/master@{#659477}
-
Sami Kyostila authored
Proguard mapping files are necessary for java_deobfuscate to be useful, so make sure to list them as data dependencies. Bug: 962540 Change-Id: Iecf24da4904943f4307679c993b213f1e556d823 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1609846 Commit-Queue: Andrew Grieve <agrieve@chromium.org> Reviewed-by:
Andrew Grieve <agrieve@chromium.org> Auto-Submit: Sami Kyöstilä <skyostil@chromium.org> Cr-Commit-Position: refs/heads/master@{#659476}
-
Leon Scroggins III authored
Bug: 962126 We typically lock this mutex before reading or writing to decode_failed_. Do so in one more place to avoid a data race. Change-Id: I0248e4dd99defc5ad3d09575096847e6455adfc9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1610085Reviewed-by:
Khushal <khushalsagar@chromium.org> Reviewed-by:
Stephen Chenney <schenney@chromium.org> Commit-Queue: Stephen Chenney <schenney@chromium.org> Auto-Submit: Leon Scroggins <scroggo@chromium.org> Cr-Commit-Position: refs/heads/master@{#659475}
-
Nasko Oskov authored
The render_view_termination_status_ is assigned, but never referenced. This CL removes it, as it is unused code. Bug: 566116 Change-Id: I40363c1fa9bf028c2fcd44e5e37e26efd4ec1a03 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1611245Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Commit-Queue: Nasko Oskov <nasko@chromium.org> Cr-Commit-Position: refs/heads/master@{#659474}
-
Lei Zhang authored
Or mark them as platform-specific. Change-Id: I9f02c101b3df5306ea8d18fc3b3041573510c86c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1420275 Commit-Queue: sebsg <sebsg@chromium.org> Reviewed-by:
sebsg <sebsg@chromium.org> Cr-Commit-Position: refs/heads/master@{#659473}
-
Anastasiia Nikolaienko authored
Bug: 962290 Change-Id: Ia7e3ee0e72fc3acecf8246fc2c28ef3ca604e206 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1609829 Commit-Queue: Anastasiia Nikolaienko <anastasiian@google.com> Reviewed-by:
Kush Sinha <sinhak@chromium.org> Reviewed-by:
Michael Giuffrida <michaelpg@chromium.org> Cr-Commit-Position: refs/heads/master@{#659472}
-
Sergey Ulanov authored
This is no-op: we don't have any chrome UI on Fuchsia, but we will want to use OOP when any UI is added. Bug: 962617 Change-Id: I9aea13556e2c49101f15d1935f465de353964c9f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1611220Reviewed-by:
Nico Weber <thakis@chromium.org> Commit-Queue: Nico Weber <thakis@chromium.org> Cr-Commit-Position: refs/heads/master@{#659471}
-
Daniel Nicoara authored
Follow-up to https://chromium-review.googlesource.com/c/chromium/src/+/1606402 which moves CreateContentMainDelegate() under a !OS_ANDROID #ifdef. Bug: 961849 Test: Compiled chromecast/app:test_support on Android. Change-Id: I3b9cf531728407be1280d767f8573e2d9cf72c5b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1610751 Auto-Submit: Daniel Nicoara <dnicoara@chromium.org> Reviewed-by:
Luke Halliwell <halliwell@chromium.org> Commit-Queue: Daniel Nicoara <dnicoara@chromium.org> Cr-Commit-Position: refs/heads/master@{#659470}
-
John Abd-El-Malek authored
Add more text to components/services/README about some more reasons why a service is there instead of /services. Change-Id: I93b26022d0391ef3daa18d9b21ee55777eebfe34 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1610537Reviewed-by:
John Abd-El-Malek <jam@chromium.org> Reviewed-by:
Colin Blundell <blundell@chromium.org> Auto-Submit: John Abd-El-Malek <jam@chromium.org> Commit-Queue: Colin Blundell <blundell@chromium.org> Cr-Commit-Position: refs/heads/master@{#659469}
-
Jonathan Wright authored
Adds benchmarks to test JPEG decoding performance for images with the following chroma sampling ratios: h1v1, h2v1, h1v2 and h2v2. Most images on the Web use sampling ratios h2v2, h2v1 or no sampling at all (h1v1). We also add a test for h1v2 sampling as this is used when an h2v1-sampled image is rotated by 90 or 270 degrees. Adding these additional benchmarks is a precursor to adding Arm NEON performance optimizations to JPEG decoding. Bug: 922430 Change-Id: I6bdc9516658f2b884c09a03bfc01bd2e1c091c34 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1599570Reviewed-by:
Chris Blume <cblume@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Commit-Queue: Jonathan Wright <jonathan.wright@arm.com> Cr-Commit-Position: refs/heads/master@{#659468}
-
Denis Kuznetsov authored
Bug: 962871 Change-Id: I8070e3bf7b210f39b905ce4e335cd1e7e44e4c55 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1610770Reviewed-by:
Sergey Poromov <poromov@chromium.org> Commit-Queue: Denis Kuznetsov <antrim@chromium.org> Cr-Commit-Position: refs/heads/master@{#659467}
-
Mihai Sardarescu authored
This CL ensures that all tests in theSigninIntegrationTest pass when the Unified Consent Feature is enabled. In achieves this in the following steps. 1. It splits the SigninInteractionControllerTestCase class in 3: a) SigninInteractionControllerTestCase: test cases that pass both when Unified consent is enabled or disabled; b) SigninInteractionControllerUnityDisabledTestCase: test cases that require Unified Consent to be disabled; c) SigninInteractionControllerUnityEnabledTestCase: test cases that require Unified Consent to be enabled; 2. It updates all necessary tests in the SigninInteractionControllerTestCase to pass when the Unified Consent is enabled. 3. It includes SigninInteractionControllerTestCase both in ios_chrome_ui_egtests (that run with Unified Consent enabled) and in ios_chrome_unified_consent_ui_tests (that run with Unified Consent disabled). Bug: 960260 Change-Id: I0be1945ff290bd2fcbba44d64f733658c623b369 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1599009 Commit-Queue: Mihai Sardarescu <msarda@chromium.org> Reviewed-by:
Sylvain Defresne <sdefresne@chromium.org> Reviewed-by:
Jérôme Lebel <jlebel@chromium.org> Cr-Commit-Position: refs/heads/master@{#659466}
-
Kevin McNee authored
Comments in ProfileDestroyer::DestroyProfileWhenAppropriate suggest issues with OTR profile and RenderProcessHost lifetimes on ChromeOS. We exclude the DCHECK that all guest view destruction callbacks have been run by the time the profile is shutdown on ChromeOS. If there are outstanding RenderProcessHosts, then we can't assert that the callbacks have been run. Bug: 961607 Change-Id: I36d3d2797c7c03849f6242b67e67dea6a46b8b58 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1606628Reviewed-by:
Alexander Alekseev <alemate@chromium.org> Reviewed-by:
James MacLean <wjmaclean@chromium.org> Commit-Queue: Kevin McNee <mcnee@chromium.org> Cr-Commit-Position: refs/heads/master@{#659465}
-
Pâris MEULEMAN authored
This CL is a part of https://crrev.com/c/1602715. The aim is to improve those tests by verifying the accounts stored by OAuth2TokenService.saveStoredAccounts when doing a OAuth2TokenService.updateAccountList. Bug: 960281 Change-Id: Idab7319e1a5d7378bdb3e936efea4230e35904c8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1609824 Commit-Queue: Pâris Meuleman <pmeuleman@chromium.org> Reviewed-by:
Boris Sazonov <bsazonov@chromium.org> Auto-Submit: Pâris Meuleman <pmeuleman@chromium.org> Cr-Commit-Position: refs/heads/master@{#659464}
-
Noel Gordon authored
The piex.js.wasm script resource containing the Emscripten runtime and the code to load the piex.out.wasm resource, were added to FilesApp in CL:1597931. Add the piex.js.wasm to the FilesApp Image Loader manifest to load it in a <script> tag in the Image Loader background page. Tbr: lucmult@ Bug: 904630, 935285 Change-Id: Ibfa6cb73e28ca2bf9871cd8648389fcb67710e76 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1611617Reviewed-by:
Noel Gordon <noel@chromium.org> Commit-Queue: Noel Gordon <noel@chromium.org> Cr-Commit-Position: refs/heads/master@{#659463}
-
chromium-autoroll authored
The AutoRoll server is located here: https://autoroll.skia.org/r/fuchsia-sdk-chromium-autoroll 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:fuchsia-arm64-cast;luci.chromium.try:fuchsia-x64-cast TBR=cr-fuchsia+bot@chromium.org Change-Id: If3bc8290c11c4230165b5b9ada5d5e3e5d696bf7 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1611757Reviewed-by:
chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Commit-Queue: chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#659462}
-
Vladislav Kuzkokov authored
This probably went unnoticed because it's only used in some error-handling paths. Bug: none Change-Id: I2707a1ceb9ba303454bfb0b622ad404340e0d0db Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1609827Reviewed-by:
Rebekah Potter <rbpotter@chromium.org> Commit-Queue: Vladislav Kuzkokov <vkuzkokov@chromium.org> Cr-Commit-Position: refs/heads/master@{#659461}
-
chromium-autoroll authored
https://chromium.googlesource.com/angle/angle.git/+log/b783fbc79992..01cd5697760e git log b783fbc79992..01cd5697760e --date=short --no-merges --format='%ad %ae %s' 2019-05-14 angle-autoroll@skia-public.iam.gserviceaccount.com Roll ./third_party/spirv-tools/src 2947e88f7938..e935dac9ef8a (1 commits) Created with: gclient setdep -r src/third_party/angle@01cd5697760e The AutoRoll server is located here: https://autoroll.skia.org/r/angle-chromium-autoroll 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=syoussefi@google.com Change-Id: Ia99d351575f9635ff7ada0e517fdb343bd00d6ee Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1610734Reviewed-by:
chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Commit-Queue: chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#659460}
-
Juan Antonio Navarro Perez authored
TBR=crouleau@chromium.org,fergal@chromium.org Bug: 960554 Change-Id: Ie98b718085c00bbf997c11d81adb37fc721fe1d3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1610769Reviewed-by:
Juan Antonio Navarro Pérez <perezju@chromium.org> Commit-Queue: Juan Antonio Navarro Pérez <perezju@chromium.org> Commit-Queue: Fergal Daly <fergal@chromium.org> Cr-Commit-Position: refs/heads/master@{#659459}
-
v8-ci-autoroll-builder authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/c27e7b4f..ca6dbeca Please follow these instructions for assigning/CC'ing issues: https://v8.dev/docs/triage-issues Please close rolling in case of a roll revert: https://v8-roll.appspot.com/ This only works with a Google account. CQ_INCLUDE_TRYBOTS=luci.chromium.try:linux-blink-rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:linux_optional_gpu_tests_rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:mac_optional_gpu_tests_rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:win_optional_gpu_tests_rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel TBR=hablich@chromium.org,v8-waterfall-sheriff@grotations.appspotmail.com Change-Id: I18d0ce88cd74bf6a883dd90bd60c8011789ed064 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1611244Reviewed-by:
v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Commit-Queue: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#659458}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/00a43bc4f95b..394095a0eb17 Created with: gclient setdep -r src-internal@394095a0eb17 The AutoRoll server is located here: https://autoroll-internal.skia.org/r/src-internal-chromium-autoroll 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.chrome.try:linux-chromeos-chrome TBR=fergal@google.com,avi@google.com,btolsch@google.com,andypaicu@google.com Change-Id: Icfac2c6c89d4fbb8ab6bd7595a08f2d130886b69 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1611637Reviewed-by:
chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#659457}
-
chromium-autoroll authored
https://chromium.googlesource.com/catapult.git/+log/95764ff31ecd..701ac9a6e80f git log 95764ff31ecd..701ac9a6e80f --date=short --no-merges --format='%ad %ae %s' 2019-05-14 khokhlov@google.com Add missing comma Created with: gclient setdep -r src/third_party/catapult@701ac9a6e80f The AutoRoll server is located here: https://autoroll.skia.org/r/catapult-autoroll 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=oysteine@google.com Change-Id: I6efe74535025995dfaf66247f95daadd27b123c6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1610735Reviewed-by:
chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Commit-Queue: chromium-autoroll <chromium-autoroll@skia-public.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#659456}
-
Dominik Röttsches authored
Use HB_NO_SUBSET_LAYOUT, HB_NO_SUBSET_CFF in BUILD.gn as well to limit binary footprint of subsetting features. https://chromium.googlesource.com/external/github.com/harfbuzz/harfbuzz.git/+log/f3aca6aa267f..c73d7ba75d45 $ git log f3aca6aa2..c73d7ba75 --date=short --no-merges --format='%ad %ae %s' 2019-05-14 drott Fix building with HB_NO_SUBSET_LAYOUT 2019-05-14 behdad [ucdn] Fix Hangul composition 2019-05-13 behdad Fix more warnings 2019-05-13 behdad [config] Add NDEBUG and HB_NDEBUG 2019-05-13 behdad One more warning fix 2019-05-13 behdad [icu] Comment 2019-05-13 behdad Fix moreeeeeeeeeee 2019-05-13 behdad Fix more semi-colon issues 2019-05-13 behdad [iter] Fix zip iterator sortedness classification logic 2019-05-13 behdad Fix more excess semi-colon errors 2019-05-13 behdad [iter] Track strictly-sorted iterators 2019-05-13 behdad [iter] Minor 2019-05-13 grieger [subset] Fix shadowed 'groups' param in cmap. 2019-05-13 behdad Adjust uniscribe_bug_compatible mode 2019-05-13 behdad [config] Better compile away morx/kerx/trak 2019-05-13 behdad [indic] Don't constrain how many C, M, ... occur 2019-05-13 behdad [test] Don't call deprecated API 2019-05-13 behdad Another extra semi-colon 2019-05-13 behdad Revert "[ragel] Regenerate ragel-generated files using ragel 7.0.0.11 May 2018" 2019-05-13 behdad Revert "[ragel] Switch to -T1 output instead of -F1" 2019-05-13 behdad Fix extra semi-colon 2019-05-13 behdad [ragel] Switch to -T1 output instead of -F1 2019-05-12 behdad Minor 2019-05-12 behdad Fix MSVC build 2019-05-12 behdad [config] Define HB_NO_SUBSET_LAYOUT in HB_LEAN 2019-05-12 behdad [config] Add HB_NO_UNISCRIBE_BUG_COMPATIBLE 2019-05-12 behdad [config] Disable buffer serialize routines in HB_TINY 2019-05-12 behdad Fix builds 2019-05-12 behdad [config] Enable HB_NO_MT in HB_TINY 2019-05-12 behdad Force-disable CFF code under disabling conditions 2019-05-11 behdad [config] Allow overriding chosen config 2019-05-11 ebrahim [test] minor, fix -Weverything bot 2019-05-11 ebrahim [test] minor 2019-05-11 nwillis Corrections to OT Color gtk-doc comments. 2019-05-11 nwillis Corrections to OT Math gtk-doc comments. 2019-05-11 behdad Fix build 2019-05-11 behdad Disable sbix if no-color or no-ot-font-bitmap 2019-05-11 behdad [iter] Check for more before forwarding/rewinding past ends 2019-05-11 corbett.dav [iter] Fix filter rewinding 2019-05-10 corbett.dav [array] Fix rewinding 2019-05-11 n8willis Update src/hb-ot-color.cc 2019-05-11 behdad [iter] Add hb_map_sorted() and hb_map_retains_sorting() 2019-05-11 n8willis Update src/hb-ot-math.cc 2019-05-11 n8willis Update src/hb-ot-math.cc 2019-05-11 n8willis Update src/hb-ot-color.cc 2019-05-11 n8willis Update src/hb-ot-color.cc 2019-05-11 n8willis Update src/hb-ot-color.cc 2019-05-11 n8willis Update src/hb-ot-color.cc 2019-05-11 n8willis Update src/hb-ot-color.cc 2019-05-11 behdad [config] Rename (...) 2019-04-11 behdad Use injected class name to simplify macros 2019-04-11 behdad [C++11] Use deleted methods 2019-04-11 behdad Rename a few macros 2019-04-10 behdad [arabic] Disable fallback shaping if HB_NO_OT_SHAPE_COMPLEX_ARABIC_FALLBACK defined 2019-04-10 behdad Don't install ot-font funcs on new fonts if HB_NO_OT_FONT defined 2019-04-10 behdad Don't use any default unicode funcs if HB_NO_UNICODE_FUNCS is defined 2019-04-08 behdad [coretext] Fix unused-variable error 2019-04-05 maksqwe1 Fix MSVC C4068 warning (#1656) 2019-04-05 ariza replace test font SourceHanSans with its subet 2019-04-05 maksqwe1 Fix MSVC C4138 warning (#1657) 2019-04-03 behdad Minor 2019-04-03 behdad [GDEF] Don't assume glyphlist is sorted 2019-04-03 behdad [algs] Add hb_min() and hb_max() 2019-04-03 behdad [serialize] Make putting breakpoint on out-of-memory easier 2019-04-03 behdad [iter] Tweak SFINAE again 2019-04-03 behdad [array] Add compy assignment operator since copy constructor is explicit 2019-04-03 behdad [array] Add default copy constructor 2019-04-03 behdad [iter] Use different SFINAE scheme to make MSVC happy 2019-04-03 behdad [meta] Add hb_is_same() 2019-04-02 behdad [serialize] Actually reclaim storage from duplicate objects 2019-04-02 behdad [serialize] Port to use object pool 2019-04-02 behdad [pool] Uses memset() instead of assigning Null() 2019-04-02 behdad Add hb_pool_t<> for pooled memory allocation 2019-04-02 behdad [serialize] Disable packed_map again 2019-04-02 behdad [map] Protect more against pointer deref 2019-04-02 behdad More 2019-04-02 behdad [serialize] Fix hb_hashmap_t<> for pointers and use in packed_map 2019-04-02 behdad [iter] Remove passing pointer to hb_iter() 2019-04-02 behdad [array] Use dagger for hashing array 2019-04-02 behdad [iter] Accept pointers in hb_iter() 2019-04-02 behdad [serialize] Towards maintaining packed_map 2019-04-02 behdad [serialize] Minor 2019-04-02 behdad [serialize] Handle non-nullable offsets 2019-04-02 behdad [serialize] Movce empty-object handling earlier 2019-04-02 behdad [serialize] Minor 2019-04-02 behdad [serialize] Allow offset links that have base offset from the object base 2019-04-03 ebrahim [test][iter] minor, fix double promotion warning 2019-04-02 ebrahim [test] minor, c style comments 2019-04-02 ebrahim [iter][test] Add another test for hb_reduce 2019-04-01 behdad [serialize] Switch to tetris-packing 2019-04-01 behdad [serialize] Fix linking 2019-04-01 behdad [serialize] Minor 2019-04-01 behdad [cmap] Minor 2019-04-01 behdad [subset] Call serialize start/end around it 2019-04-01 behdad [serialize] Assert stack 2019-04-01 behdad [serialize] Add add_link() to add link 2019-04-01 behdad [serialize] Add default template type to push() 2019-04-02 ebrahim [iter] hb_reduce, accumulator with a different type 2019-03-31 ebrahim [iter] Implement hb_reduce 2017-12-05 nwillis Indic: always hyphenate pre-base-reordering, for clarity. Created with: roll-dep src/third_party/harfbuzz-ng/src R=bashi@chromium.org,behdad@chromium.org,bungeman@chromium.org,drott@chromium.org,eae@chromium.org,jshin@chromium.org R=bashi@chromium.org,behdad@chromium.org,bungeman@chromium.org,drott@chromium.org,eae@chromium.org,jshin@chromium.org Bug: 960331 Change-Id: Ibf376556acb50b09e8e9d3ce53631690859e9628 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1608701 Commit-Queue: Dominik Röttsches <drott@chromium.org> Reviewed-by:
Emil A Eklund <eae@chromium.org> Cr-Commit-Position: refs/heads/master@{#659455}
-
Javier Fernandez authored
The 'white-space: break-spaces' only adds breaking opportunities after a white space character. However, it's possible to break before the first space after a word when the feature is used in combination with other properties, like overflow-wrap. However, breaking before the first space should not be allowed if there are previous opportunities. We wrongly assumed that we had to consider these previous breaking opportunities if the proper combination of line breaking properties is being used, so that breaking before the first space after a word is allowed. This wrong assumption caused several issues, like the one described in the bug, that lead to incorrectly break before the first space even though there are previous opportunities, either white spaces or between letters. For the later case, of considering previous opportunities between letters, we have a seperated issue #952254, so the tests covering such cases will be added to the TestExpecations as Failure entries. Bug: 956465 Change-Id: I2c8b45e55f4960a044f7f8c3da84936b78c8eb3f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1583800 Commit-Queue: Javier Fernandez <jfernandez@igalia.com> Reviewed-by:
Koji Ishii <kojii@chromium.org> Cr-Commit-Position: refs/heads/master@{#659454}
-
Mugdha Lakhani authored
Add logic to support unregistering of periodic sync tasks. Bug: 925297 Change-Id: I76002b38afcf8a4b5ff5dcaccd5e198843533d5a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1602728Reviewed-by:
Mark Pearson <mpearson@chromium.org> Reviewed-by:
Rayan Kanso <rayankans@chromium.org> Reviewed-by:
Peter Beverloo <peter@chromium.org> Commit-Queue: Mugdha Lakhani <nator@chromium.org> Cr-Commit-Position: refs/heads/master@{#659453}
-
Abhijeet Kandalkar authored
Bug: 891908 Change-Id: I8496f5388588ae6a10a8f1230d5ec65fc0dbde50 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1604544Reviewed-by:
Kentaro Hara <haraken@chromium.org> Reviewed-by:
Jeremy Roman <jbroman@chromium.org> Commit-Queue: Abhijeet Kandalkar <abhijeet@igalia.com> Cr-Commit-Position: refs/heads/master@{#659452}
-
Noel Gordon authored
CL:1596788 mentioned the binary code was called piex.out.wasm, but the README.md does not say that. Make it so (comment only change). Tbr: adanilo@ No-try: true Bug: 935285 Change-Id: Iffe0957b410a2797ed14afc0b68d6fb08442fa30 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1611698Reviewed-by:
Noel Gordon <noel@chromium.org> Commit-Queue: Noel Gordon <noel@chromium.org> Cr-Commit-Position: refs/heads/master@{#659451}
-
Jan Krcal authored
This CL is doing a post-launch cleanup. A follow-up CL will remove metrics that were needed only for the launch. Bug: 936308 Change-Id: I791cac1f29cda2ee8fc8c45569f1f5807d1e4ab9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1608703 Commit-Queue: Jan Krcal <jkrcal@chromium.org> Reviewed-by:
John Wu <jzw@chromium.org> Reviewed-by:
Marc Treib <treib@chromium.org> Cr-Commit-Position: refs/heads/master@{#659450}
-
Karolina Soltys authored
I am removing a test which has been disabled for almost a year, in order to remove a ThreadUtils posting. This is part of scheduler-lon general effort to unify Java and C++ task posting, by migrate everything away from ThreadUtils and use PostTask instead. Bug: 863341 Change-Id: If3498517d7818b0a6c0dd0f5ee63fb6b7d504f93 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1591836Reviewed-by:
Andrew Grieve <agrieve@chromium.org> Reviewed-by:
Karolina Soltys <ksolt@chromium.org> Commit-Queue: Karolina Soltys <ksolt@chromium.org> Cr-Commit-Position: refs/heads/master@{#659449}
-
Philipp Hancke authored
BUG=none Change-Id: Ie0d7ffa6c18ec27390f88937178f461c21dae00c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1602500Reviewed-by:
Harald Alvestrand <hta@chromium.org> Commit-Queue: Philipp Hancke <philipp.hancke@googlemail.com> Cr-Commit-Position: refs/heads/master@{#659448}
-
Boris Sazonov authored
Moves bsazonov@chromium.org entry from src/components/signin/core/browser/android/OWNERS to src/components/signin/OWNERS. Bug: None Change-Id: I875b291c43c316476d5ead3ccdd6d91a8ae98560 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1611597 Auto-Submit: Boris Sazonov <bsazonov@chromium.org> Reviewed-by:
Mihai Sardarescu <msarda@chromium.org> Commit-Queue: Boris Sazonov <bsazonov@chromium.org> Cr-Commit-Position: refs/heads/master@{#659447}
-
Richard Knoll authored
The DateOrderedListMutator kept OfflineItems in a Map keyed by their creation time. Two entries with the same one (or within the same millisecond) would therefore override each other. This replaces the map with a sorted set and a custom comparator to keep the descending sort order. Bug: 962889 Change-Id: I1bef6b32a42dc34b49946512e31f440999cf7287 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1609901 Commit-Queue: Richard Knoll <knollr@chromium.org> Reviewed-by:
Xing Liu <xingliu@chromium.org> Reviewed-by:
Shakti Sahu <shaktisahu@chromium.org> Cr-Commit-Position: refs/heads/master@{#659446}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/0e19f4b0cf67..00a43bc4f95b Created with: gclient setdep -r src-internal@00a43bc4f95b The AutoRoll server is located here: https://autoroll-internal.skia.org/r/src-internal-chromium-autoroll 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.chrome.try:linux-chromeos-chrome TBR=fergal@google.com,avi@google.com,btolsch@google.com,andypaicu@google.com Change-Id: I620afdad2b0a94dd828be8cfc4886a74137aea7f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1610725Reviewed-by:
chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#659445}
-