- 03 Oct, 2019 40 commits
-
-
Staphany Park authored
Bug: 963042 Change-Id: Ic9fbccdabf8ca49b694b4195e7262d3e80a4be6f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1836662 Commit-Queue: Staphany Park <staphany@chromium.org> Auto-Submit: Staphany Park <staphany@chromium.org> Reviewed-by:
Victor Costan <pwnall@chromium.org> Cr-Commit-Position: refs/heads/master@{#702304}
-
Matt Falkenhagen authored
The functions didn't match the sections. Change-Id: I42a43661cb73a8415ddec6ca2cdd9835a032f563 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1837311 Commit-Queue: Matt Falkenhagen <falken@chromium.org> Commit-Queue: Kent Tamura <tkent@chromium.org> Auto-Submit: Matt Falkenhagen <falken@chromium.org> Reviewed-by:
Kent Tamura <tkent@chromium.org> Cr-Commit-Position: refs/heads/master@{#702303}
-
chromium-autoroll authored
https://chromium.googlesource.com/angle/angle.git/+log/fd092e853e7b..2328d65ab30d git log fd092e853e7b..2328d65ab30d --date=short --no-merges --format='%ad %ae %s' 2019-10-03 jmadill@chromium.org Revert "GN: Componentize vulkan back-end build." Created with: gclient setdep -r src/third_party/angle@2328d65ab30d If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/angle-chromium-autoroll Please CC cwallez@google.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md 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@google.com Bug: None Change-Id: I9ddb57e174abdefd801f8da44cfe721326d813df Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1837216Reviewed-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@{#702302}
-
Lloyd Pique authored
For displaying the vsync lines in the tool, we need the ideal vsync timestamps. The tool was using the timestamps of the HW_VSYNC_0 events, but this could be off and very jittery by several tenths of a millisecond from the vsync event time just because those events are written out by SurfaceFlinger when responding to the hardware composer vsync callback. The hardware composer vsync callback includes the actual vsync timestamp as an argument, but this is not included in the existing event trace in any way. I went and added a new ARC_VSYNC event which includes the actual vsync timestamp in the profile data, where it is stored in the string after the event name. Reading this event and parsing out the actual timestamp is much more accurate. Switching the tracing tool to using the event means that the vsync lines will be rendered with a consistent spacing, and represent the actual vsync times now, instead of lagging behind by some variable amount. Specifically this change 1) Modifies arc_tracing_event_matcher to allow for a prefix match, and not just an exact name match. Since the timestamp is part of the name string and is variable, a prefix match was required to match these events. 2) A unit test was added to cover the new matching behavior, and in implementing it I went ahead and added move constructors/assignment to ArcTracingEvent for convenience 3) Removes "disabled-by-default-android hal" from the trace options when the tool is used. It turned out this was including some events from HIDL ("HIDL::IComposerCallback::onVsync::passthrough"), which were emitted using atrace_begin/atrace_end, however which could actually execute on separate threads and break an assumption in the tracing tool that they were emitted by the same thread. Perhaps the Android HAL generator code could be adjusted to use atrace_async_begin and atrace_async_end instead, but since we do not seem to need the HAL events, it was easier to just disable their capture. 4) Switches the tracing model to look for the ARC_VSYNC events instead of the HW_VSYNC_0 events, including reading the timestamp out of the name string instead of using the misleading event timestamp. BUG=b:132641796 TEST=unit_tests --gtest_filter=ArcTracingEventMatcherTest* TEST=chrome://arc-graphics-tracing Change-Id: I887a573c74035d783b918ca69c3dbb47fc1e5920 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1811936 Auto-Submit: Lloyd Pique <lpique@chromium.org> Reviewed-by:
Steven Bennetts <stevenjb@chromium.org> Reviewed-by:
Yury Khmel <khmel@chromium.org> Commit-Queue: Lloyd Pique <lpique@chromium.org> Cr-Commit-Position: refs/heads/master@{#702301}
-
Mugdha Lakhani authored
The logic to decide delay for each Background Sync registration is now completely in the chrome:// layer. The logic to calculate the soonest_delay across registrations across storage partitions for the browser context can be moved to content:// in a new class called BackgroundSyncScheduler. This reduces an unnecessary interaction between chrome:// and content:// layer, allows more code to be shared with embedders of content:// and this logic can be completely tested by browser tests on ContentShell. This simplifies scheduling logic, and also improves testability. Bug: 996166 Change-Id: I0aa15b9bcc35c0f2642c89d1d776668054992647 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1806576 Commit-Queue: Mugdha Lakhani <nator@chromium.org> Reviewed-by:
John Abd-El-Malek <jam@chromium.org> Reviewed-by:
Rayan Kanso <rayankans@chromium.org> Cr-Commit-Position: refs/heads/master@{#702300}
-
Mario Bianucci authored
Prior to now, there hasn't been an integration test to test the full precision touchpad pipeline on Windows, from input through to changes to the screen. This CL aims to change that. Unfortunately, it is currently impossible to inject input at the OS level, so we are just mocking some input, but then the full pipeline is allowed to run before checking the state of the window. Two tests are being added, one for touchpad zooming and one for touchpad scrolling. Both test the gestures normally first, then add preventDefaults to confirm that the events are blocked correctly, then remove the preventDefaults and confirm that the gestures work normally again. Bug: 1000729 Change-Id: I60eaf3f43fed12ea4355e4eb936fd2d2755dd92d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1806629 Commit-Queue: Mario Bianucci <mabian@microsoft.com> Reviewed-by:
Scott Violet <sky@chromium.org> Reviewed-by:
Daniel Libby <dlibby@microsoft.com> Reviewed-by:
Bruce Dawson <brucedawson@chromium.org> Reviewed-by:
David Bokan <bokan@chromium.org> Cr-Commit-Position: refs/heads/master@{#702299}
-
chrome-release-bot authored
# This is an automated release commit. # Do not revert without consulting chrome-pmo@google.com. NOAUTOREVERT=true TBR=benmason@chromium.org Change-Id: I2770d719ae2c0af7fffb4a44e5c8b5360522ce32 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1837331Reviewed-by:
Chrome Release Bot (LUCI) <chrome-official-brancher@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#702298}
-
Yoichi Osato authored
TBR=avi@chromium.org Bug: 1010354 Change-Id: I363d2c2917dbb900390ad1f24093a4c87a696f13 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1835896Reviewed-by:
Yoichi Osato <yoichio@chromium.org> Commit-Queue: Yoichi Osato <yoichio@chromium.org> Auto-Submit: Yoichi Osato <yoichio@chromium.org> Cr-Commit-Position: refs/heads/master@{#702297}
-
Kent Tamura authored
These tests call focus() against elements with 'autofocus'. If autofocus queue was flushed before finishing a test, it showed a console message. We don't need to use 'autofocus' attribute in the tests. Bug: 1010025 Change-Id: Id4836be9b8f1968f33bfc8eefc7edb03edf25a82 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1833367Reviewed-by:
Mason Freed <masonfreed@chromium.org> Commit-Queue: Kent Tamura <tkent@chromium.org> Cr-Commit-Position: refs/heads/master@{#702296}
-
Yoichi Osato authored
TBR=asvitkine@chromium.org Bug: 1010678 Change-Id: I5a82deae4e566652e4627bec84340a40754aa557 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1835895Reviewed-by:
Yoichi Osato <yoichio@chromium.org> Commit-Queue: Yoichi Osato <yoichio@chromium.org> Auto-Submit: Yoichi Osato <yoichio@chromium.org> Cr-Commit-Position: refs/heads/master@{#702295}
-
Yoichi Osato authored
TBR=lpz@chromium.org Bug: 1010686 Change-Id: Idd8bff33eaa8bd2234a2644c9d1c55b8d0f25bca Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1835876Reviewed-by:
Yoichi Osato <yoichio@chromium.org> Commit-Queue: Yoichi Osato <yoichio@chromium.org> Auto-Submit: Yoichi Osato <yoichio@chromium.org> Cr-Commit-Position: refs/heads/master@{#702294}
-
Yoichi Osato authored
TBR=tbansal@chromium.org Bug: 1010685 Change-Id: I8b8f8136ff67685a559201c5960044b2eb8ec558 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1836296 Commit-Queue: Yoichi Osato <yoichio@chromium.org> Reviewed-by:
Yoichi Osato <yoichio@chromium.org> Auto-Submit: Yoichi Osato <yoichio@chromium.org> Cr-Commit-Position: refs/heads/master@{#702293}
-
Hiroki Nakagawa authored
Worklets disallow any subresource fetch including dynamic module import. This CL ensures the restriction. Bug: n/a Change-Id: I16b7dde9694c69ac167942aed956cdd28a666bbd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1836294Reviewed-by:
Kenichi Ishibashi <bashi@chromium.org> Reviewed-by:
Hiroshige Hayashizaki <hiroshige@chromium.org> Commit-Queue: Hiroki Nakagawa <nhiroki@chromium.org> Cr-Commit-Position: refs/heads/master@{#702292}
-
chromium-autoroll authored
https://chromium.googlesource.com/chromium/tools/depot_tools.git/+log/0a33d2b80fc8..336a2b1fafe0 git log 0a33d2b80fc8..336a2b1fafe0 --date=short --no-merges --format='%ad %ae %s' 2019-10-02 recipe-mega-autoroller@chops-service-accounts.iam.gserviceaccount.com Roll recipe dependencies (trivial). Created with: gclient setdep -r src/third_party/depot_tools@336a2b1fafe0 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/depot-tools-chromium-autoroll Please CC agable@chromium.org on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md TBR=agable@chromium.org Bug: None Change-Id: I49c2fc4dbf0add5a865cfc677cd1b5639b2c5e67 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1837133Reviewed-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@{#702291}
-
Hiroki Nakagawa authored
Before this CL, LocalFileSystem was supplied to WorkerClients on the main thread, and then it was passed to a worker thread. After this CL, LocalFileSystem is supplied to WorkerGlobalScope on the worker thread. This reduces the usage of WorkerClients, and slightly simplifies worker startup sequence. Bug: 1009854 Change-Id: If02556fd161fd90f3f84d3d02f253f1e842dc3e6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1833014Reviewed-by:
Kentaro Hara <haraken@chromium.org> Commit-Queue: Hiroki Nakagawa <nhiroki@chromium.org> Cr-Commit-Position: refs/heads/master@{#702290}
-
Xida Chen authored
This CL ports two interpolation tests to wpt. Bug: 900581 Change-Id: Ib0724e6854b0bf159bd9054730dd7bfb31fd9d10 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1810196Reviewed-by:
Yi Gu <yigu@chromium.org> Commit-Queue: Xida Chen <xidachen@chromium.org> Cr-Commit-Position: refs/heads/master@{#702289}
-
Gyuyoung Kim authored
This CL applies pending_receiver and pending_remote to GetService() in WilcoDtcSupportdServiceFactory interface. - Convert InterfaceRequest to mojo::PendingReceiver - Convert InterfacePtr to mojo::PendingRemote Bug: 955171 Change-Id: Id28aad0289cde23493427f0cd090a3ad07f54111 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1833170 Commit-Queue: Gyuyoung Kim <gyuyoung@igalia.com> Reviewed-by:
Ken Rockot <rockot@google.com> Reviewed-by:
Polina Bondarenko <pbond@chromium.org> Reviewed-by:
Dominick Ng <dominickn@chromium.org> Cr-Commit-Position: refs/heads/master@{#702288}
-
Yoichi Osato authored
TBR=parastoog@google.com Bug: 1010684 Change-Id: I0372131295f8e57cde4f52d75aebd06e90bea59e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1835894Reviewed-by:
Yoichi Osato <yoichio@chromium.org> Commit-Queue: Yoichi Osato <yoichio@chromium.org> Auto-Submit: Yoichi Osato <yoichio@chromium.org> Cr-Commit-Position: refs/heads/master@{#702287}
-
chromium-autoroll authored
https://chromium.googlesource.com/chromiumos/chromite.git/+log/c1e818f42172..b2f9f7fb1ed2 git log c1e818f42172..b2f9f7fb1ed2 --date=short --no-merges --format='%ad %ae %s' 2019-10-03 ahassani@chromium.org Revert "chromeos_config: Move betty-arc64-paladin to experimental" Created with: gclient setdep -r src/third_party/chromite@b2f9f7fb1ed2 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/chromite-chromium-autoroll Please CC chrome-os-gardeners@google.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md CQ_INCLUDE_TRYBOTS=luci.chromium.try:chromeos-kevin-rel TBR=chrome-os-gardeners@google.com Bug: None Change-Id: I9ce0b8c35474cd0fb5ed4a633a416a9af860611a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1836891Reviewed-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@{#702286}
-
Hector Carmona authored
Bug: 1008556 Change-Id: Ib07aacbba4c611620e64228ae538e02d58aecd75 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1827384 Commit-Queue: Hector Carmona <hcarmona@chromium.org> Auto-Submit: Hector Carmona <hcarmona@chromium.org> Reviewed-by:
Demetrios Papadopoulos <dpapad@chromium.org> Cr-Commit-Position: refs/heads/master@{#702285}
-
Ricky Liang authored
This CL allows Chrome and WebRTC to apply resolution adaptation with GpuMemoryBuffer-based video frame. GMB-based video frame soft-applies cropping and scaling by specifying visible_rectangle and natural_size in the early stage of the processing pipeline. The actual cropping and scaling operations happen only when either the frame is processed on the hardware (e.g. running hardware encoder on GPU), or when the CPU really needs to access the frame data (e.g. running software encoder). Bug: 982201 Change-Id: Ib8f8278603188782f0657920a2140b71d4a4fc00 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1817861Reviewed-by:
Henrik Boström <hbos@chromium.org> Reviewed-by:
Kenneth Russell <kbr@chromium.org> Commit-Queue: Ricky Liang <jcliang@chromium.org> Cr-Commit-Position: refs/heads/master@{#702284}
-
Miyoung Shin authored
This CL converts XRPresentationClientPtr in chrome, device and blink to the new Mojo type, and uses pending_receiver<XRPresentationClient> in vr_service.mojom. Bug: 955171, 978694 Change-Id: I2ea508b31be493653edd2301758855b8c63efc79 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1828724Reviewed-by:
Ken Rockot <rockot@google.com> Reviewed-by:
Sam McNally <sammc@chromium.org> Reviewed-by:
Piotr Bialecki <bialpio@chromium.org> Reviewed-by:
Brandon Jones <bajones@chromium.org> Reviewed-by:
Klaus Weidner <klausw@chromium.org> Commit-Queue: Miyoung Shin <myid.shin@igalia.com> Cr-Commit-Position: refs/heads/master@{#702283}
-
Wez authored
- Move switch name constants into fuchsia/engine/switches.h. - Move other constants into the headers for the respective common code. - Remove fuchsia/engine/common.h. Change-Id: I507dbfd64845c0c5d27962fab5621c78d64aaecb Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1817859 Commit-Queue: Wez <wez@chromium.org> Auto-Submit: Wez <wez@chromium.org> Reviewed-by:
Sergey Ulanov <sergeyu@chromium.org> Cr-Commit-Position: refs/heads/master@{#702282}
-
v8-ci-autoroll-builder authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/f98bdc1d..b6514760 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: Ie81082e6c2cf4bf3948a297745cfc9c99d82efdb Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1836334Reviewed-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@{#702281}
-
Hiroshige Hayashizaki authored
This CL adds tests of subresources sent from worker global scope, including XHR/Fetch API inside workers and nested workers. The tests are failing on Safari and Firefox, largely because of differences of referrer policy inheritance rule (which is a spec-level issue). Bug: 906850 Change-Id: Ia385d72918df5d4318c7fc58306bfc614a3bd4b8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1785499 Commit-Queue: Hiroshige Hayashizaki <hiroshige@chromium.org> Reviewed-by:
Hiroki Nakagawa <nhiroki@chromium.org> Reviewed-by:
Kenichi Ishibashi <bashi@chromium.org> Cr-Commit-Position: refs/heads/master@{#702280}
-
Francois Doray authored
This completes removing the ability to filter clients in clients.matchAll(). Spec change: https://github.com/WICG/page-lifecycle/pull/39 The associated logic was already removed in https://crrev.com/c/chromium/src/+/1789693. Bug: 968417, 957597 Change-Id: Ibb7a8f8f3d6fb37c419107c95082bbdba29f5878 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1835195Reviewed-by:
Dave Tapuska <dtapuska@chromium.org> Reviewed-by:
Hiroki Nakagawa <nhiroki@chromium.org> Commit-Queue: Hiroki Nakagawa <nhiroki@chromium.org> Auto-Submit: François Doray <fdoray@chromium.org> Cr-Commit-Position: refs/heads/master@{#702279}
-
Hiroshige Hayashizaki authored
Fix a typo introduced by https://chromium-review.googlesource.com/c/chromium/src/+/1788876 (Upstream: https://github.com/web-platform-tests/wpt/pull/18904) Change-Id: I9ac2d8048c14c42e18d44f643b8dfcfac47c5fd9 Bug: 1001422 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1834886Reviewed-by:
Kenichi Ishibashi <bashi@chromium.org> Reviewed-by:
Hiroki Nakagawa <nhiroki@chromium.org> Commit-Queue: Hiroshige Hayashizaki <hiroshige@chromium.org> Cr-Commit-Position: refs/heads/master@{#702278}
-
chromium-autoroll authored
https://chromium.googlesource.com/catapult.git/+log/bf575c5e4e06..bb31bb3faa36 git log bf575c5e4e06..bb31bb3faa36 --date=short --no-merges --format='%ad %ae %s' 2019-10-02 rmhasan@google.com [Typ] Make typ raise an exception when attempting to overwrite an artifact Created with: gclient setdep -r src/third_party/catapult@bb31bb3faa36 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/catapult-autoroll Please CC skyostil@google.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md 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=skyostil@google.com Bug: chromium:982208 Change-Id: Idc1cc7f0ed79f1aa02ea94ccc2991a183c7f4c6e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1836275Reviewed-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@{#702277}
-
Gyuyoung Kim authored
To reduce pre-processed size of header files have been including fetch_api.mojom-blink.h, this CL replaces .mojom-blink.h with .mojom-blink-forward.h in blink header files. This CL has no behavior changes. Bug: 1001360 Change-Id: I61ec74c570b02881c7419facc4be95b9410b79b3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1835871Reviewed-by:
Kent Tamura <tkent@chromium.org> Commit-Queue: Gyuyoung Kim <gyuyoung@igalia.com> Cr-Commit-Position: refs/heads/master@{#702276}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/64a01fd9a557..f686d5021cb1 Created with: gclient setdep -r src-internal@f686d5021cb1 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://skia-autoroll.corp.goog/r/src-internal-chromium-autoroll Please CC jbudorick@google.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md CQ_INCLUDE_TRYBOTS=luci.chrome.try:linux-chromeos-chrome TBR=jbudorick@google.com Bug: chromium:None Change-Id: I216ad3f66978f37ac9ecd30d954b10275b16afa7 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1836272Reviewed-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@{#702275}
-
Moe Ahmadi authored
Adds a new option to chrome://omnibox-on-focus-suggestions that enables remote and local zero-prefix suggestions in both Omnibox and Realbox. Removes obsolete options that enable remote suggestions only. Bug: 996516 Change-Id: I54bab6628e6c3322d17abef987c10122d9cf4ddb Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1836871Reviewed-by:
Dan Beam <dbeam@chromium.org> Commit-Queue: Moe Ahmadi <mahmadi@chromium.org> Cr-Commit-Position: refs/heads/master@{#702274}
-
Brian Sheedy authored
Makes BrowserMinidumpTest.testGetStackTrace() always expect Crashpad stack symbolization output. Previously, there were issues on Telemetry's end that prevented Crashpad dumps from being found, which prevented any output showing up in getStackTrace's Crashpad section. Now that the issues have been fixed, we should always expect output. Bug: 949321 Change-Id: Iec729238abbb57b7adfb57bfc76e03cda3cbfa8d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1830359 Auto-Submit: Brian Sheedy <bsheedy@chromium.org> Commit-Queue: Caleb Rouleau <crouleau@chromium.org> Reviewed-by:
Caleb Rouleau <crouleau@chromium.org> Cr-Commit-Position: refs/heads/master@{#702273}
-
Kyle Horimoto authored
Before this CL, settings would sometimes erroneously show an "out of range" error even when the network was not out of range. This CL fixes this issue. Bug: 1009365 Change-Id: If5ef684bf8d643c1078dcb1fc06438c483f34b3a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1834903 Commit-Queue: Kyle Horimoto <khorimoto@chromium.org> Auto-Submit: Kyle Horimoto <khorimoto@chromium.org> Reviewed-by:
Steven Bennetts <stevenjb@chromium.org> Cr-Commit-Position: refs/heads/master@{#702272}
-
Sophie Chang authored
target defined in proto Bug: 1001194 Change-Id: Iccceb795ed89d571c07129f9a6b12a9721dd3b50 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1835013 Commit-Queue: Sophie Chang <sophiechang@chromium.org> Reviewed-by:
Michael Crouse <mcrouse@chromium.org> Cr-Commit-Position: refs/heads/master@{#702271}
-
Eugene But authored
Bug: None Change-Id: I22b245cdc9117556e77c482495a9a43825723cf0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1834646 Commit-Queue: Rohit Rao <rohitrao@chromium.org> Reviewed-by:
Rohit Rao <rohitrao@chromium.org> Cr-Commit-Position: refs/heads/master@{#702270}
-
chromium-autoroll authored
https://chromium.googlesource.com/chromium/tools/depot_tools.git/+log/f417d3ad5009..0a33d2b80fc8 git log f417d3ad5009..0a33d2b80fc8 --date=short --no-merges --format='%ad %ae %s' 2019-10-02 recipe-mega-autoroller@chops-service-accounts.iam.gserviceaccount.com Roll recipe dependencies (trivial). 2019-10-02 recipe-mega-autoroller@chops-service-accounts.iam.gserviceaccount.com Roll recipe dependencies (trivial). Created with: gclient setdep -r src/third_party/depot_tools@0a33d2b80fc8 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/depot-tools-chromium-autoroll Please CC agable@chromium.org on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md TBR=agable@chromium.org Bug: None Change-Id: I604085657c2eafd160b7b12a697cc843a5c338c6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1836274Reviewed-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@{#702269}
-
Doug Arnett authored
Initially this is a prototype grade patch to test async script deferral with DeferAllScript sync script deferral. It uses the Suspend/Resume api on the ScriptRunner to hold off async script execution until the force deferred sync scripts are executed. Bug: 965277 Change-Id: I62763aa8929e5756e63030789024ed936409e402 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1785137Reviewed-by:
Hiroshige Hayashizaki <hiroshige@chromium.org> Reviewed-by:
Kouhei Ueno <kouhei@chromium.org> Commit-Queue: Doug Arnett <dougarnett@chromium.org> Cr-Commit-Position: refs/heads/master@{#702268}
-
Maggie Cai authored
This CL adds ARC intent filters updated observer for a single package. Currently the ARC intent filter is always updated as a whole, and we do not know which package has the update. This CL splits up the conditions for start up and package updates. On start up we send all the ARC intent filters while for package updates, we only send the update for that package. We are still sending exactly the same number of updates as before, the only difference is that now we specify what package is being updated and only send through the change for that package. If all packages are updated, an base::nullopt will be sent through. BUG=853604 Change-Id: Ia973168486e04eb337d99379a69d6eb8d9c72ffe Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1824045 Commit-Queue: Maggie Cai <mxcai@chromium.org> Reviewed-by:
David Jacobo <djacobo@chromium.org> Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Reviewed-by:
Dominick Ng <dominickn@chromium.org> Reviewed-by:
Luciano Pacheco <lucmult@chromium.org> Cr-Commit-Position: refs/heads/master@{#702267}
-
chromium-autoroll authored
https://android.googlesource.com/platform/external/perfetto.git/+log/3ad1e2151d99..b06d185a495b git log 3ad1e2151d99..b06d185a495b --date=short --no-merges --format='%ad %ae %s' 2019-10-02 zakerinasab@google.com Support memory tracker layer from Gapid in Perfetto Created with: gclient setdep -r src/third_party/perfetto@b06d185a495b If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/perfetto-chromium-autoroll Please CC perfetto-bugs@google.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md TBR=perfetto-bugs@google.com Bug: None Change-Id: I3c3003301b9c1ec1df6e80d037ba7ce9f968a2ab Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1836273Reviewed-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@{#702266}
-
Andrey Kosyakov authored
Change-Id: I3b52e61ad7b9030ad75582699d60dc5ca831e588 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1836664 Commit-Queue: Andrey Kosyakov <caseq@chromium.org> Reviewed-by:
Johannes Henkel <johannes@chromium.org> Cr-Commit-Position: refs/heads/master@{#702265}
-