- 02 Feb, 2019 40 commits
-
-
Zhenyao Mo authored
We add a trace event when we present the video swapchain. These events includes presentation mode and pixel format. Based on existence of such events and their params, we can decide if the expected video frame presentation happened. Note that we found out that GetFrameStatisticsMedia is flaky and this is out of our control. So if a test fails because of this, we repeat it a couple times. BUG=867136 TEST=GPU bots R=kbr@chromium.org,piman@chromium.org,sunnyps@chromium.org Change-Id: I1f0972f2887a72ad46f533edda274ffc7608790b Reviewed-on: https://chromium-review.googlesource.com/c/1441374Reviewed-by:
Sunny Sachanandani <sunnyps@chromium.org> Reviewed-by:
Antoine Labour <piman@chromium.org> Reviewed-by:
Kenneth Russell <kbr@chromium.org> Commit-Queue: Zhenyao Mo <zmo@chromium.org> Cr-Commit-Position: refs/heads/master@{#628563}
-
Tommy Steimel authored
This reverts commit 88e66b00. Reason for revert: causing compilation error on WebKit Linux Trusty MSAN: https://ci.chromium.org/p/chromium/builders/luci.chromium.ci/WebKit%20Linux%20Trusty%20MSAN/12526 Original change's description: > Add dav1d decoder and build configurations. > > We're planning to experiment with av1 decoders, so this change > adds support for dav1d in Chromium. > > This sets up the dav1d repo per modern 3rd party style: It's a > read-only clone of dav1d's GitHub mirror with the build config > and helper scripts living in the main Chromium src.git repo. > Due to this configuration, no local patches can be made. > > Two helper scripts have been added "generate_configs.py" and > "generate_source.py". The former requires a few dependencies > spelled out in the README.chromium. The latter works simply > by globbing some source patterns into GN variables. > > Thus far it seems all posix configurations (mac, linux, CrOS) > can share the same config, so only support linux and windows > in x86, x64 configurations has been added. > > ARM support is not enabled yet since we haven't enabled libaom > for ARM and similarly dav1d is lacking much of the SIMD code. > > To wire everything up this also: > - Adds a media::VideoDecoder based implementation and unit test. > - Adds a disabled-by-default Dav1dVideoDecoder base::Feature. > > Bug: 924370 > Change-Id: I64ef6cdf442d55f43c1782ee22289e5a2305d9bd > Reviewed-on: https://chromium-review.googlesource.com/c/1303406 > Commit-Queue: Dale Curtis <dalecurtis@chromium.org> > Reviewed-by: John Abd-El-Malek <jam@chromium.org> > Reviewed-by: Frank Liberato <liberato@chromium.org> > Reviewed-by: Max Moroz <mmoroz@chromium.org> > Cr-Commit-Position: refs/heads/master@{#628557} TBR=dalecurtis@chromium.org,jam@chromium.org,liberato@chromium.org,mmoroz@chromium.org,dominic@google.com Change-Id: Iae8c2e93ab0dc5aff6861ddff0cbbef6d90cab93 No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: 924370 Reviewed-on: https://chromium-review.googlesource.com/c/1450540Reviewed-by:
Tommy Steimel <steimel@chromium.org> Commit-Queue: Tommy Steimel <steimel@chromium.org> Cr-Commit-Position: refs/heads/master@{#628562}
-
chromium-autoroll authored
https://pdfium.googlesource.com/pdfium.git/+log/33cc9c60892a..12eacc8a19cf git log 33cc9c60892a..12eacc8a19cf --date=short --no-merges --format='%ad %ae %s' 2019-02-02 tsepez@chromium.org Copy m_NewAddedNodes before iterating over it. Created with: gclient setdep -r src/third_party/pdfium@12eacc8a19cf The AutoRoll server is located here: https://autoroll.skia.org/r/pdfium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. BUG=chromium:927644 TBR=dsinclair@chromium.org Change-Id: I2352dd7664413bc5fe985ae3221b35d2cd037b38 Reviewed-on: https://chromium-review.googlesource.com/c/1450734Reviewed-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@{#628561}
-
Ken Buchanan authored
For Web Authentication we would like to determine the prevalance of BLE capabilities on clients to understand whether BLE security keys and caBLE devices are viable for those users. This re-enables the UMA on OSX to determine Bluetooth availability and capabilities, and adds similar metrics to Windows and Chrome OS. Bug: 907279 Change-Id: I8da9165bca5177cb08176cc4ce812340456a97d4 Reviewed-on: https://chromium-review.googlesource.com/c/1437721 Commit-Queue: Ken Buchanan <kenrb@chromium.org> Reviewed-by:
Robert Sesek <rsesek@chromium.org> Reviewed-by:
Ilya Sherman <isherman@chromium.org> Cr-Commit-Position: refs/heads/master@{#628560}
-
Stephen Barber authored
BUG=chromium:926292 TEST=none Change-Id: I7f96c258d77482c2e431cbdea508939f070da4a7 Reviewed-on: https://chromium-review.googlesource.com/c/1444191Reviewed-by:
Xiaochu Liu <xiaochu@chromium.org> Reviewed-by:
Joshua Pawlicki <waffles@chromium.org> Commit-Queue: Stephen Barber <smbarber@chromium.org> Cr-Commit-Position: refs/heads/master@{#628559}
-
Jazz Xu authored
[Media Controls] Give focus back to last focused item after interact with scrollbar in overflow menu After interacting with scrollbar, the popup menu gain focus, which makes user unable to traverse option using "up" or "down" key in popup menu (They have to hover the menu again to enable it). This CL fixed the issue by switching focus back to last focused item whenever the popup menu gains focus. Bug: 922360 Change-Id: I0809ff8b0c11927814ad83615fc39729d92ad053 Reviewed-on: https://chromium-review.googlesource.com/c/1416820 Commit-Queue: Jazz Xu <jazzhsu@chromium.org> Reviewed-by:
Tommy Steimel <steimel@chromium.org> Cr-Commit-Position: refs/heads/master@{#628558}
-
Dale Curtis authored
We're planning to experiment with av1 decoders, so this change adds support for dav1d in Chromium. This sets up the dav1d repo per modern 3rd party style: It's a read-only clone of dav1d's GitHub mirror with the build config and helper scripts living in the main Chromium src.git repo. Due to this configuration, no local patches can be made. Two helper scripts have been added "generate_configs.py" and "generate_source.py". The former requires a few dependencies spelled out in the README.chromium. The latter works simply by globbing some source patterns into GN variables. Thus far it seems all posix configurations (mac, linux, CrOS) can share the same config, so only support linux and windows in x86, x64 configurations has been added. ARM support is not enabled yet since we haven't enabled libaom for ARM and similarly dav1d is lacking much of the SIMD code. To wire everything up this also: - Adds a media::VideoDecoder based implementation and unit test. - Adds a disabled-by-default Dav1dVideoDecoder base::Feature. Bug: 924370 Change-Id: I64ef6cdf442d55f43c1782ee22289e5a2305d9bd Reviewed-on: https://chromium-review.googlesource.com/c/1303406 Commit-Queue: Dale Curtis <dalecurtis@chromium.org> Reviewed-by:
John Abd-El-Malek <jam@chromium.org> Reviewed-by:
Frank Liberato <liberato@chromium.org> Reviewed-by:
Max Moroz <mmoroz@chromium.org> Cr-Commit-Position: refs/heads/master@{#628557}
-
David Black authored
Previously we used a DialogClientView which supported handling of the ESCAPE key to close the widget. Now, we're switching to the lighter weight ClientView which necessitates us adding ESCAPE support ourselves. Bug: b:123607402 Change-Id: I64c1fe1cd38f6f9daafc993956c10f143fa5a4f4 Reviewed-on: https://chromium-review.googlesource.com/c/1446405 Commit-Queue: David Black <dmblack@google.com> Reviewed-by:
Xiaohui Chen <xiaohuic@chromium.org> Cr-Commit-Position: refs/heads/master@{#628556}
-
Erik Anderson authored
The SSLUITestWithExtendedReporting.TestBrokenHTTPSReportingCloseTab test is failing on official builds because the ReportCertificateErrors sending threshold is configured to be less than 1.0 (100%) for the stable channel. This change forces it to 1.0 to ensure the test passes regardless of the value provided by the experimentation server. Bug: 795820 Change-Id: Icbcb839745be7e67d15e2ce998d943d37369e23b Reviewed-on: https://chromium-review.googlesource.com/c/1450239Reviewed-by:
Emily Stark <estark@chromium.org> Commit-Queue: Erik Anderson <Erik.Anderson@microsoft.com> Cr-Commit-Position: refs/heads/master@{#628555}
-
Wez authored
Tear-down any existing View-related resources (e.g. Aura window, focus controller etc) if a CreateView() request is received while a View is already active for this Frame. Bug: 920490 Change-Id: Iec4f7d393e33d583bc7dc8caf0bbea5f4ae11f6d Reviewed-on: https://chromium-review.googlesource.com/c/1423901 Commit-Queue: Wez <wez@chromium.org> Reviewed-by:
Kevin Marshall <kmarshall@chromium.org> Cr-Commit-Position: refs/heads/master@{#628554}
-
Michael Giuffrida authored
The Web style guide's JS section should link to the ES supported features doc, and vice versa, so that both are discoverable. Also gives the ES Support page a proper title: "ECMAScript Features in Chromium" Bug: None Change-Id: I4af3471a4eba1f7377826a35c08cbb8841db411d Reviewed-on: https://chromium-review.googlesource.com/c/1450586 Commit-Queue: Michael Giuffrida <michaelpg@chromium.org> Reviewed-by:
Demetrios Papadopoulos <dpapad@chromium.org> Auto-Submit: Michael Giuffrida <michaelpg@chromium.org> Cr-Commit-Position: refs/heads/master@{#628553}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/b4138ddf946e..457442a6956e Created with: gclient setdep -r src-internal@457442a6956e The AutoRoll server is located here: https://autoroll-internal.skia.org/r/src-internal-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. BUG=chromium:905792 TBR=mmoss@chromium.org Change-Id: Ibac5ca6902a24ba009be5632865fc16a6df96e85 Reviewed-on: https://chromium-review.googlesource.com/c/1450739Reviewed-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@{#628552}
-
Amos Lim authored
Move notification_data_conversions* from content/renderer/notifications to third_party/blink/public/common and third_party/blink/common. Since notification_data_conversions converts data in blink side only, it no longer needs to be placed in content. Bug: 919396 Change-Id: I184d17abb4ea65390603870760c43b5bcc5063e1 Reviewed-on: https://chromium-review.googlesource.com/c/1447398Reviewed-by:
Kentaro Hara <haraken@chromium.org> Reviewed-by:
Peter Beverloo <peter@chromium.org> Commit-Queue: Amos Lim <eui-sang.lim@samsung.com> Cr-Commit-Position: refs/heads/master@{#628551}
-
chromium-autoroll authored
https://chromium.googlesource.com/angle/angle.git/+log/91d469aae063..3d6e3004f037 git log 91d469aae063..3d6e3004f037 --date=short --no-merges --format='%ad %ae %s' 2019-02-02 ianelliott@google.com Implement EGL_ANDROID_recordable for Vulkan back-end. 2019-02-01 jonahr@google.com Fix unnecessary copy of for loop variables in ANGLE 2019-02-01 syoussefi@chromium.org Use env variable to select default backend 2019-02-01 jmadill@chromium.org Enable -Wextra-semi and -Wextra-semi-stmt. Created with: gclient setdep -r src/third_party/angle@3d6e3004f037 The AutoRoll server is located here: https://autoroll.skia.org/r/angle-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel BUG=chromium:926235 TBR=cwallez@chromium.org Change-Id: I1e6412420ea86830b3aeca7a6be29c14fa8cab2a Reviewed-on: https://chromium-review.googlesource.com/c/1450735Reviewed-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@{#628550}
-
Stephen Martinis authored
All instances are set to true, so this flag isn't really needed. Bug: 883150 Change-Id: I6313be44075003ab28801d450daacf25d6bca4b0 Reviewed-on: https://chromium-review.googlesource.com/c/1449010 Commit-Queue: Stephen Martinis <martiniss@chromium.org> Reviewed-by:
John Budorick <jbudorick@chromium.org> Reviewed-by:
Caleb Rouleau <crouleau@chromium.org> Cr-Commit-Position: refs/heads/master@{#628549}
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/26ccfcc96f98..dbb1fe52480b git log 26ccfcc96f98..dbb1fe52480b --date=short --no-merges --format='%ad %ae %s' 2019-02-01 recipe-roller@chromium.org Roll recipe dependencies (trivial). 2019-02-01 michaelludwig@google.com Revert "Narrow clear-as-draw workaround on D3D11 ANGLE" 2019-02-01 robertphillips@google.com Add isTextureable parameter to GrContextThreadSafeProxy::createCharacterization 2019-02-01 brianosman@google.com Remove SkColorSpaceTransferFn 2019-02-01 kjlubick@google.com Revert "Revert "make third_party() static libraries"" Created with: gclient setdep -r src/third_party/skia@dbb1fe52480b The AutoRoll server is located here: https://autoroll.skia.org/r/skia-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux-blink-rel;luci.chromium.try:linux-chromeos-compile-dbg;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel TBR=borenet@chromium.org Change-Id: I531b0ef607d1c532222e6ccaa69a86b12f348664 Reviewed-on: https://chromium-review.googlesource.com/c/1450732Reviewed-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@{#628548}
-
Chromium WPT Sync authored
Using wpt-import in Chromium b6dc46a8. With Chromium commits locally applied on WPT: c64e59c2 "Deflake RTCPeerConnection-track-stats.https.html." 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 NOAUTOREVERT=true TBR=raphael.kubo.da.costa No-Export: true Change-Id: I2ae9f5a6bae9ba78e7635ab8c88328b504f82aa9 Reviewed-on: https://chromium-review.googlesource.com/c/1450706Reviewed-by:
WPT Autoroller <wpt-autoroller@chops-service-accounts.iam.gserviceaccount.com> Commit-Queue: WPT Autoroller <wpt-autoroller@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#628547}
-
Marijn Kruisselbrink authored
No need to define a second nearly identical interface when we can just use the mojom version directly. Bug: 611938 Change-Id: I59bffe4fe1812ec660b6984951d0b1009723e92a Reviewed-on: https://chromium-review.googlesource.com/c/1450695 Commit-Queue: Marijn Kruisselbrink <mek@chromium.org> Commit-Queue: Victor Costan <pwnall@chromium.org> Reviewed-by:
Victor Costan <pwnall@chromium.org> Cr-Commit-Position: refs/heads/master@{#628546}
-
Nigel Tao authored
A previous commit mistakenly conflated "ready" (an ARC++ concept) with "installed" (an App Service concept), or equivalently (in the App Service model), "ready to run". As a consequence, with the App Service enabled, ARC++ apps weren't shown in the app list UI for 5 or more seconds after log-in, as it waiting for the ARC++ connection to become "ready". This did not match the behavior with the App Service disabled. The App Service doesn't actually have to worry about ARC++'s readiness. For example, ArcApps::Launch (in App Service code) calls arc::LaunchApp in (ARC++ code), which already handles the "!app_info->ready" case: https://cs.chromium.org/chromium/src/chrome/browser/ui/app_list/arc/arc_app_utils.cc?q=app_info-%3Eready&l=277 BUG=826982 Change-Id: I79f8adc7a3c17dfa700e572494dc0a9e05b6f429 Reviewed-on: https://chromium-review.googlesource.com/c/1449431Reviewed-by:
Dominick Ng <dominickn@chromium.org> Commit-Queue: Nigel Tao <nigeltao@chromium.org> Cr-Commit-Position: refs/heads/master@{#628545}
-
Takuto Ikuta authored
This CL introduce mojom-forward.h and mojom-import-headers.h mojo-forward.h is introduced for forward enum/class/struct declaration with some using aliases. I replaced some mojom.h includes with mojom-foward.h in mojom.h except files using inlined struct. mojom-import-headers.h is used to include all mojom.h of all (indirectly) imported header for mojo's cc files. Bug: 922875 Change-Id: I386528b1059516dc1d52b18a4778a79a2289c063 Reviewed-on: https://chromium-review.googlesource.com/c/1438975 Commit-Queue: Takuto Ikuta <tikuta@chromium.org> Reviewed-by:
Ken Rockot <rockot@google.com> Cr-Commit-Position: refs/heads/master@{#628544}
-
bsheedy authored
Makes the WebXR perf tests use the forked samples in third_party instead of the older version pulled in via DEPS. Also makes sure that the "Enter XR" button is present before attempting to click on it since it can now appear after page load is complete. Bug: 923149 Change-Id: I225704688f827e3b8863bf064f6bfa9105c7d0c5 Reviewed-on: https://chromium-review.googlesource.com/c/1450429 Commit-Queue: Brian Sheedy <bsheedy@chromium.org> Auto-Submit: Brian Sheedy <bsheedy@chromium.org> Reviewed-by:
Klaus Weidner <klausw@chromium.org> Cr-Commit-Position: refs/heads/master@{#628543}
-
Collin Baker authored
Previously, if an early return was hit in SendDamagedRects(), the layer's mask's damaged rects would not be sent. This moves the SendDamagedRects() call on the layer mask to above the early returns. Change-Id: Ic1ef2e96085140e57a02867bb680f68b8ee2f9bc Reviewed-on: https://chromium-review.googlesource.com/c/1450707Reviewed-by:
Antoine Labour <piman@chromium.org> Commit-Queue: Collin Baker <collinbaker@chromium.org> Cr-Commit-Position: refs/heads/master@{#628542}
-
Peter Kasting authored
This is simpler and less error-prone, and will allow moving the app menu observer access point to the app menu button (in a future CL). Bug: none Change-Id: I17eaf8d3374ae3d8bf1b078631f93c8a6c2e88f7 Reviewed-on: https://chromium-review.googlesource.com/c/1447323 Commit-Queue: Peter Kasting <pkasting@chromium.org> Reviewed-by:
Scott Violet <sky@chromium.org> Auto-Submit: Peter Kasting <pkasting@chromium.org> Cr-Commit-Position: refs/heads/master@{#628541}
-
v8-ci-autoroll-builder authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/d5b02673..2205f634 Please follow these instructions for assigning/CC'ing issues: https://github.com/v8/v8/wiki/Triaging%20issues 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;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel;luci.chromium.try:android_optional_gpu_tests_rel TBR=hablich@chromium.org,v8-waterfall-sheriff@grotations.appspotmail.com Change-Id: I29f2d600ffe8471bd67443f370dd8a82f142ea85 Reviewed-on: https://chromium-review.googlesource.com/c/1450705Reviewed-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@{#628540}
-
Kevin Strohbehn authored
Bug: 908621, 916724 Change-Id: Ib08120d4f98081d4c5317a481e282c0c06d25e98 Reviewed-on: https://chromium-review.googlesource.com/c/1449045 Commit-Queue: Kevin Strohbehn <ginko@google.com> Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Cr-Commit-Position: refs/heads/master@{#628539}
-
Anne Lim authored
This is a reland (with modifications to accommodate recent changes) of https://chromium-review.googlesource.com/c/chromium/src/+/1316666 The V2 of StrikeDatabase is now used. Bug: 884817 Change-Id: I13cf973bef9d0f48f218e8e76ad30e365e3617ec Reviewed-on: https://chromium-review.googlesource.com/c/1446665 Commit-Queue: Anne Lim <annelim@google.com> Reviewed-by:
Evan Stade <estade@chromium.org> Reviewed-by:
Jared Saul <jsaul@google.com> Cr-Commit-Position: refs/heads/master@{#628538}
-
Eugene But authored
GetPendingItem can return null inside webView:didCommitNavigation: This is due to crbug.com/925304, which allows to discard pending items by another navigations prematurely. If pending item is null, it means that Navigation Manager will not commit that item and WebStateObservers can crash because they expect to have at least one committed item. This CL leaves navigation as "uncommitted" if there was no pending item inside webView:didCommitNavigation: Original CL: https://chromium-review.googlesource.com/c/1448683 Bug: 925304 Change-Id: I7852da807d183e87d1fd029d75ed63cde2287d7b Reviewed-on: https://chromium-review.googlesource.com/c/1450300 Commit-Queue: Eugene But <eugenebut@chromium.org> Reviewed-by:
Justin Cohen <justincohen@chromium.org> Cr-Commit-Position: refs/heads/master@{#628537}
-
dpapad authored
Replace i18n-values with $i18n{} mechanism. Also remove unnecessary tabs.css dependency. Bug: 677338 Change-Id: I6dbddf8820b10d2c27441d51ab119bcbc7f04ec7 Reviewed-on: https://chromium-review.googlesource.com/c/1450019 Auto-Submit: Demetrios Papadopoulos <dpapad@chromium.org> Reviewed-by:
Joshua Bell <jsbell@chromium.org> Reviewed-by:
Matt Falkenhagen <falken@chromium.org> Commit-Queue: Matt Falkenhagen <falken@chromium.org> Cr-Commit-Position: refs/heads/master@{#628536}
-
chromium-autoroll authored
https://chromium.googlesource.com/chromiumos/chromite.git/+log/da2bdf0382f7..45c7f2def3e9 git log da2bdf0382f7..45c7f2def3e9 --date=short --no-merges --format='%ad %ae %s' 2019-02-01 bmgordon@chromium.org cros_flash.py: Only require chroot for ssh destination 2019-02-01 cjmcdonald@chromium.org goma_util: Set default goma PLATFORM to 'chromeos' and force update. 2019-02-01 nednguyen@google.com portage_util: Add FindEbuildsForPackages that find ebuilds for many packages 2019-02-01 saklein@chromium.org cros lint: skip generated protobuf files 2019-02-01 lamontjones@chromium.org signing: finish SignImage 2019-02-01 lamontjones@chromium.org kernel_cmdline: Allow searching commandline arg list by string (arg). 2019-02-01 evanhernandez@chromium.org cros_branch_unittest: Add functional test skeleton. 2019-02-01 evanhernandez@chromium.org repo_util: Allow passing --repo_branch to `repo init`. 2019-02-01 evanhernandez@chromium.org cros_branch_unittest: Reinforce test data. 2019-02-01 lannm@chromium.org chromeos_config: Increase full builder timeout to 6 hours Created with: gclient setdep -r src/third_party/chromite@45c7f2def3e9 The AutoRoll server is located here: https://autoroll.skia.org/r/chromite-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. TBR=chrome-os-gardeners@chromium.org Change-Id: I33aeba9164191720766fdce623e508f63ef79915 Reviewed-on: https://chromium-review.googlesource.com/c/1450733Reviewed-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@{#628535}
-
John Lee authored
This is to support being able to set a NTP background without requiring a network call to load collections and album photos. Bug: 924176 Change-Id: Ie19043170e144fbf03e4b7f9dbcffcf106a2107b Reviewed-on: https://chromium-review.googlesource.com/c/1449103 Commit-Queue: John Lee <johntlee@chromium.org> Reviewed-by:
Kyle Milka <kmilka@chromium.org> Cr-Commit-Position: refs/heads/master@{#628534}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/4fa143d003ed..b4138ddf946e Created with: gclient setdep -r src-internal@b4138ddf946e The AutoRoll server is located here: https://autoroll-internal.skia.org/r/src-internal-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. TBR=mmoss@chromium.org Change-Id: I9d6ebfbab716cd27b65753ecea193cea6db993c5 Reviewed-on: https://chromium-review.googlesource.com/c/1450637Reviewed-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@{#628533}
-
Peter Kasting authored
This is used to plumb information to the menu controller, which sets alerts on items during OpenMenuImpl(). This is overly complex. The functionality is only used by the app menu, and we can tell it to set these alerts on items as they're added. This allows setting the alert state during menu construction rather than when the menu is run. This will make it possible (in a future CL) to simplify how the reopen tab promo code observes the app menu button. Bug: none Change-Id: I45d7edfabcde3ce2b01f7b50d00d7568e9d41cb1 Reviewed-on: https://chromium-review.googlesource.com/c/1447269 Commit-Queue: Peter Kasting <pkasting@chromium.org> Reviewed-by:
Scott Violet <sky@chromium.org> Auto-Submit: Peter Kasting <pkasting@chromium.org> Cr-Commit-Position: refs/heads/master@{#628532}
-
Kristi Park authored
Remove the now defunct configData.isDarkModeEnabled references. Bug: 927955 Change-Id: Iba9c557eba265d1fa5f5eeaeeff5a2382bfbc26e Reviewed-on: https://chromium-review.googlesource.com/c/1450756 Commit-Queue: Kristi Park <kristipark@chromium.org> Reviewed-by:
Kyle Milka <kmilka@chromium.org> Cr-Commit-Position: refs/heads/master@{#628531}
-
chromium-autoroll authored
The AutoRoll server is located here: https://autoroll.skia.org/r/fuchsia-sdk-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chromium.try:fuchsia-arm64-cast;luci.chromium.try:fuchsia-x64-cast TBR=cr-fuchsia+bot@chromium.org Change-Id: Id64560e08be4ec8e4a4f36bdc57e39777afb353d Reviewed-on: https://chromium-review.googlesource.com/c/1450636Reviewed-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@{#628530}
-
chromium-autoroll authored
https://swiftshader.googlesource.com/SwiftShader.git/+log/debaacab10b5..cd610c9a9dbc git log debaacab10b5..cd610c9a9dbc --date=short --no-merges --format='%ad %ae %s' 2019-02-01 sugoi@google.com CommandPool reset and trim Created with: gclient setdep -r src/third_party/swiftshader@cd610c9a9dbc The AutoRoll server is located here: https://autoroll.skia.org/r/swiftshader-chromium-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff, who should be CC'd on the roll, and stop the roller if necessary. CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel;luci.chromium.try:linux_optional_gpu_tests_rel;luci.chromium.try:mac_optional_gpu_tests_rel;luci.chromium.try:win_optional_gpu_tests_rel TBR=swiftshader-team+autoroll@chromium.org Change-Id: Ib6d92b513ff33881aff02e27b1553fae444b9bf4 Reviewed-on: https://chromium-review.googlesource.com/c/1450635Reviewed-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@{#628529}
-
Joel Einbinder authored
This reverts commit 9a60a25d. Reason for revert: This broke a lot of focus related logic in the Elements panel Bug: 920518 Original change's description: > DevTools: Fix focus when selecting to the left of treeitems > > The mousedown listener in ElementsTreeOutline was moving focus, but > not consuming the event. The event then propagated to the treeoutline > element itself, which stole focus. > > Change-Id: I2de2001175f4029cd94880297c460ff4c90b845a > Reviewed-on: https://chromium-review.googlesource.com/c/1387688 > Reviewed-by: Pavel Feldman <pfeldman@chromium.org> > Commit-Queue: Joel Einbinder <einbinder@chromium.org> > Cr-Commit-Position: refs/heads/master@{#618423} TBR=pfeldman@chromium.org,einbinder@chromium.org # Not skipping CQ checks because original CL landed > 1 day ago. Change-Id: I1407655b9a6ca03a2f110f87b7b9d2f98795ef53 Reviewed-on: https://chromium-review.googlesource.com/c/1450512Reviewed-by:
Joel Einbinder <einbinder@chromium.org> Commit-Queue: Joel Einbinder <einbinder@chromium.org> Cr-Commit-Position: refs/heads/master@{#628528}
-
Victor Costan authored
Googletest is (at last) converging with industry-standard terminology [1]. We previously called test suites "test cases", which was rather confusing for folks coming from any other testing framework. Chrome now has a googltest version that supports _TEST_SUITE_ macros instead of _TEST_CASE_, so this CL cleans up some of the outdated usage. [1] https://github.com/google/googletest/blob/master/googletest/docs/primer.md#beware-of-the-nomenclature This CL was uploaded by git cl split. TBR=battre@chromium.org R=battre@chromium.org Bug: 925652 Change-Id: Ibe9c02c27b69efa50cba51922b498bed6a411d5e Reviewed-on: https://chromium-review.googlesource.com/c/1438378Reviewed-by:
Victor Costan <pwnall@chromium.org> Commit-Queue: Victor Costan <pwnall@chromium.org> Cr-Commit-Position: refs/heads/master@{#628527}
-
Stephen Nusko authored
This fixes the roll from the fix inside prefetto code for crbug/839074. This allows us to remove the code referenced there since perfetto now correctly uses the task runner as required. Bug: crbug/839074 Change-Id: I44c3f9413e6b49a933db140ff1a00d5dc9c1e009 Reviewed-on: https://chromium-review.googlesource.com/c/1449675Reviewed-by:
Sami Kyöstilä <skyostil@chromium.org> Reviewed-by:
Primiano Tucci <primiano@chromium.org> Reviewed-by:
Eric Seckler <eseckler@chromium.org> Commit-Queue: Primiano Tucci <primiano@chromium.org> Auto-Submit: Stephen Nusko <nuskos@chromium.org> Cr-Commit-Position: refs/heads/master@{#628526}
-
Sidney San Martín authored
Bug: 871870 Change-Id: Ia5d7ac9082566bf201ac059987651beb03ce6108 Reviewed-on: https://chromium-review.googlesource.com/c/1450421 Auto-Submit: Sidney San Martín <sdy@chromium.org> Reviewed-by:
Avi Drissman <avi@chromium.org> Commit-Queue: Avi Drissman <avi@chromium.org> Cr-Commit-Position: refs/heads/master@{#628525}
-
Wez authored
Update the functions we register as FIDL error handlers to use : - ZX_LOG(FATAL, status) where we never expect to lose connectivity, e.g. for connections to system services such as the Netstack. We typically follow these with an indication of what disconnected, e.g: ZX_LOG(FATAL, status) << " Netstack disconnected."; - ZX_LOG_IF(FATAL, status != ZX_ERR_PEER_CLOSED, status) where we are providing service to a single peer that may disconnect from us at any time, where other status values are unexpected. - ZX_LOG(ERROR, status) where we never expect to lose connectivity, but are serving multiple peers, so must not simply crash the process. - ZX_LOG_IF(ERROR, status != ZX_ERR_PEER_CLOSED, status) where we are providing service to multiple peers that we expect may disconnect, to verify that they do so gracefully. We also update FIDL error handlers in some test suites: - EXPECT_EQ(status, ZX_ERR_PEER_CLOSED) where the test actively expects that the FIDL channel will be disconnected gracefully. - ZX_LOG(ERROR, status) where the test does not expect FIDL errors. Bug: 927400 Change-Id: I10fef90778e58f2aedadb806f857da00aace96aa Reviewed-on: https://chromium-review.googlesource.com/c/1448796 Auto-Submit: Wez <wez@chromium.org> Reviewed-by:
Sergey Ulanov <sergeyu@chromium.org> Commit-Queue: Wez <wez@chromium.org> Cr-Commit-Position: refs/heads/master@{#628524}
-