- 21 Aug, 2018 40 commits
-
-
Christopher Grant authored
This change adds the plumbing necessary to create a UI using a future native feature module library. The code is currently behind a define, which will become a feature flag. Bug= Cq-Include-Trybots: luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:linux_vr;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel Change-Id: I8f71a78f980bda790517d0bd7c41ed091ce66c52 Reviewed-on: https://chromium-review.googlesource.com/1181924Reviewed-by:
Aldo Culquicondor <acondor@chromium.org> Reviewed-by:
Ian Vollick <vollick@chromium.org> Commit-Queue: Christopher Grant <cjgrant@chromium.org> Cr-Commit-Position: refs/heads/master@{#584751}
-
Christopher Grant authored
Desktop is moving to the refresh icons, so VR ought to move in lockstep. BUG=874671 Change-Id: I729cc8e9ff7494301464b179b9ddeb0c513475e7 Reviewed-on: https://chromium-review.googlesource.com/1182014Reviewed-by:
Justin Donnelly <jdonnelly@chromium.org> Commit-Queue: Christopher Grant <cjgrant@chromium.org> Cr-Commit-Position: refs/heads/master@{#584750}
-
Tommy Martino authored
This CL: * Adds a boolean parameter to AutofillDropdownAdapter to allow us to programmatically choose between two visual styles (the existing UI, and the WIP visual refresh). * Removes dividers drawn between items in the refresh case. * Wires up the existing feature and flag which will control which style is used. Change-Id: Ia7cbb79b31e8ad9d086ef1a9a69cb6090b58d533 Bug: 874077 Reviewed-on: https://chromium-review.googlesource.com/1171558Reviewed-by:
Tao Bai <michaelbai@chromium.org> Reviewed-by:
Theresa <twellington@chromium.org> Reviewed-by:
Fabio Tirelo <ftirelo@chromium.org> Commit-Queue: Tommy Martino <tmartino@chromium.org> Cr-Commit-Position: refs/heads/master@{#584749}
-
Joe Downing authored
This CL was reverted due to Win7 failures (missing function on DXGI.dll), apparently remoting_unittests are not run on Win7 as part of the standard set of CQ trybots which is why this wasn't seen earlier. The fix is to do a LoadLibrary/GetProcAddress dance to remove the DXGI dependency. I was able to reproduce this failure on a test Win7 machine and by using the win_chromium_dbg_ng try-bot. I then verified the tests were passing using those two methods and verified the original fix is still valid on my Win10 machine. BUG=875619 Change-Id: Ie56bb9463117b2785c3340ccf4e4785e2e65235d Reviewed-on: https://chromium-review.googlesource.com/1181528Reviewed-by:
Jamie Walch <jamiewalch@chromium.org> Commit-Queue: Joe Downing <joedow@chromium.org> Cr-Commit-Position: refs/heads/master@{#584748}
-
Joe Downing authored
I've found two more binaries which require Mojo init so I've updated them. I decided not to update every binary as we can easily add the init call later if we find something else which needs it. Change-Id: I7eec1ef23842d8247975edb2f0d9fccc67cdab33 Reviewed-on: https://chromium-review.googlesource.com/1182011Reviewed-by:
Gary Kacmarcik <garykac@chromium.org> Reviewed-by:
John Abd-El-Malek <jam@chromium.org> Commit-Queue: Joe Downing <joedow@chromium.org> Cr-Commit-Position: refs/heads/master@{#584747}
-
Ben Wagner authored
Skia is planning on making SkTCopyOnFirstWrite private to Skia. The use of SkTCopyOnFirstWrite is replaced with base::Optional. Cq-Include-Trybots: luci.chromium.try:linux_layout_tests_slimming_paint_v2;master.tryserver.blink:linux_trusty_blink_rel Change-Id: I70d9b8537f7f2a27214f304c48111f679576c536 Reviewed-on: https://chromium-review.googlesource.com/1182363Reviewed-by:
Florin Malita <fmalita@chromium.org> Commit-Queue: Ben Wagner <bungeman@chromium.org> Cr-Commit-Position: refs/heads/master@{#584746}
-
Thomas Tangl authored
The sync-paused suppress reason should only be recorded when the consent bump needs to be shown. Bug: 876235 Change-Id: I65667f941bc7e15a49681e0b61d08ab070fc71da Reviewed-on: https://chromium-review.googlesource.com/1183237Reviewed-by:
Elly Fong-Jones <ellyjones@chromium.org> Commit-Queue: Thomas Tangl <tangltom@chromium.org> Cr-Commit-Position: refs/heads/master@{#584745}
-
John Delaney authored
Now that per-resource updates are sent to page load metrics, we no longer need to send totals from the renderer process. Remove all piping/callbacks and convert existing consumers to OnResourceDataUseObserved. Per-resource updates: https://chromium-review.googlesource.com/c/chromium/src/+/1164222 Change-Id: I1cb03df5e6579fc0ff767900336308a6bbad244a Reviewed-on: https://chromium-review.googlesource.com/1178324Reviewed-by:
Charlie Harrison <csharrison@chromium.org> Reviewed-by:
Kinuko Yasuda <kinuko@chromium.org> Commit-Queue: John Delaney <johnidel@chromium.org> Cr-Commit-Position: refs/heads/master@{#584744}
-
Florian Uunk authored
Fixing a bug where the wallet data bridge was reading address metadata. Change-Id: I1a8dc41a59b4bb8f5855eb7c5f0fa81a3611a419 Bug: 876300 Reviewed-on: https://chromium-review.googlesource.com/1183437 Commit-Queue: Florian Uunk <feuunk@chromium.org> Reviewed-by:
Tim Schumann <tschumann@chromium.org> Cr-Commit-Position: refs/heads/master@{#584743}
-
Egor Pasko authored
I found that cooling down between runs helps a lot with the noise. Applying the usual threshold of 35Celsius, identical to the one used by story_runner. My testing methodology is simple: connect a N5X and run this with bash: COMMON_LOG="logs/noise" for ((i=0;i<10;i++)); do OUTPUT="$COMMON_LOG/old$i" mkdir -p "$OUTPUT" CHROMIUM_OUTPUT_DIR=gn_android/ReleaseOfficial \ tools/perf/run_benchmark -v \ experimental.startup.android.coldish \ --browser=android-chrome --output-dir="$OUTPUT" 2>&1 \ | tee "$OUTPUT/run.log" OUTPUT="$COMMON_LOG/new$i" mkdir -p "$OUTPUT" CHROMIUM_OUTPUT_DIR=gn_android/ReleaseOfficial \ tools/perf/run_benchmark -v \ experimental.startup.mobile \ --browser=android-chrome --output-dir="$OUTPUT" 2>&1 \ | tee "$OUTPUT/run.log" done On my N5X we appear to have to wait ~2 times per 10 Chrome starts to cool down the device, which is a lot of waiting. My desk is not the coldest across offices though, close to 25C right now. Noise is still an issue for 2-3 last measurements out of every batch of 10. These last runs are typically 200-300ms slower than the first 5+ runs (for messageloop start). I suspect there are still effects of overheating. The battery cutoff at 35C is probably not providing sufficient time to cool the CPU down in the new benchmark. But why is it 'good enough' for the old benchmark? I think the old way performs more dummy intermediate steps (reinitializing commandline/trace file, restarting forwarder/WPR, etc.) to allow the device to cool down. Frankly, upwards trend is present on the old benchmark as well, but more around +50ms over 10 runs. While it is not too bad at the current stage, it may become unpleasant at bisect with more iterations, or in a room that is slightly hotter. So I'll probably take a look at limiting the clock frequency for big cores, like we do for N5. Bug: 760498 Change-Id: Id050cf54c6ea21c51acdfbb1c06f20023d909454 Reviewed-on: https://chromium-review.googlesource.com/1180202Reviewed-by:
Juan Antonio Navarro Pérez <perezju@chromium.org> Reviewed-by:
Ned Nguyen <nednguyen@google.com> Commit-Queue: Egor Pasko <pasko@chromium.org> Cr-Commit-Position: refs/heads/master@{#584742}
-
Peter K. Lee authored
This gives the image button a pressed state provided by the system. Bug: 848879 Cq-Include-Trybots: luci.chromium.try:ios-simulator-full-configs;master.tryserver.chromium.mac:ios-simulator-cronet Change-Id: I8912e4cf438a57f27bf432ccb0b1bec10146672c Reviewed-on: https://chromium-review.googlesource.com/1182669Reviewed-by:
Sergio Collazos <sczs@chromium.org> Commit-Queue: Peter Lee <pkl@chromium.org> Cr-Commit-Position: refs/heads/master@{#584741}
-
Eugene But authored
This boolean will be true for loadHTMLString: navigations. -[CRWWebController setDocumentURL:] will have a DCHECK when new document URL does not match last committed URL in WKBasedNavigationManager. This DCHECK will help to diagnose possible URL spoofing bugs in Slim Navigation feature. For loadHTMLString: the URLs will not match, which is not a problem because loadHTMLString: are only used in tests and error pages. Bug: 876077 Cq-Include-Trybots: luci.chromium.try:ios-simulator-full-configs;master.tryserver.chromium.mac:ios-simulator-cronet Change-Id: Iae163faf7f5cf90d5bb0e48a191786be2e1d8ee6 Reviewed-on: https://chromium-review.googlesource.com/1182313Reviewed-by:
Mike Dougherty <michaeldo@chromium.org> Commit-Queue: Mike Dougherty <michaeldo@chromium.org> Cr-Commit-Position: refs/heads/master@{#584740}
-
Tommy Martino authored
Currently in the Autofill dropdown, spacers which are subject to flex sizing can end up smaller than the desired minimum size, which means the primary and secondary text run together. This CL adds a small class for the spacers which enforces a minimum size, and tells the layout manager to respect the minimum size. Screenshots (Googlers only): https://docs.google.com/presentation/d/1IeyKg22nSbt8aDkvCGrHx1SBg7UBQIqymWDj2sLJ9JQ/edit?usp=sharing Change-Id: I3b62af0f8355edf2353485986c7e529f8a0a8017 Bug: 875014 Reviewed-on: https://chromium-review.googlesource.com/1179981 Commit-Queue: Tommy Martino <tmartino@chromium.org> Reviewed-by:
Evan Stade <estade@chromium.org> Reviewed-by:
Fabio Tirelo <ftirelo@chromium.org> Cr-Commit-Position: refs/heads/master@{#584739}
-
Daniel Erat authored
Add README.md files in //ash/dbus and //chrome/browser/chromeos/dbus. Bug: 843392 Change-Id: I31181b72aabf60f7c09feda7e8081078215ad472 Reviewed-on: https://chromium-review.googlesource.com/1182951 Commit-Queue: Dan Erat <derat@chromium.org> Reviewed-by:
James Cook <jamescook@chromium.org> Cr-Commit-Position: refs/heads/master@{#584738}
-
Helen Li authored
This is to help with investigating cookies bugs. This is based on rdsmith@'s CL at https://chromium-review.googlesource.com/c/chromium/src/+/925181 Bug: 801910 Cq-Include-Trybots: luci.chromium.try:ios-simulator-full-configs;master.tryserver.chromium.mac:ios-simulator-cronet Change-Id: Ia0fbfca17a8a8ad76cbcc4e1ae46330b3f706ea0 Reviewed-on: https://chromium-review.googlesource.com/1175921 Commit-Queue: Helen Li <xunjieli@chromium.org> Reviewed-by:
Rohit Rao <rohitrao@chromium.org> Cr-Commit-Position: refs/heads/master@{#584737}
-
Vadym Doroshenko authored
As part of implementation of the saving in new parsing we need to make the similar operations with NewPasswordFormManager as with PasswordFormManager in PasswordManager. In order to avoid copying the code, this CL introduces PasswordFormManagerForInterface for handling both classes though it. Details of implementation of saving in PasswordManager with NewPasswordManagePasswordManager in CL https://chromium-review.googlesource.com/c/chromium/src/+/1180220 Bug: 831123 Change-Id: I509be6c9b1f295e7e6d2bd482fbf2dc8177d7ac9 Reviewed-on: https://chromium-review.googlesource.com/1181025 Commit-Queue: Vadym Doroshenko <dvadym@chromium.org> Reviewed-by:
Vasilii Sukhanov <vasilii@chromium.org> Cr-Commit-Position: refs/heads/master@{#584736}
-
perfetto-chromium-autoroll authored
https://android.googlesource.com/platform/external/perfetto.git/+log/ca77050d3e65..1a8cd3c7348f git log ca77050d3e65..1a8cd3c7348f --date=short --no-merges --format='%ad %ae %s' 2018-08-21 primiano@google.com Merge "Bump NDK to 17b." Created with: gclient setdep -r src/third_party/perfetto@1a8cd3c7348f The AutoRoll server is located here: https://perfetto-chromium-roll.skia.org Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. TBR=perfetto-bugs@google.com Change-Id: I93a83407503bef723f2cfd64c808aad55051a550 Reviewed-on: https://chromium-review.googlesource.com/1183401Reviewed-by:
perfetto-chromium-autoroll <perfetto-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Commit-Queue: perfetto-chromium-autoroll <perfetto-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#584735}
-
Tibor Goldschwendt authored
If we enter VR without a Daydream headset paired the assets component won't be registered. This is intended. However, we will always trigger an on-demand update no matter if the component is registered or not. Thus, remove DCHECK for testing whether component is registered when on-demand updating the component. The component updater will just return if we try to on-demand update an unregistered component. Change-Id: If512f9c8aa7170e34864c40333ba6a727da01a58 Reviewed-on: https://chromium-review.googlesource.com/1182362Reviewed-by:
Joshua Pawlicki <waffles@chromium.org> Commit-Queue: Tibor Goldschwendt <tiborg@chromium.org> Cr-Commit-Position: refs/heads/master@{#584734}
-
Max Moroz authored
TBR=inferno@chromium.org,liaoyuke@chromium.org Bug: 817798 Change-Id: Id38a434ce51619e66962a789eb6d4c808a11bda0 Reviewed-on: https://chromium-review.googlesource.com/1183524 Commit-Queue: Max Moroz <mmoroz@chromium.org> Reviewed-by:
Max Moroz <mmoroz@chromium.org> Cr-Commit-Position: refs/heads/master@{#584733}
-
Vasilii Sukhanov authored
Bug: 875237 Change-Id: Id3ea73365dd50c9bc4d2d13659d37b03bc26c180 Reviewed-on: https://chromium-review.googlesource.com/1183430 Commit-Queue: Vasilii Sukhanov <vasilii@chromium.org> Reviewed-by:
Maxim Kolosovskiy <kolos@chromium.org> Cr-Commit-Position: refs/heads/master@{#584732}
-
Guido Urdaneta authored
The test has flaked on Windows, Linux and Mac. Bug: 875908 TBR: lazyboy@chromium.org Change-Id: I214ecaea3d96bd5d2e892556b0f92d7bb4f652d6 Reviewed-on: https://chromium-review.googlesource.com/1183433Reviewed-by:
Guido Urdaneta <guidou@chromium.org> Commit-Queue: Guido Urdaneta <guidou@chromium.org> Cr-Commit-Position: refs/heads/master@{#584731}
-
skia-chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/f13375c925bf..4d727c560b58 git log f13375c925bf..4d727c560b58 --date=short --no-merges --format='%ad %ae %s' 2018-08-21 scroggo@google.com Add dummy SkEncodedInfo.cpp Created with: gclient setdep -r src/third_party/skia@4d727c560b58 The AutoRoll server is located here: https://autoroll.skia.org Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_trusty_blink_rel;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=fmalita@chromium.org Change-Id: Ib5caa7b1d100cce66a2b3bf25bff1b0ff98faa63 Reviewed-on: https://chromium-review.googlesource.com/1183402Reviewed-by:
skia-chromium-autoroll <skia-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Commit-Queue: skia-chromium-autoroll <skia-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#584730}
-
Kevin Bailey authored
Most of the time, we only use the most important arguments when constructing a SuggestResult, those passed to the Result sub-constructor. This change adds a constructor for this most often used case, and also adds methods for setting the answer-related fields separately. Change-Id: I2ed077b93b142f90fa16d53d146e6081174f7907 Reviewed-on: https://chromium-review.googlesource.com/1178102Reviewed-by:
Mark Pearson <mpearson@chromium.org> Reviewed-by:
Justin Donnelly <jdonnelly@chromium.org> Commit-Queue: Kevin Bailey <krb@chromium.org> Cr-Commit-Position: refs/heads/master@{#584729}
-
Javier Ernesto Flores Robles authored
What was happening? When the keyboard was hidden, te form suggestion controller was being reset. At the same time, the form observer had triggered a suggestions look up, causing call to an unexistent block. Bug: 875177 Cq-Include-Trybots: luci.chromium.try:ios-simulator-full-configs;master.tryserver.chromium.mac:ios-simulator-cronet Change-Id: Ie42fc8588fd368a24779134ad9370114995fefaf Reviewed-on: https://chromium-review.googlesource.com/1183181Reviewed-by:
Mark Cogan <marq@chromium.org> Commit-Queue: Javier Ernesto Flores Robles <javierrobles@chromium.org> Cr-Commit-Position: refs/heads/master@{#584728}
-
DongJun Kim authored
autofill : Use ContainsValue() instead of std::find() in components/autofill This simplifies many conditions around the code. Bug: 561800 Change-Id: I36579da9e0e62fbf834a39419c9bc253546fec24 Reviewed-on: https://chromium-review.googlesource.com/1183268 Commit-Queue: Vadym Doroshenko <dvadym@chromium.org> Reviewed-by:
Vadym Doroshenko <dvadym@chromium.org> Cr-Commit-Position: refs/heads/master@{#584727}
-
Max Moroz authored
- Move all report post processing logic to a separate coverage_utils file. - Add switch for disabling component view. - Fix shared libraries regexp to match versioned libraries. - Move HTML post processing methods into a class (to reduce passing a bunch of parameters back and forth). - Add _Main() to coverage_utils.py that can be used outside of Chromium. For example, to use that script on OSS-Fuzz we would need to do the following: 1) git clone https://chromium.googlesource.com/chromium/src/tools/code_coverage somewhere 2) echo -en '#!/bin/bash\npython3 somewhere/coverage_utils.py $@\n' \ > /usr/local/bin/coverage_helper Bug: 817798 Change-Id: I8de8cec2d118f022eb43634dd85b96e4126f5e63 Reviewed-on: https://chromium-review.googlesource.com/1180364 Commit-Queue: Max Moroz <mmoroz@chromium.org> Reviewed-by:
Oliver Chang <ochang@chromium.org> Cr-Commit-Position: refs/heads/master@{#584726}
-
Ramin Halavati authored
DOM distiller preferences are removed from the persistent storage list for incognito mode. After this CL, if these preferences are changed from incognito mode, they are only stored in memory and won't affect user profile. Bug: 861722 Change-Id: Icb08ad733b48a193c3ec52087d92decde6563191 Reviewed-on: https://chromium-review.googlesource.com/1179144Reviewed-by:
Matthew Jones <mdjones@chromium.org> Commit-Queue: Ramin Halavati <rhalavati@chromium.org> Cr-Commit-Position: refs/heads/master@{#584725}
-
Francois Doray authored
ScopedAllowBlockingForTesting should be used instead. This should be a no-op change. TBR=gab@chromium.org Bug: 766678 Change-Id: I02f4af90c410efa3dccce193d134ec46555e7ef1 Reviewed-on: https://chromium-review.googlesource.com/1171559 Commit-Queue: François Doray <fdoray@chromium.org> Reviewed-by:
Gabriel Charette <gab@chromium.org> Cr-Commit-Position: refs/heads/master@{#584724}
-
Amirhossein Simjour authored
VrTabHelper is not Android specific anymore, so I remove the ifdef condition and DCHECK. Moreover, I added a new UiSuppressedElement that covers the suppression of permission bubble without confusion with suppression of the PermissionRequest. Cq-Include-Trybots: luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:linux_vr;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel Change-Id: I7300ee5cab28d1ce5b95bf6a60e9a67b9aef94a9 Reviewed-on: https://chromium-review.googlesource.com/1175036 Commit-Queue: Amirhossein Simjour <asimjour@chromium.org> Reviewed-by:
Ian Vollick <vollick@chromium.org> Reviewed-by:
Dominick Ng <dominickn@chromium.org> Cr-Commit-Position: refs/heads/master@{#584723}
-
Justin Cohen authored
Xcode 10 obscures compile failures when build output includes relative paths, and our xctest-build-sources fail to compile. Disable build system for now. Bug: 852522 Cq-Include-Trybots: luci.chromium.try:ios-simulator-full-configs;master.tryserver.chromium.mac:ios-simulator-cronet Change-Id: Ice0e5c7e6734270f804ae0f8a21cf5621ff13f58 Reviewed-on: https://chromium-review.googlesource.com/1182143Reviewed-by:
Olivier Robin <olivierrobin@chromium.org> Reviewed-by:
Rohit Rao <rohitrao@chromium.org> Commit-Queue: Justin Cohen <justincohen@chromium.org> Cr-Commit-Position: refs/heads/master@{#584722}
-
Gauthier Ambard authored
This CL updates the OpenInNewTab animation. Bug: 865863 Cq-Include-Trybots: luci.chromium.try:ios-simulator-full-configs;master.tryserver.chromium.mac:ios-simulator-cronet Change-Id: I1138a23bb96c9b81e50f247b5bf2b293df001e60 Reviewed-on: https://chromium-review.googlesource.com/1181128Reviewed-by:
Rohit Rao <rohitrao@chromium.org> Commit-Queue: Gauthier Ambard <gambard@chromium.org> Cr-Commit-Position: refs/heads/master@{#584721}
-
Florent Castelli authored
Intent: https://groups.google.com/a/chromium.org/d/msg/blink-dev/R_NKBRbDzhE/8gaX7HCjFgAJ Bug: 587453 Change-Id: Icb07af6d03e1249b2d9ef7dfc7c18abf33f8eb14 Reviewed-on: https://chromium-review.googlesource.com/1179898Reviewed-by:
Philip Jägenstedt <foolip@chromium.org> Reviewed-by:
Henrik Boström <hbos@chromium.org> Commit-Queue: Florent Castelli <orphis@chromium.org> Cr-Commit-Position: refs/heads/master@{#584720}
-
Ian Kilpatrick authored
This patch does three things: 1) Moves cloning the exclusion space in NGBlockLayoutAlgorithm::CreateConstraintSpaceForChild to later, as currently it get queried immediately after cloning, causing the exclusion space to regenerate its data. 2) Adds a bypasses for the cases where we are going to clear all floats and we can just return the maximum available area. 3) For the case where an element isn't clearing anything, just return LayoutUnit::Min(). Bug: 873799 Cq-Include-Trybots: luci.chromium.try:linux_layout_tests_layout_ng Change-Id: Ie04b80a774348303b248d725cf402751f7a651a1 Reviewed-on: https://chromium-review.googlesource.com/1181125Reviewed-by:
Emil A Eklund <eae@chromium.org> Reviewed-by:
Morten Stenshorne <mstensho@chromium.org> Commit-Queue: Emil A Eklund <eae@chromium.org> Cr-Commit-Position: refs/heads/master@{#584719}
-
Chromium WPT Sync authored
Using wpt-import in Chromium 0b5c2d1f. Build: https://ci.chromium.org/buildbot/chromium.infra.cron/wpt-importer/23113 Note to sheriffs: This CL imports external tests and adds expectations for those tests; if this CL is large and causes a few new failures, please fix the failures by adding new lines to TestExpectations rather than reverting. See: https://chromium.googlesource.com/chromium/src/+/master/docs/testing/web_platform_tests.md Directory owners for changes in this CL: chongz@chromium.org, yosin@chromium.org: external/wpt/input-events drott@chromium.org, kojii@chromium.org: external/wpt/css/css-fonts NOAUTOREVERT=true TBR=foolip No-Export: true Change-Id: Icc529a2deb3120c56f95e7b976c6b19f7009c940 Reviewed-on: https://chromium-review.googlesource.com/1183025 Commit-Queue: Blink WPT Bot <blink-w3c-test-autoroller@chromium.org> Reviewed-by:
Blink WPT Bot <blink-w3c-test-autoroller@chromium.org> Cr-Commit-Position: refs/heads/master@{#584718}
-
Aaron Leventhal authored
Autofill information should be provided via the renderer, and made available as a state that can be accessed via automation and ChromeVox. TBR: spang@chromium.org Bug: 865101 Cq-Include-Trybots: luci.chromium.try:closure_compilation Change-Id: Ifaff2013cd0315eafe2ff2900fbf40765d4863f5 Reviewed-on: https://chromium-review.googlesource.com/1176621 Commit-Queue: Aaron Leventhal <aleventhal@chromium.org> Reviewed-by:
Luke Halliwell <halliwell@chromium.org> Reviewed-by:
Devlin <rdevlin.cronin@chromium.org> Reviewed-by:
Dominic Mazzoni <dmazzoni@chromium.org> Reviewed-by:
David Tseng <dtseng@chromium.org> Reviewed-by:
Fabio Tirelo <ftirelo@chromium.org> Cr-Commit-Position: refs/heads/master@{#584717}
-
Balazs Engedy authored
Add a progress bar style (linear) activity indicator to be shown at the top of the dialog during certain steps of the WebAuthn UI flow. Bug: 849323 Change-Id: Ib7faa0528a2914d61ad8bed1e935fe9b083307c3 Reviewed-on: https://chromium-review.googlesource.com/1181906Reviewed-by:
Jun Choi <hongjunchoi@chromium.org> Commit-Queue: Balazs Engedy <engedy@chromium.org> Cr-Commit-Position: refs/heads/master@{#584716}
-
angle-chromium-autoroll authored
https://chromium.googlesource.com/angle/angle.git/+log/4836acc518ab..7a4f6b8c7d5e git log 4836acc518ab..7a4f6b8c7d5e --date=short --no-merges --format='%ad %ae %s' 2018-08-21 oetuaho@nvidia.com Fix resource init/teardown in FramebufferMultiviewTest Created with: gclient setdep -r src/third_party/angle@7a4f6b8c7d5e The AutoRoll server is located here: https://angle-chromium-roll.skia.org Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel TBR=cwallez@chromium.org Change-Id: I1efe38d66f6396dbb96a4817947d33fd6bff76d0 Reviewed-on: https://chromium-review.googlesource.com/1183142Reviewed-by:
angle-chromium-autoroll <angle-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Commit-Queue: angle-chromium-autoroll <angle-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#584715}
-
Peter Beverloo authored
The associated code moved to PersistentNotificationHandler, so let's make sure that the tests follow. More functionality will be built on top so this'll form a nice base. Change-Id: Ib40bfdfbc3efb4d63506e8e8791370a70fa8e3f9 Reviewed-on: https://chromium-review.googlesource.com/1181904Reviewed-by:
Tim Volodine <timvolodine@chromium.org> Commit-Queue: Peter Beverloo <peter@chromium.org> Cr-Commit-Position: refs/heads/master@{#584714}
-
Florent Castelli authored
Also moved the translation from default sdp semantics and its counter to the PeerConnection from the handler. Bug: 787254 Change-Id: Iea26f6500ebcdfdeb862596861580b21c9eba903 Reviewed-on: https://chromium-review.googlesource.com/1177754Reviewed-by:
Henrik Boström <hbos@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Commit-Queue: Florent Castelli <orphis@chromium.org> Cr-Commit-Position: refs/heads/master@{#584713}
-
Alexander Alekseev authored
Bug: 867711,867706 Change-Id: Ibbe9f7abda41b5f6d5a234ad78705b5e1dcf484a Reviewed-on: https://chromium-review.googlesource.com/1182948 Commit-Queue: Alexander Alekseev <alemate@chromium.org> Reviewed-by:
Wenzhao (Colin) Zang <wzang@chromium.org> Cr-Commit-Position: refs/heads/master@{#584712}
-