- 21 Aug, 2018 40 commits
-
-
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}
-
Yuzu Saijo authored
This is a reland of 37bc2e24 *** SHERIFFS: if there is any failing memory leak tests, please file bug & disable them in https://cs.chromium.org/chromium/src/tools/perf/expectations.config?q=tools/perf/expectations.config instead of reverting this CL *** Original change's description: > Reland introduce sharding to memory.leak_detection > > This CL fixes a bug in test_suites.pyl and introduces sharding to memory.leak_detection benchmark. > Original CL: https://chromium-review.googlesource.com/c/chromium/src/+/1180788 > TBR=nednguyen@chromium.org,dpranke@chromium.org > > Cq-Include-Trybots: master.tryserver.chromium.perf:obbs_fyi > Change-Id: Ie1a3be0b3b47a9feb57d77a779a6df8cf8257a3c > Reviewed-on: https://chromium-review.googlesource.com/1182714 > Reviewed-by: Yuzu Saijo <yuzus@chromium.org> > Commit-Queue: Yuzu Saijo <yuzus@chromium.org> > Cr-Commit-Position: refs/heads/master@{#584644} Change-Id: Ib54d75d47e39835a17d00834d468642d8b6bac2a Cq-Include-Trybots: master.tryserver.chromium.perf:obbs_fyi TBR=yuzus@chromium.org, dpranke@chromium.org NOTRY=true # reland Change-Id: Ib54d75d47e39835a17d00834d468642d8b6bac2a Reviewed-on: https://chromium-review.googlesource.com/1183241 Commit-Queue: Ned Nguyen <nednguyen@google.com> Reviewed-by:
Ned Nguyen <nednguyen@google.com> Cr-Commit-Position: refs/heads/master@{#584711}
-
Balazs Engedy authored
Bug: 849323 Change-Id: I3319e91af5137dacd6faf987949218332ca829b7 TBR: hongjunchoi@chromium.org Reviewed-on: https://chromium-review.googlesource.com/1183198 Commit-Queue: Balazs Engedy <engedy@chromium.org> Reviewed-by:
Balazs Engedy <engedy@chromium.org> Cr-Commit-Position: refs/heads/master@{#584710}
-
Eric Seckler authored
Embedders can register a TaskExecutor to handle execution of Tasks posted via the post_task.h API with specific extension TaskTraits. The TaskScheduler becomes the default TaskExecutor. Related patch introducing TaskTraits extensions: https://chromium-review.googlesource.com/c/chromium/src/+/1169179 Design doc: https://docs.google.com/document/d/1SGy9VTXUwyXEX_yBZ0ukFAnS8B0hDeMUJD-1iALaE-Q/edit?usp=sharing TBR=pasko@chromium.org,primiano@chromium.org,imcheng@chromium.org,dominickn@chromium.org Bug: 867421 Change-Id: I4083848431cca17aab3b6a411170ea32e5503776 Reviewed-on: https://chromium-review.googlesource.com/1175829Reviewed-by:
Dominick Ng <dominickn@chromium.org> Reviewed-by:
François Doray <fdoray@chromium.org> Reviewed-by:
Gabriel Charette <gab@chromium.org> Reviewed-by:
Sami Kyöstilä <skyostil@chromium.org> Commit-Queue: Eric Seckler <eseckler@chromium.org> Cr-Commit-Position: refs/heads/master@{#584709}
-
Kunihiko Sakamoto authored
Before this patch, navigation to a signed exchange failed with ERR_INVALID_SIGNED_EXCHANGE if an error occurred in the cert / signature verification steps. After this patch, signed exchange errors that happened after the header parsing will cause a redirect to the inner URL of the exchange. Bug: 874323 Change-Id: Ie494df2f69383dcb3e70145d8c8e9b72616aed80 Reviewed-on: https://chromium-review.googlesource.com/1177287 Commit-Queue: Kunihiko Sakamoto <ksakamoto@chromium.org> Reviewed-by:
Kinuko Yasuda <kinuko@chromium.org> Reviewed-by:
Kouhei Ueno <kouhei@chromium.org> Cr-Commit-Position: refs/heads/master@{#584708}
-
Anders Carlsson authored
As part of an effort to make all video codecs in WebRTC injectable and optional, migrate an encoder factory that inherited from the old class to the new one. In the new class, the unique_ptr is returned from the factory method, so let the factory keep a raw pointer and let the encoder tell the factory to reset it when released. Bug: webrtc:7925 Change-Id: Ia058a7f09a2960b47918e441adc06ea7328aaa4c Reviewed-on: https://chromium-review.googlesource.com/1179832 Commit-Queue: Anders Carlsson <andersc@chromium.org> Reviewed-by:
Joe Downing <joedow@chromium.org> Cr-Commit-Position: refs/heads/master@{#584707}
-
Grzegorz Gacek authored
Fix use-after-free which occured when a menu contained an item closing it on a mouse press event. In such case MenuController object was freed during a call of its OnMousePressed() but it continued to modify its member variables. Bug: 871205 Change-Id: Ic2a5dd3a745da6b0c1ef7a87f2cb498cc1a97234 Reviewed-on: https://chromium-review.googlesource.com/1163617Reviewed-by:
Trent Apted <tapted@chromium.org> Commit-Queue: Trent Apted <tapted@chromium.org> Cr-Commit-Position: refs/heads/master@{#584706}
-
David Roger authored
This metric is recorded at startup, and tracks the state of the privacy settings. Bug: 871267 Change-Id: I5c9b53e732d160912c387b770148996f52115dcc Reviewed-on: https://chromium-review.googlesource.com/1179893 Commit-Queue: David Roger <droger@chromium.org> Reviewed-by:
Thomas Tangl <tangltom@chromium.org> Reviewed-by:
Ilya Sherman <isherman@chromium.org> Cr-Commit-Position: refs/heads/master@{#584705}
-
skia-chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/ca0cdef06349..f13375c925bf git log ca0cdef06349..f13375c925bf --date=short --no-merges --format='%ad %ae %s' 2018-08-21 angle-skia-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com Roll third_party/externals/angle2 d20e80b840e4..7a4f6b8c7d5e (2 commits) Created with: gclient setdep -r src/third_party/skia@f13375c925bf 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: I41320545dcd1133a9aff353d61ed3ee395076589 Reviewed-on: https://chromium-review.googlesource.com/1183141Reviewed-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@{#584704}
-