- 20 Feb, 2020 40 commits
-
-
Balazs Engedy authored
While location bar user input in progress, GetContentSettingWebContents will return nullptr, but ContentSettingImageView::AnimationEnded is still invoked. Add a check in the latter to make sure we are not checking on a null WebContent if the promo should be shown. Bug: 1054074 Change-Id: I261bceb410478360f6af2d84ddf5e01f5c9e6cc3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2064968Reviewed-by:
Dana Fried <dfried@chromium.org> Commit-Queue: Balazs Engedy <engedy@chromium.org> Cr-Commit-Position: refs/heads/master@{#743025}
-
Jan Wilken Dörrie authored
This change adds a string16 overload for CanonicalizeUsername which will be useful for the Bulk Leak Check. In order to avoid duplicating code, the implementation is turned into a template, used by both the 8-bit and 16-bit version. Bug: 1047726 Change-Id: I03a3d7cd6d037f0c526d35e1f81080b1ce16503f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2064548 Commit-Queue: Jan Wilken Dörrie <jdoerrie@chromium.org> Reviewed-by:
Vasilii Sukhanov <vasilii@chromium.org> Cr-Commit-Position: refs/heads/master@{#743024}
-
Omar Morsi authored
Some NSS Certificate Database functions that return information about certificates are expensive and should not be called on the UI thread. This CL is part of the effort of normalizing the way of gathering this certificates information to make sure it is gathered on a worker thread. To call these functions on a worker thread, they should not depend on NSSCertDatabase instances, so if the instances goes out of scope, the code does not run into undefined behaviour. In this CL some NSS Certificate Database functions that does not depend on database instances are converted to static to be able to use them safely inside worker threads. 1- net_unittests --gtest_filter=NSSCertDatabase* 2- unittests --gtest_filter=CertificateManagerModel* Bug: chromium:1043083, chromium:1012430 Test: Change-Id: I63a1157c5d92b44f8d5252e9475104a1adfa8376 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2054090Reviewed-by:
Ryan Sleevi <rsleevi@chromium.org> Reviewed-by:
Matt Mueller <mattm@chromium.org> Reviewed-by:
Pavol Marko <pmarko@chromium.org> Commit-Queue: Omar Morsi <omorsi@google.com> Cr-Commit-Position: refs/heads/master@{#743023}
-
Omer Katz authored
Bug: 821951 Change-Id: I1ad389c5092411f72d636fbdd5060d99d1be6fac Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2023653 Commit-Queue: Omer Katz <omerkatz@chromium.org> Reviewed-by:
Michael Lippautz <mlippautz@chromium.org> Reviewed-by:
Anton Bikineev <bikineev@chromium.org> Cr-Commit-Position: refs/heads/master@{#743022}
-
Anand K. Mistry authored
Bug: 634140 Change-Id: I4d8d051446f5797428b938b7d1ff773d637c4ede Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2065690Reviewed-by:
Kinuko Yasuda <kinuko@chromium.org> Commit-Queue: Anand Mistry <amistry@chromium.org> Cr-Commit-Position: refs/heads/master@{#743021}
-
Kent Tamura authored
Move HandlePopupOpenKeyboardEvent(), ShouldOpenPopupForKey*Event() of HTMLSelectElement to MenuListSelectType They are used only by MenuListSelectType. This CL has no behavior changes. Bug: 1052232 Change-Id: I0fe76842e2767c4f7a0d8ee6f1e1f3cf69cec4d7 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2065693Reviewed-by:
Yoshifumi Inoue <yosin@chromium.org> Commit-Queue: Kent Tamura <tkent@chromium.org> Cr-Commit-Position: refs/heads/master@{#743020}
-
Joshua Bell authored
These tests cover 5 encodings (UTF-8, UTF-16LE/BE, Windows-1251/1252) and exercise many features (HTML, CSS, SVG, Workers, ...). They're currently all skipped in Chrome (and other browser CI systems), since something in that huge matrix fails or times out for everyone. https://github.com/web-platform-tests/wpt/issues/4934 suggests splitting these into separate files. As a stopgap, split them out using the WPT "variant" mechanism and provide expected failure files for subsets, which should make fixing the tests and/or browsers more actionable, and let us catch new regressions. Bug: 930297 Change-Id: I4813281f547216b2b5f377118a58a419f62cfbc7 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2063808 Commit-Queue: Philip Jägenstedt <foolip@chromium.org> Reviewed-by:
Philip Jägenstedt <foolip@chromium.org> Cr-Commit-Position: refs/heads/master@{#743019}
-
Clark DuVall authored
GetAutoApprovalOrigin() does not need the request parameter. Also removed some unnecessary namespace qualifications. Bug: 1025609 Change-Id: If40143d7c6b743328167afc5b95af3b6b49616cd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2066102 Commit-Queue: Balazs Engedy <engedy@chromium.org> Reviewed-by:
Balazs Engedy <engedy@chromium.org> Cr-Commit-Position: refs/heads/master@{#743018}
-
Colin Blundell authored
In advance of bringing up a factory for ChromeSSLHostStateDelegate in //weblayer, this CL simplifies the one in //chrome by making ChromeSSLHostStateDelegate a KeyedService directly rather than having a wrapper class inside the factory. This avoids the need to replicate the boilerplate in //weblayer's factory. Bug: 1030692 Change-Id: I5732f70c5180261c9bbbc385e38da623e01cab86 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2063172Reviewed-by:
Carlos IL <carlosil@chromium.org> Commit-Queue: Colin Blundell <blundell@chromium.org> Cr-Commit-Position: refs/heads/master@{#743017}
-
Thomas Guilbert authored
Currently, video.requestAnimationFrame() callbacks execute as soon as possible on the main thread, disregarding the normal event loop processing model. This CL delays the execution of the video.rAF callbacks to the next time the rendering steps are run (e.g. right before the regular window.rAF callbacks). This makes video.rAF callback more consistent with what web authors would expect for a method of that name. Spec: https://wicg.github.io/video-raf/ Intent-to-prototype: https://groups.google.com/a/chromium.org/forum/#!msg/blink-dev/LGPUCOCVQxs/IKVPne8wDQAJ Bug: 1012063 Change-Id: If16dc9b76df6c732ebdfa1d1582ea34278ee0d0c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2040742 Commit-Queue: Thomas Guilbert <tguilbert@chromium.org> Reviewed-by:
Mounir Lamouri <mlamouri@chromium.org> Reviewed-by:
Kent Tamura <tkent@chromium.org> Reviewed-by:
Guido Urdaneta <guidou@chromium.org> Reviewed-by:
Mason Freed <masonfreed@chromium.org> Reviewed-by:
Dale Curtis <dalecurtis@chromium.org> Cr-Commit-Position: refs/heads/master@{#743016}
-
Josh Simmons authored
Extend this flag expiry until Chromium M85 Bug: 992818 Change-Id: Id56171d8eb9d969141943e1c9415e9f1da68465a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2065694Reviewed-by:
Noel Gordon <noel@chromium.org> Commit-Queue: Noel Gordon <noel@chromium.org> Cr-Commit-Position: refs/heads/master@{#743015}
-
Nico Weber authored
Except on iOS, CrOS, Chromecast for now. I did two full local non-goma builds with this off and on, and couldn't measure any slowdown from the warning. (`gn clean out/gn && time ninja -C out/gn content_shell`) Bug: 1031169 Change-Id: I91fe477f00cbef12bf48dcfb377ee83ed5a3fabf Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2063736 Auto-Submit: Nico Weber <thakis@chromium.org> Commit-Queue: Hans Wennborg <hans@chromium.org> Reviewed-by:
Hans Wennborg <hans@chromium.org> Cr-Commit-Position: refs/heads/master@{#743014}
-
Mohamed Amir Yosef authored
Bug: 1044365 Change-Id: Ie3d5246c24a046c18d6d2bfa6d92d1fdd46839db Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2063013Reviewed-by:
Vasilii Sukhanov <vasilii@chromium.org> Reviewed-by:
Jochen Eisinger <jochen@chromium.org> Commit-Queue: Jochen Eisinger <jochen@chromium.org> Auto-Submit: Mohamed Amir Yosef <mamir@chromium.org> Cr-Commit-Position: refs/heads/master@{#743013}
-
Viktor Semeniuk authored
Changed Reauth dialog message for Copy password into clipboard feature. Added new Reauth Purpose reason. Bug: 917337 Change-Id: If805234969a39a98b24af1816f33c88388a06b87 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2061814 Commit-Queue: Viktor Semeniuk <vsemeniuk@google.com> Reviewed-by:
Jan Wilken Dörrie <jdoerrie@chromium.org> Reviewed-by:
Vasilii Sukhanov <vasilii@chromium.org> Cr-Commit-Position: refs/heads/master@{#743012}
-
Luciano Pacheco authored
Change TreeItem classes to avoid doing a full rescan just to work out if we should show the expand icon or not. Instead, only scan down to the first sub-directory using the new method updateExpandIcon(). Replace calls to updateSubDirectories() with updateExpandIcon() where the content of sub-directories aren't needed. The most important call replaced is in SubDirectoryItem constructor, because this caused scanning of an additional level down from the folder that user was interacting with. This significantly improves the performance of navigating on folders that have large sub-folders. For example, the time to run integration test directoryTreeExpandFolder() cut down from ~40 secs to ~7 secs, where the most of time is spent expanding a sub-folder that contains 1k children. Test: browser_tests --gtest_filter="DirectoryTree/FilesAppBrowserTest.Test/directoryTreeExpandFolder" Bug: 1039820 Change-Id: Ib629601f2c795a6dedd80a04f85827fd33e96af0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2059729Reviewed-by:
Noel Gordon <noel@chromium.org> Commit-Queue: Noel Gordon <noel@chromium.org> Commit-Queue: Luciano Pacheco <lucmult@chromium.org> Auto-Submit: Luciano Pacheco <lucmult@chromium.org> Cr-Commit-Position: refs/heads/master@{#743011}
-
Yoshifumi Inoue authored
Before this patch, |NGPhysicalTextFragment::ResolvedDirection()| takes long time for text ranges not having text shape result, e.g. force line break, tab, etc. Then selection painting for large plain text containing newline, e.g. <pre>. This patch changes |NGPhysicalTextFragment| to hold resolved direction known at inline formatting rather than finding |NGInlineItem| from inline formatting context. This means we scan |NGInlineItem| list for every newline. On sample page (having 20,000 newline in <pre>), rendering time is 4,689ms to 1,881ms (2.4 times faster). Bug: 1050397 Change-Id: I0cc2a7b9c4ac75232b70b41f7d97134bdc966eef Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2063562 Commit-Queue: Kent Tamura <tkent@chromium.org> Auto-Submit: Yoshifumi Inoue <yosin@chromium.org> Reviewed-by:
Kent Tamura <tkent@chromium.org> Cr-Commit-Position: refs/heads/master@{#743010}
-
chromium-autoroll authored
https://chromium.googlesource.com/external/github.com/KhronosGroup/glslang/+log/c008fcb8cc0f..c12493ff69e2 git log c008fcb8cc0f..c12493ff69e2 --date=short --first-parent --format='%ad %ae %s' 2020-02-20 johnkslang@users.noreply.github.com Merge pull request #2086 from samuelig/SPV_AMD_shader_image_load_store_lod Created with: gclient setdep -r src/third_party/glslang/src@c12493ff69e2 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/glslang-chromium-autoroll Please CC radial-bots+chrome-roll@google.com,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 Bug: None Tbr: radial-bots+chrome-roll@google.com,cwallez@google.com Change-Id: Ib3b59c6f9b8f0569b948c485474ab8bbe2ac0291 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2066049Reviewed-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@{#743009}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/048075425abc..adeb0b9fdd32 Created with: gclient setdep -r src-internal@adeb0b9fdd32 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 Bug: None Tbr: jbudorick@google.com Change-Id: Ied8471d178b746b37434d41625797181ce370d14 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2066048Reviewed-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@{#743008}
-
Kai Ninomiya authored
https://chromium.googlesource.com/external/github.com/gpuweb/cts/+log/ec18cc3262922e7dcdbe70243c6f40606f979144..02b62c256590b040d514ec15c0f12041be8d1575 Change-Id: I6db0043cf844a81d1ccdecb4e7c0a51de5430fb4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2050036Reviewed-by:
Robert Ma <robertma@chromium.org> Reviewed-by:
Rakib Hasan <rmhasan@google.com> Reviewed-by:
Austin Eng <enga@chromium.org> Commit-Queue: Kai Ninomiya <kainino@chromium.org> Cr-Commit-Position: refs/heads/master@{#743007}
-
Sean Kau authored
Some subsystems don't have access to a profile but need to observe CupsPrintersManager. Build a Proxy object that can be observed and will attach the primary user CupsPrintersManager when it's created. Change-Id: I6b52d51740e7d72359030c7ab6551541d8b2d30c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2057859Reviewed-by:
Luum Habtemariam <luum@chromium.org> Commit-Queue: Sean Kau <skau@chromium.org> Cr-Commit-Position: refs/heads/master@{#743006}
-
Armando Miraglia authored
Bug: 1053255 Change-Id: Iac23a5c894030573013a92071ef31dbee9c938aa Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2062398Reviewed-by:
Guido Urdaneta <guidou@chromium.org> Reviewed-by:
Mark Pearson <mpearson@chromium.org> Commit-Queue: Armando Miraglia <armax@chromium.org> Cr-Commit-Position: refs/heads/master@{#743005}
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/a5097354217b..2c2db2762809 git log a5097354217b..2c2db2762809 --date=short --first-parent --format='%ad %ae %s' 2020-02-20 skia-autoroll@skia-public.iam.gserviceaccount.com Roll third_party/externals/angle2 fa9eff37c38a..2801bf43716e (16 commits) Created with: gclient setdep -r src/third_party/skia@2c2db2762809 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/skia-autoroll Please CC lovisolo@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-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 Bug: None Tbr: lovisolo@google.com Change-Id: I376009552376e12556eefb0b3e1c9f1b7c14261a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2066050Reviewed-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@{#743004}
-
Maksim Sisov authored
Fix crash that happens in tests if there is no data_device_. PS: we don't have tests running in our bot yet. This is what I observer, when did first runs locally. Bug: 578890 Change-Id: I6b9b01fb1f29b71f6fb459b9c69d4967cbb99b95 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2062441 Commit-Queue: Maksim Sisov <msisov@igalia.com> Reviewed-by:
Antonio Gomes <tonikitoo@igalia.com> Cr-Commit-Position: refs/heads/master@{#743003}
-
Jonah Chin authored
This CL is the first step in creating a PaintRecord backed resource provider for canvas OOP-R. Changes of ownership: - PaintRecorder entirely moved from Canvas2DLayerBridge to CanvasResourceProvider. - Management of needs_flush_ for MemoryManagedPaintRecorder moved to CanvasResourceProvider. - RestoreCanvasMatrixClipStack logic centralized to CanvasResourceHost and can be accessed via callback - Backing SkiaPaintCanvas now private to CanvasResourceProvider with no external access. Any users of the backing SkiaPaintCanvas in Canvas2DLayerBridge had their functionality moved to CanvasResourceProvider (ie. new RestoreBackBuffer() function) Updates to test files: - Addition of explicit FlushCanvas() calls in tests that used to expect SkiaPaintCanvas to immediately update. - Some tests expected the CanvasResourceProvider to be created on first draw. This expectation has been changed since the CanvasResourceProvider now gets set up on SetCanvasResourceHost(). Other new functionality: - Display Item List now has a bit that tracks if it contains any draw operations. This is used to see if there are draw ops to flush. Bug: 1019288 Change-Id: I717b18e22d6699dc876d8f8121a25d147738579d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1891292 Commit-Queue: Khushal <khushalsagar@chromium.org> Reviewed-by:
Aaron Krajeski <aaronhk@chromium.org> Reviewed-by:
Juanmi Huertas <juanmihd@chromium.org> Reviewed-by:
Fernando Serboncini <fserb@chromium.org> Reviewed-by:
Khushal <khushalsagar@chromium.org> Cr-Commit-Position: refs/heads/master@{#743002}
-
Nick Harper authored
Change-Id: Ia542f2467e9b58a018f388327cd1b7a3c83b41f8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2064778Reviewed-by:
Ryan Sleevi <rsleevi@chromium.org> Commit-Queue: Ryan Sleevi <rsleevi@chromium.org> Cr-Commit-Position: refs/heads/master@{#743001}
-
Maksim Sisov authored
Some tests may want to create a popup window without a parent. In case of Wayland, it requires to pass a parent window's widget. If there is no parent, and we are unable to find a current focused window (by cursor or by keyboard), what we can do is to create a normal surface. Bug: 578890 Change-Id: Iacbddd0cb85f62ea1f59fbf3efc6a160a3047fbf Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2062976 Commit-Queue: Maksim Sisov <msisov@igalia.com> Reviewed-by:
Michael Spang <spang@chromium.org> Cr-Commit-Position: refs/heads/master@{#743000}
-
jessing authored
An example of how to embed a chrome-untrusted iframe into a system web app. To do so, we need to add abstract methods in WebUI despite WebUIImpl being the only class to actually implement it. This is so the WebUIController can add requestable schemes so the WebUI can request the chrome-untrusted resource. Bug: 1048951 Change-Id: Ia3152e21412845cf421df74bb00a16e0a8f264b8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2037186 Commit-Queue: Jessica Huang <jessing@google.com> Reviewed-by:
calamity <calamity@chromium.org> Reviewed-by:
Kinuko Yasuda <kinuko@chromium.org> Auto-Submit: Jessica Huang <jessing@google.com> Cr-Commit-Position: refs/heads/master@{#742999}
-
Kenichi Ishibashi authored
ServiceWorkerStorage uses the const but it is going to be moved to the Storage Service. Bug: 1016064 Change-Id: Idded7b81c6ba84dd431d1784d90b3ad14cc21508 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2060354 Commit-Queue: Victor Costan <pwnall@chromium.org> Reviewed-by:
Victor Costan <pwnall@chromium.org> Cr-Commit-Position: refs/heads/master@{#742998}
-
Alan Cutter authored
This is a reland of ef364481 Fixed test on linux-chromeos-chrome, see passing tryjob: https://ci.chromium.org/p/chrome/builders/try/linux-chromeos-chrome/5156 The tree failure was due to an incorrect test expectation that wasn't being exercised due to AutoupgradeMixedContent being enabled on the trybots. linux-chromeos-chrome caught the problem because it has AutoupgradeMixedContent disabled. This CL fixes the issue by forcing AutoupgradeMixedContent to be disabled so we can detect that we show security UI for mixed content: https://chromium-review.googlesource.com/c/chromium/src/+/2064310/1..2 Original change's description: > Allow mixed-security content in promoted PWA windows > > Prior to this CL, mixed-security content was blocked entirely in > standalone PWA windows with scopes. This CL allows those PWAs to display > mixed-security content, but when this happens, the window will show the > CustomTabBarView with the URL and a "Not Secure" indicator to indicate > the presence of mixed content. > > Screenshot: > https://bugs.chromium.org/p/chromium/issues/attachment?aid=432401&signed_aid=JeW6cXlVCQ3bSebdZ-FoJg==&inline=1 > > This removes a behavioural difference between promoted PWAs and "create > shortcut" apps without manifest scopes. > > > Bug: 910016 > Change-Id: Ic9b3bbdba14218bb1ad8fd4f2ca8cf47cd4e3a37 > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2041380 > Commit-Queue: Alan Cutter <alancutter@chromium.org> > Reviewed-by: Evan Stade <estade@chromium.org> > Reviewed-by: Dominick Ng <dominickn@chromium.org> > Reviewed-by: Peter Boström <pbos@chromium.org> > Reviewed-by: Glen Robertson <glenrob@chromium.org> > Cr-Commit-Position: refs/heads/master@{#742515} TBR=estade@chromium.org,dominickn@chromium.org,pbos@chromium.org,glenrob@chromium.org Bug: 910016 Change-Id: I7cde915c261406a32e3dc2d8f95318f0f4b5e534 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2064310Reviewed-by:
Alan Cutter <alancutter@chromium.org> Commit-Queue: Alan Cutter <alancutter@chromium.org> Cr-Commit-Position: refs/heads/master@{#742997}
-
Anand K. Mistry authored
Bug: 634140 Change-Id: I43c748a416ae83dc51394fd98c5e8ac7f4e4e6a1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2065769Reviewed-by:
Devlin <rdevlin.cronin@chromium.org> Commit-Queue: Anand Mistry <amistry@chromium.org> Cr-Commit-Position: refs/heads/master@{#742996}
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/ed1ff23c2768..a5097354217b git log ed1ff23c2768..a5097354217b --date=short --first-parent --format='%ad %ae %s' 2020-02-20 skia-autoroll@skia-public.iam.gserviceaccount.com Roll third_party/externals/swiftshader 8def9063c4fd..74d3f371f201 (1 commits) Created with: gclient setdep -r src/third_party/skia@a5097354217b If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/skia-autoroll Please CC lovisolo@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-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 Bug: None Tbr: lovisolo@google.com Change-Id: Ibec880019f2c651058d242df1342a131e2e6b7ca Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2065425Reviewed-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@{#742995}
-
Erik Anderson authored
This updates from revision d8985509a9df2c25f5118f9d1e41a24f9739bd1f (2019-12-09) to revision 7922d7c20e246552be418e8f72e577899fd30d99 (2020-02-18) Bug: 1054078 Change-Id: I9a4da744ef4bd66ee13b15c64844686cc2228b4d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2064776Reviewed-by:
Ryan Sleevi <rsleevi@chromium.org> Commit-Queue: Erik Anderson <Erik.Anderson@microsoft.com> Cr-Commit-Position: refs/heads/master@{#742994}
-
François Degros authored
Removed code that changed the permissions of the file to mount. It is not needed anymore. Files in MyFiles and Downloads are already readable by everyone. Bug: 996549 Cq-Depend: chromium:2055949 Change-Id: I0ef4d25aa2ca2a536ddee87d64ec5e417aeffe0c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2061628 Commit-Queue: François Degros <fdegros@chromium.org> Reviewed-by:
Anand Mistry <amistry@chromium.org> Cr-Commit-Position: refs/heads/master@{#742993}
-
Joel Hockey authored
Bug: 1033339 Change-Id: Ia8f0c24deb742d04b0a10bb4fbcb4c3322ea1547 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2065776 Commit-Queue: Joel Hockey <joelhockey@chromium.org> Reviewed-by:
Alan Cutter <alancutter@chromium.org> Cr-Commit-Position: refs/heads/master@{#742992}
-
Kazuki Takise authored
This is a follow-up CL of crrev.com/c/2040505, which introduced a regression where, if the client sends a bounds that is not along any of the edges of the PIP movement area, a wrong snap fraction is saved to the window. To avoid this, this CL ensures to snap the bounds to one of the edges. BUG=b:204050 TEST=atest android.server.am.ActivityManagerPinnedStackTests TEST=#testEnterPictureInPictureSavePosition on kevin Change-Id: I9d617790fb31c1a9c9bf33cf21ff67d2ae923e02 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2058934Reviewed-by:
Stefan Kuhne <skuhne@chromium.org> Reviewed-by:
Mitsuru Oshima <oshima@chromium.org> Commit-Queue: Kazuki Takise <takise@chromium.org> Auto-Submit: Kazuki Takise <takise@chromium.org> Cr-Commit-Position: refs/heads/master@{#742991}
-
Daniele Castagna authored
With crrev.com/c/1830084 we removed the only workaround that was using disable_non_empty_post_sub_buffers_for_onscreen_surfaces. This CL cleans up related code. Bug: 457511 Change-Id: Id2ea16b9ce91e5b59401e253519057c7f45796a3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1700562 Auto-Submit: Daniele Castagna <dcastagna@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Khushal <khushalsagar@chromium.org> Commit-Queue: Khushal <khushalsagar@chromium.org> Cr-Commit-Position: refs/heads/master@{#742990}
-
Ken Rockot authored
This adds crash recovery to out-of-process Storage Service usage in Content, and also to Blink's DOM Storage implementation. Upon reconnecting after a crash, the browser pushes all known Session Storage namespaces back down into the service, and renderers re-connect their StorageAreas. A reconnected StorageArea begins by fetching a complete snapshot of the backend's cache. The delta between this and the last known cache in the renderer is used to do one of two things: - For Session Storage, updates are pushed to the backend so that it reflects the renderer's own local cache - For Local Storage, the renderer fully adopts the restored backend cache and dispatches events to update script about any deltas from the previously cached state. This should provide sufficient best-effort recovery for both Session and Local Storage in the event of a Storage Service crash. Fixed: 1052037 Change-Id: I047e480e58f9abba292967db3e4b63b398d60194 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2055805 Commit-Queue: Ken Rockot <rockot@google.com> Reviewed-by:
Daniel Murphy <dmurph@chromium.org> Reviewed-by:
Robert Sesek <rsesek@chromium.org> Reviewed-by:
John Abd-El-Malek <jam@chromium.org> Cr-Commit-Position: refs/heads/master@{#742989}
-
chromium-autoroll authored
https://chromium.googlesource.com/devtools/devtools-frontend.git/+log/2e7884eaaac7..631436b3c1f2 git log 2e7884eaaac7..631436b3c1f2 --date=short --first-parent --format='%ad %ae %s' 2020-02-20 devtools-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com Update DevTools Chromium DEPS. Created with: gclient setdep -r src/third_party/devtools-frontend/src@631436b3c1f2 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/devtools-frontend-chromium Please CC devtools-waterfall-sheriff-onduty@grotations.appspotmail.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 Bug: None Tbr: devtools-waterfall-sheriff-onduty@grotations.appspotmail.com Change-Id: I40389bbff5fed511b0959b031268d878e2072021 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2066044Reviewed-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@{#742988}
-
chromium-autoroll authored
If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/fuchsia-sdk-chromium-autoroll Please CC cr-fuchsia+bot@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 Cq-Include-Trybots: luci.chromium.try:fuchsia-arm64-cast;luci.chromium.try:fuchsia-x64-cast Tbr: cr-fuchsia+bot@chromium.org Change-Id: I8f2c4def353e064a0534bb1061ad2f653cdb59f2 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2066045Reviewed-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@{#742987}
-
CQ_INCLUDE_TRYBOTS=luci.chrome.try:chromeos-betty-chrome CQ_INCLUDE_TRYBOTS=luci.chrome.try:chromeos-betty-pi-arc-chrome CQ_INCLUDE_TRYBOTS=luci.chrome.try:chromeos-eve-compile-chrome CQ_INCLUDE_TRYBOTS=luci.chrome.try:chromeos-kevin-compile-chrome BUG=762641 TBR=chrome-os-gardeners@google.com Change-Id: I3a5fec7a4d24b4700170c49947ecf6f613015125 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2065356Reviewed-by:
ChromeOS bot <3su6n15k.default@developer.gserviceaccount.com> Commit-Queue: ChromeOS bot <3su6n15k.default@developer.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#742986}
-