- 18 Jun, 2018 40 commits
-
-
sczs authored
Also changes some BookmarksTestCase instance methods to class methods to be shared amongst test cases. Bug: 853348 Cq-Include-Trybots: luci.chromium.try:ios-simulator-full-configs;master.tryserver.chromium.mac:ios-simulator-cronet Change-Id: I99f57091ff0a05a9caa90a60074c0da77cf68920 Reviewed-on: https://chromium-review.googlesource.com/1103610 Commit-Queue: Sergio Collazos <sczs@chromium.org> Reviewed-by:
Justin Cohen <justincohen@chromium.org> Cr-Commit-Position: refs/heads/master@{#568078}
-
Owen Min authored
Add VLOG for 1) Token status 2) Enrollment process 3) Policy fetch process (not include the one sent after cache loading) 4) Policy cache load request. The log will be enabled by --vmodule=machine_level_user_cloud_policy_*=1 Bug: 853364 Change-Id: I8fc6a210513bccd55e3b5d4388969ffc713ce27f Reviewed-on: https://chromium-review.googlesource.com/1103303 Commit-Queue: Owen Min <zmin@chromium.org> Reviewed-by:
Julian Pastarmov <pastarmovj@chromium.org> Reviewed-by:
Roger Tawa <rogerta@chromium.org> Cr-Commit-Position: refs/heads/master@{#568077}
-
Mark Pilgrim authored
Bug: 844914 Change-Id: Ie38db098ec0e540b4425a42500c43263ed57119f Reviewed-on: https://chromium-review.googlesource.com/1102492Reviewed-by:
Sergey Ulanov <sergeyu@chromium.org> Reviewed-by:
Matt Menke <mmenke@chromium.org> Commit-Queue: Mark Pilgrim <pilgrim@chromium.org> Cr-Commit-Position: refs/heads/master@{#568076}
-
Philip Rogers authored
This patch ensures graphics layers are marked for incremental invalidation when their size changes. This fixes a regression from https://crrev.com/564140 where the scrolling contents layer would not be invalidated when hiding browser controls. Bug: 851881 Cq-Include-Trybots: luci.chromium.try:linux_layout_tests_slimming_paint_v2;master.tryserver.blink:linux_trusty_blink_rel Change-Id: I88885fc389c8a32a19e7aac8a0ff74689ead55a0 Reviewed-on: https://chromium-review.googlesource.com/1103439 Commit-Queue: Xianzhu Wang <wangxianzhu@chromium.org> Reviewed-by:
Xianzhu Wang <wangxianzhu@chromium.org> Cr-Commit-Position: refs/heads/master@{#568075}
-
Ryan Landay authored
I found a bug with the incognito toggle animation in the new Android horizontal tab switcher if you hit the toggle button while on the last or second-to-last tab and have >= 6 tabs open. On the second-to-last tab, toggling back to the stack with >= 6 tabs is jerky, and on the last tab, the animation appears to not run at all. The fix is very simple, but the cause of the bug, and why it only occurs with >= 6 tabs open, is somewhat involved. The incognito toggle animation works by sliding the (up to) 3 visible tabs off the screen. When toggling from normal to incognito mode, the tabs are slid to the left. If you do this on the second-to-last or last tab, the last tab is one of the tabs that gets slid off. getMinScroll() normally returns the scroll offset of the last tab (with a sign flip) as the minimum allowed overall scroll offset, to prevent you from scrolling past the last tab when we're not running an animation. During the switch away animation, we set mSuppressScrollClamping = true to suppress this clamping. It turns out that this is currently getting reset to false in finishAnimation() before we run the switch to animation. This means that with enough tabs open (turns out to be 6 on my test device), the clamped overall scroll offset tracks the last tab, causing the tabs to appear stationary. The reason the bug does not occur with fewer tabs open is that getMinScroll() pulls the scroll offset from the last tab on-screen, which turns out to be negative for the <= 5 tab case, which becomes positive after doing the sign flip. MathUtils.clamp() flips the min/max arguments if min > max, so for the <= 5 tab case, we actually end up using the value of getMaxScroll() (0) for the min scroll for part of the animation, which masks the problem. The fix is to set mSuppressScrollClamping = true in runSwitchToAnimation() (we already have logic to set it back to false when the animation ends). Bug: 853362,831359 Change-Id: I655ae2c2a4a5a58877e463c84c7c42aeb47a4790 Reviewed-on: https://chromium-review.googlesource.com/1103299Reviewed-by:
Matthew Jones <mdjones@chromium.org> Commit-Queue: Ryan Landay <rlanday@chromium.org> Cr-Commit-Position: refs/heads/master@{#568074}
-
Chris Palmer authored
Unfortunately, it does not appear possible to set RLIMIT_AS such that it will both (a) be high enough to support V8's and WebAssembly's address space requirements while also (b) being low enough to mitigate exploits using integer overflows that require large allocations, heap spray, or other memory-hungry attack modes. Bug: 800348 TBR: jln Change-Id: I4ec234709a4e49abde1c22f9c63a87bac107b8a0 Reviewed-on: https://chromium-review.googlesource.com/1097553 Commit-Queue: Chris Palmer <palmer@chromium.org> Reviewed-by:
Robert Sesek <rsesek@chromium.org> Reviewed-by:
Jorge Lucangeli Obes <jorgelo@chromium.org> Cr-Commit-Position: refs/heads/master@{#568073}
-
Fredrik Söderquist authored
All of the (direct) subclasses of LayoutSVGModelObject (LayoutSVGImage, LayoutSVGShape and LayoutSVGContainer) have the same implementation of this method, so we can push it up to the common base class. Change-Id: Ief6d4502917c87505ddab436a3c005597615c49b Reviewed-on: https://chromium-review.googlesource.com/1104344Reviewed-by:
Xianzhu Wang <wangxianzhu@chromium.org> Commit-Queue: Fredrik Söderquist <fs@opera.com> Cr-Commit-Position: refs/heads/master@{#568072}
-
Marijn Kruisselbrink authored
This goes through a code-path where the blob URL token was incorrectly dropped, so make sure we copy the token from the old FrameLoadRequest to the new FrameLoadRequest. Adds a web-platform-test to verify this behavior, and enables the blob URL browser tests to also run with MojoBlobURLs enabled. This browser test required another bug fix in RenderFrameHostImpl. Cq-Include-Trybots: luci.chromium.try:linux_mojo Bug: 800901 Change-Id: I87eee70e784dd8cb273f8671f37b00d8a93d9543 Reviewed-on: https://chromium-review.googlesource.com/1102820Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Dmitry Gozman <dgozman@chromium.org> Commit-Queue: Marijn Kruisselbrink <mek@chromium.org> Cr-Commit-Position: refs/heads/master@{#568071}
-
Bruce Dawson authored
This reverts commit 798beff1. Reason for revert: The original bug has been made irrelevant by the switch to lld, so this workaround is no longer needed. Additionally, crbug.com/817797 reports a failure sort of *caused* by this workaround. Original change's description: > Check for LNK1201 and retry links when it occurs > > LNK1201 seems to be happening increasingly frequently on our debug x64 > builds for no clear reason. Subsequent builds tend to succeed so this > change updates our link wrapper to retry links when this error is hit. > > This retry logic may solve the problem. If not then it gives us more > evidence about the problem, including a backup copy of the PDB that > might be helpful in investigating. > > Bug: 782660 > Change-Id: Iad60648425a01e07a20d108fcc5b74acaead9ee8 > Reviewed-on: https://chromium-review.googlesource.com/769333 > Commit-Queue: Bruce Dawson <brucedawson@chromium.org> > Reviewed-by: Dirk Pranke <dpranke@chromium.org> > Cr-Commit-Position: refs/heads/master@{#516769} R=dpranke@chromium.org,brucedawson@chromium.org Bug: 782660,817797 Change-Id: Ifd03fecabdb462328898c7ef5253406cab2c570c Reviewed-on: https://chromium-review.googlesource.com/1103377 Commit-Queue: Bruce Dawson <brucedawson@chromium.org> Reviewed-by:
Dirk Pranke <dpranke@chromium.org> Reviewed-by:
Bruce Dawson <brucedawson@chromium.org> Cr-Commit-Position: refs/heads/master@{#568070}
-
angle-chromium-autoroll authored
https://chromium.googlesource.com/angle/angle.git/+log/50cf2be0758b..f6fd48fd329f git log 50cf2be0758b..f6fd48fd329f --date=short --no-merges --format='%ad %ae %s' 2018-06-18 lucferron@chromium.org Vulkan: Get uniform for array of matrices fix Created with: gclient setdep -r src/third_party/angle@f6fd48fd329f 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: Iaefefe6a5b5d89d23257891b836a0b0df6754dd2 Reviewed-on: https://chromium-review.googlesource.com/1104717Reviewed-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@{#568069}
-
Raphael Kubo da Costa authored
Commit b6c4e590 ("Grant generic sensor permission for Android WebView") started always granting sensors permission requests in GetPermissionStatus(). However, commit 94c082d4 ("[sensors] Add sensors usage indicator") caused SensorProviderProxyImpl to query PermissionManager via RequestPermission() before making a given sensor available. The Android WebView case was overlooked, and its RequestPermission() implementation was still denying all requests for sensors. Update the policy to always-grant, and while at it make CancelPermissionRequest() not show a "not implemented" error for sensor requests, as the requests are always granted anyway. Doing so re-allows the WebView to provide device motion/orientation data to users, while SensorProviderImpl::GetSensor() still prevents other types of sensors from being accessed, just like before. Bug: 852543 Change-Id: I3bd45f955f8ff9dca67b7b9bda940590dce258f1 Reviewed-on: https://chromium-review.googlesource.com/1104417Reviewed-by:
Tao Bai <michaelbai@chromium.org> Reviewed-by:
Jun Cai <juncai@chromium.org> Commit-Queue: Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com> Cr-Commit-Position: refs/heads/master@{#568068}
-
Ben Pastene authored
Gives the test 5min to finish, and retries up to two more times. I'm pretty confident this'll cover all current flakes. Change-Id: I1a706b315f3ee029a6530510facd8b2dfd9de4f5 Reviewed-on: https://chromium-review.googlesource.com/1102121 Commit-Queue: Ben Pastene <bpastene@chromium.org> Reviewed-by:
Marc-Antoine Ruel <maruel@chromium.org> Reviewed-by:
Dirk Pranke <dpranke@chromium.org> Cr-Commit-Position: refs/heads/master@{#568067}
-
Ryan Landay authored
We currently have a bug in the Android horizontal tab switcher where if you close the last tab and then hit "undo," we immediately scroll over so that the first tab is centered. This is because the StackTab gets an initial scroll offset of 0 when it's undiscarded, and NonOverlappingStack#getMinScroll() doesn't account for this case. This CL fixes the bug by changing NonOverlappingStack#getMinScroll() to ignore tabs with scroll offsets of 0. Bug: 852300,831359 Change-Id: Ifface5fbf5025ad3784428663c3b512d390747c6 Reviewed-on: https://chromium-review.googlesource.com/1103452Reviewed-by:
Matthew Jones <mdjones@chromium.org> Commit-Queue: Ryan Landay <rlanday@chromium.org> Cr-Commit-Position: refs/heads/master@{#568066}
-
Peter Mayo authored
These can cause animations to attempt to update elements which are no longer in the property tree. It's all duplicate work to what will happen on CC and be pushed back. BUG=762717 Cq-Include-Trybots: luci.chromium.try:android_optional_gpu_tests_rel;master.tryserver.blink:linux_trusty_blink_rel Change-Id: I92188f6a61b73274eb9ef1a4608585ae64e56683 Reviewed-on: https://chromium-review.googlesource.com/1091504 Commit-Queue: Peter Mayo <petermayo@chromium.org> Reviewed-by:
Majid Valipour <majidvp@chromium.org> Reviewed-by:
Robert Flack <flackr@chromium.org> Cr-Commit-Position: refs/heads/master@{#568065}
-
Jinsuk Kim authored
https://crrev.com/c/1020942 meant to make sure |DetachedFromWindow| is invoked upon ViewAndroid destruction. This had a bug when WindowAndroid is destroyed first, which can happen for Chromecast where WebContents destruction is delayed by design. WindowAndroid dtor invokes |GetWindowAndroid| indirectly via its base dtor (through RemoveAllChildren), but it didn't work as intended because |GetWindowAndroid| is a virtual function. So it ended up calling |ViewAndroid::GetWindowAndroid|, not |WindowAndroid::GetWindowAndroid|. This CL fixes it by pulling out the task of invoking |OnDetachedFromWindow| so that the destructor won't use the virtual function. WindowAndroid can call |OnDetachedFromWindow| in its dtor since it doesn't need |GetWindowAndroid| - it knows for sure WindowAndroid (itself) is present. Bug: b/78251221 Change-Id: I754e45ca3ea61ceb86101ede3b529e75e206689f Reviewed-on: https://chromium-review.googlesource.com/1102823 Commit-Queue: Jinsuk Kim <jinsukkim@chromium.org> Reviewed-by:
Bo <boliu@chromium.org> Cr-Commit-Position: refs/heads/master@{#568064}
-
Marijn Kruisselbrink authored
Instead just read the blob through the mojom Blob interface directly. For now still relying on blob UUIDs, but ultimately code calling into this should already have a BlobPtr rather than having to ever look it up from a UUID. Bug: 701851 Change-Id: If267c750368cc4a43d52d239b8462cc65d7214bb Reviewed-on: https://chromium-review.googlesource.com/1101899Reviewed-by:
Ken Rockot <rockot@chromium.org> Reviewed-by:
John Abd-El-Malek <jam@chromium.org> Reviewed-by:
Christian Dullweber <dullweber@chromium.org> Commit-Queue: Marijn Kruisselbrink <mek@chromium.org> Cr-Commit-Position: refs/heads/master@{#568063}
-
Ben Chan authored
https://chromium.googlesource.com/chromiumos/platform/system_api.git/+log/7d1c88ce942e..557c37af39f5 $ git log 7d1c88ce9..557c37af3 --date=short --no-merges --format='%ad %ae %s' 2018-06-14 benchan shill: add DHCPProperty.Hostname and DHCPProperty.VendorClass property 2018-06-12 smbarber vm_cicerone: add ipv4_address to NotifyVmStartedRequest Created with: roll-dep src/third_party/cros_system_api Change-Id: Icadccd2f79faf69e30d19dbbd5e35f0eb35c0c18 Reviewed-on: https://chromium-review.googlesource.com/1103708Reviewed-by:
Steven Bennetts <stevenjb@chromium.org> Commit-Queue: Ben Chan <benchan@chromium.org> Cr-Commit-Position: refs/heads/master@{#568062}
-
Xianzhu Wang authored
Don't know why the parent GraphicsLayer is null on Mac only. The crash spiked since M67, but on M66 the non-SlimmingPaintV175 path also crashed for the same reason. Bug: 848442 Change-Id: I34ed17f8aaa193128f295b1cb6139a51164365e8 Reviewed-on: https://chromium-review.googlesource.com/1104697 Commit-Queue: Xianzhu Wang <wangxianzhu@chromium.org> Reviewed-by:
Stephen Chenney <schenney@chromium.org> Cr-Commit-Position: refs/heads/master@{#568061}
-
v8-ci-autoroll-builder authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/f2bcc477..743d013b 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=master.tryserver.blink:linux_trusty_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,machenbach@chromium.org,kozyatinskiy@chromium.org,sergiyb@chromium.org Change-Id: I8b4dfc259b6f49a0bd87278ea5724649696a309d Reviewed-on: https://chromium-review.googlesource.com/1104185Reviewed-by:
V8 Autoroller <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Commit-Queue: V8 Autoroller <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#568060}
-
jonross authored
I missed a few callsites to WaitForChildFrameSurfaceReady which were in Android tests. This change updates them to use the new HitTestRegionObserver TEST=TouchSelectionControllerClientAndroidSiteIsolationTest.BasicSelectionIsolatedIframe SitePerProcessHitTestBrowserTest.CrossProcessTooltipTestAndroid Bug: 787945 Change-Id: I0abfa8e4c036552ac416909b15398a53a71ee064 Reviewed-on: https://chromium-review.googlesource.com/1102829Reviewed-by:
Ken Buchanan <kenrb@chromium.org> Commit-Queue: Jonathan Ross <jonross@chromium.org> Cr-Commit-Position: refs/heads/master@{#568059}
-
John Abd-El-Malek authored
Bug: 844032 Cq-Include-Trybots: luci.chromium.try:linux_mojo Change-Id: I20c4e95fb05cf87109050f7905fb6a5b468dbf91 Reviewed-on: https://chromium-review.googlesource.com/1102172Reviewed-by:
Nasko Oskov <nasko@chromium.org> Reviewed-by:
Emily Stark <estark@chromium.org> Reviewed-by:
Ramin Halavati <rhalavati@chromium.org> Commit-Queue: John Abd-El-Malek <jam@chromium.org> Cr-Commit-Position: refs/heads/master@{#568058}
-
Nico Weber authored
They pass and doesn't take long to run, no reason to not run them. Bug: 843511 Change-Id: I7e54348c8e80224df96adfe17493ca7af0521e72 Reviewed-on: https://chromium-review.googlesource.com/1104737 Commit-Queue: Nico Weber <thakis@chromium.org> Reviewed-by:
John Budorick <jbudorick@chromium.org> Cr-Commit-Position: refs/heads/master@{#568057}
-
Jan Wilken Doerrie authored
This change adds class skeletons required for the implementation and testing of GATT service discovery on WinRT. No functionality is added, this CL is simply meant to reduce the size and boilerplate of the following change. Bug: 821766 Change-Id: Ie20629235f08dff9e5ffcb38273cc8ddb2a8e5e0 Reviewed-on: https://chromium-review.googlesource.com/1102023 Commit-Queue: Jan Wilken Dörrie <jdoerrie@chromium.org> Reviewed-by:
Reilly Grant <reillyg@chromium.org> Cr-Commit-Position: refs/heads/master@{#568056}
-
Mathieu Perreault authored
Updating some screenshots too. Bug: 850571 Change-Id: I97bce0907e85d530f6a22ecfc3d5a0b0a029baee Reviewed-on: https://chromium-review.googlesource.com/1103770Reviewed-by:
Tommy Martino <tmartino@chromium.org> Commit-Queue: Mathieu Perreault <mathp@chromium.org> Cr-Commit-Position: refs/heads/master@{#568055}
-
jonross authored
Currently TouchAccessibilityBrowserTest.TouchExplorationInCrossSiteIframe is calling WaitForChildFrameSurfaceReady. However it is not actually waiting, as the frame it is providing is not a RenderWidgetHostViewChildFrame. This change updates the call to the new hit testing api HitTestRegionObserver. This will allow the test to properly wait on hit testing data while run under Viz. While maintaining the current early exit for non-Viz. TEST=TouchAccessibilityBrowserTest.TouchExplorationInCrossSiteIframe Bug: 787945 Change-Id: Ica7fa92e7dcb5ea3d7a5b9702f9c5d077d929c07 Reviewed-on: https://chromium-review.googlesource.com/1102570Reviewed-by:
Dominic Mazzoni <dmazzoni@chromium.org> Commit-Queue: Jonathan Ross <jonross@chromium.org> Cr-Commit-Position: refs/heads/master@{#568054}
-
Friedrich Horschig authored
With this CL, the manual filling component ensures that the keyboard accessory and its sheet display only data that is relevant to the active tab. It introduces a mediator controlled and wired up by the already existing ManualFillingCoordinator. It is responsible to propagate visibility changes to all subcomponents and update their state depending on the active browser tab. Bug: 828832, 811747 Change-Id: I247fcbbc554c06624c12ffe42597d6f671042336 Reviewed-on: https://chromium-review.googlesource.com/1100760 Commit-Queue: Friedrich Horschig <fhorschig@chromium.org> Reviewed-by:
Bernhard Bauer <bauerb@chromium.org> Cr-Commit-Position: refs/heads/master@{#568053}
-
erikchen authored
Previously, only some accelerators worked in Windows/Linux [e.g. ctr + V works, ctr + T did not]. All accelerators were busted on macOS Views. Some accelerators were busted on macOS Cocoa. The root cause is that SigninViewControllerDelegateViews::HandleKeyboardEvent was not implemented on Views, and SigninViewControllerDelegateMac::HandleKeyboardEvent was incorrectly implemented on macOS. This CL fixes both implementations to use the now standard logic for redispatching key events. This CL also fixes the implementation of CommandDispatcher on macOS to correctly detect whether an event is being redispatched. Change-Id: I76b1ef263fce171ae182d316f541f836ab6388ee Bug: 776304 Reviewed-on: https://chromium-review.googlesource.com/1097206 Commit-Queue: Erik Chen <erikchen@chromium.org> Reviewed-by:
Trent Apted <tapted@chromium.org> Cr-Commit-Position: refs/heads/master@{#568052}
-
Greg Kraynov authored
As a bonus it allowed to remove a dozen of redundant includes. Bug: 783309 Change-Id: Ib1cd92825c828c2724746f979c5f92e18538b1d4 Reviewed-on: https://chromium-review.googlesource.com/1104419Reviewed-by:
Sami Kyöstilä <skyostil@chromium.org> Reviewed-by:
Alexander Timin <altimin@chromium.org> Commit-Queue: Greg Kraynov <kraynov@chromium.org> Cr-Commit-Position: refs/heads/master@{#568051}
-
Matt Menke authored
IOThread is going away eventually, but we should still record the histograms. Bug: 853233 Cq-Include-Trybots: luci.chromium.try:linux_mojo Change-Id: I46b2811a934bbab59066161327f7deb8e8991fd7 Reviewed-on: https://chromium-review.googlesource.com/1102717 Commit-Queue: Matt Menke <mmenke@chromium.org> Reviewed-by:
David Benjamin <davidben@chromium.org> Cr-Commit-Position: refs/heads/master@{#568050}
-
Alexey Kozyatinskiy authored
TBR=dgozman@chromium.org Bug: v8:7858 Change-Id: I69bc4521dd8950e9ebbc3731850f2cebbfeb1dc9 Reviewed-on: https://chromium-review.googlesource.com/1104309Reviewed-by:
Aleksey Kozyatinskiy <kozyatinskiy@chromium.org> Commit-Queue: Aleksey Kozyatinskiy <kozyatinskiy@chromium.org> Cr-Commit-Position: refs/heads/master@{#568049}
-
Douglas Creager authored
This updates the NEL implementation to match the fields renames from https://github.com/WICG/network-error-logging/pull/75. Bug: 748549 Cq-Include-Trybots: luci.chromium.try:closure_compilation Change-Id: I0545ce6f9bddb46c556e2ba15d16398ee9c3b1fa Reviewed-on: https://chromium-review.googlesource.com/1104384Reviewed-by:
Matt Menke <mmenke@chromium.org> Commit-Queue: Douglas Creager <dcreager@chromium.org> Cr-Commit-Position: refs/heads/master@{#568048}
-
Nico Weber authored
They seem to pass. Bug: 843511 Change-Id: I7e52d8cc7301d4d3bc87e03242124ce1b22c0000 Reviewed-on: https://chromium-review.googlesource.com/1104797 Commit-Queue: Nico Weber <thakis@chromium.org> Reviewed-by:
John Budorick <jbudorick@chromium.org> Cr-Commit-Position: refs/heads/master@{#568047}
-
Daniel Bratell authored
Change-Id: Ica4288a6984f296958b7f9b812edb07663cec22e Reviewed-on: https://chromium-review.googlesource.com/1104159Reviewed-by:
Brett Wilson <brettw@chromium.org> Commit-Queue: Daniel Bratell <bratell@opera.com> Cr-Commit-Position: refs/heads/master@{#568046}
-
Mikel Astiz authored
The feature has been running for a while on 50% canary and dev with only one known issue which is already fixed on trunk. Hence, let's enable it by default, which also requires updating a few tests. The switch exercises a more modern implementation of sessions sync that should be identical from the users perspective, besides the performance improvements (most notably, memory consumption estimated to be reduced by a factor of 70% according to metric Sync.ModelTypeMemoryKB.SESSION), or ~350 KB for the 95th percentile. Bug: 681921 Change-Id: Ida3e676a534d8c3ced174092d5498a793860020b Reviewed-on: https://chromium-review.googlesource.com/1086945 Commit-Queue: Mikel Astiz <mastiz@chromium.org> Reviewed-by:
Ken Rockot <rockot@chromium.org> Reviewed-by:
Marc Treib <treib@chromium.org> Cr-Commit-Position: refs/heads/master@{#568045}
-
Kush Sinha authored
Do not force logout child accounts on Chrome OS if AccountReconcilor encounters a retriable network error. Bug: 851455 Change-Id: If7a79d7d634cd6b228158eceddb7e6c2729440e6 Reviewed-on: https://chromium-review.googlesource.com/1095110 Commit-Queue: Kush Sinha <sinhak@chromium.org> Reviewed-by:
David Roger <droger@chromium.org> Cr-Commit-Position: refs/heads/master@{#568044}
-
Aldo Culquicondor authored
The gesture detector extrapolates scrolling events from previous real scrolling events. The extrapolated event depends on the time difference between the events, favoring the longest and more recent event. Here, we make the gesture detector receive the current time instead of querying it from the system, and thus making the tests deterministic. Bug: 853086 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: I2d46f5e5ebceb801aecccf5b2c0a2dbf6b858864 Reviewed-on: https://chromium-review.googlesource.com/1104583 Commit-Queue: Aldo Culquicondor <acondor@chromium.org> Reviewed-by:
Amirhossein Simjour <asimjour@chromium.org> Cr-Commit-Position: refs/heads/master@{#568043}
-
Marc Treib authored
TBR=kenrb@chromium.org Bug: 853761 Change-Id: I75eb2a580cc263a4dd4b6d3a0254fbadad8ec08e Reviewed-on: https://chromium-review.googlesource.com/1104657 Commit-Queue: Marc Treib <treib@chromium.org> Reviewed-by:
Marc Treib <treib@chromium.org> Cr-Commit-Position: refs/heads/master@{#568042}
-
Jerome Jiang authored
https://chromium.googlesource.com/webm/libvpx.git/+log/37a0283b18a1..8648a64c83b5 $ git log 37a0283b1..8648a64c8 --date=short --no-merges --format='%ad %ae %s' 2018-06-15 jianj VP9 HBD: Fix integer overflow problem in variance calc. 2018-06-15 tomfinegan Clean up avx512 compiler support test. 2018-05-23 jingning Prepare motion estimation process for temporal dependency model 2018-05-23 jingning Construct temporal dependency building system 2018-06-14 jianj vp9 svc: add tests for inter layer prediction. 2018-06-14 zoeliu Separate GF structure defining from bit allocation 2018-05-21 jingning Allocate tpl_dep_stats frame buffer 2018-06-14 jingning Add temporal model control as a speed feature 2018-05-21 jingning Add data structure for frame dependent mode decision 2018-06-13 luc [VSX] Optimize PROCESS16 macro 2018-06-13 zoeliu Unify frame_index in defining GF group structure 2018-06-13 jianj vp8: remove assertion in tree coder. 2018-06-13 luc VSX Version of SAD8xN 2018-06-13 luc Add Speed Tests for the SADTest test suite. 2018-06-13 tomfinegan Fix avx512 related MSVC build failure. 2018-06-12 jingning Remove duplicate vp9_twopass_postencode_update def Created with: roll-dep src/third_party/libvpx/source/libvpx R=johannkoenig@google.com Bug: 805277, webm:1534 Change-Id: I3fe5dc01690c4e2e43905663e5204b7e806e4b1c Reviewed-on: https://chromium-review.googlesource.com/1103855Reviewed-by:
Johann Koenig <johannkoenig@google.com> Commit-Queue: Jerome Jiang <jianj@google.com> Cr-Commit-Position: refs/heads/master@{#568041}
-
John Budorick authored
Tests in these classes have appeared frequently and near the end of the test log in mac browser_tests tasks that either resulted in BOT_DIED or exhibited a large number of failures due to crashpad (which itself appears to be symptomatic of WindowServer death). Bug: 828031 Change-Id: I37aeefe83a4ade9f69f5cb18ee5e13179fa24b89 Reviewed-on: https://chromium-review.googlesource.com/1104308Reviewed-by:
Dirk Pranke <dpranke@chromium.org> Commit-Queue: John Budorick <jbudorick@chromium.org> Cr-Commit-Position: refs/heads/master@{#568040}
-
Yue Li authored
Bug: b/78191741 Change-Id: I0bd7969e411adbace1f76eea8ba0d0d964312afe Reviewed-on: https://chromium-review.googlesource.com/1099729 Commit-Queue: Yue Li <updowndota@chromium.org> Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Reviewed-by:
Xiaohui Chen <xiaohuic@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Cr-Commit-Position: refs/heads/master@{#568039}
-