- 05 Feb, 2020 40 commits
-
-
Ben Pastene authored
These tests have started failing after fec354dc. Tbr: guidou@chromium.org Bug: 1048934 Change-Id: Id54e609d286cea6c4b2506edc11c3bc1433d46c4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2038253 Commit-Queue: Ben Pastene <bpastene@chromium.org> Reviewed-by:
Ben Pastene <bpastene@chromium.org> Cr-Commit-Position: refs/heads/master@{#738428}
-
Anand K. Mistry authored
Also rename to MountPreconfiguredShare() to avoid the confusion between mount/remount/premount. Bug: 939235 Change-Id: If9df3a55b4aea6852468078b2188974adf35af24 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2035504 Commit-Queue: Anand Mistry <amistry@chromium.org> Reviewed-by:
Austin Tankiang <austinct@chromium.org> Cr-Commit-Position: refs/heads/master@{#738427}
-
Ben Joyce authored
See https://chromium-review.googlesource.com/c/chromium/src/+/1830506 -Update build.gn dependencies for androidx update. -Change an import for androidx annotations that should have been when all other annotation imports were migrated to androidx. Bug: 896775 Change-Id: Ie22118da7841fac029aee37a5c1d10b78325b87e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2036407Reviewed-by:
Yaron Friedman <yfriedman@chromium.org> Reviewed-by:
Andrew Grieve <agrieve@chromium.org> Reviewed-by:
Scott Violet <sky@chromium.org> Commit-Queue: benjamin joyce <bjoyce@google.com> Cr-Commit-Position: refs/heads/master@{#738426}
-
Daniele Castagna authored
Originally RemoveOverdrawQuads looped trough all the renderpasses and did some computation for the non-root ones, and then executed occlusion logic on the root one. A CL that removed the computation for non-root renderpasses landed, making the loop always skip his body for all the renderpasses but the root one. This CL removes the loop and executes the occlusion logic only for the root renderpass. Test: RemoveOverdrawQuadPerfTest.* Change-Id: Ie92deae2b5fb65e1f5be605f79bc47bfc9de36bc Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2033368Reviewed-by:
Sasha McIntosh <sashamcintosh@chromium.org> Commit-Queue: Daniele Castagna <dcastagna@chromium.org> Cr-Commit-Position: refs/heads/master@{#738425}
-
Ken Rockot authored
CachedStorageArea is ref-counted and was retaining an unsafe reference to a GCed object which it may outlive. This changes that reference to a WeakPersistent and ensures that we don't dereference it once it's no longer valid. Fixed: 1048234 Change-Id: I9971b35b9aa7db790236f92c353a2320740f7729 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2036383 Commit-Queue: Ken Rockot <rockot@google.com> Commit-Queue: Victor Costan <pwnall@chromium.org> Reviewed-by:
Daniel Murphy <dmurph@chromium.org> Reviewed-by:
Victor Costan <pwnall@chromium.org> Auto-Submit: Ken Rockot <rockot@google.com> Cr-Commit-Position: refs/heads/master@{#738424}
-
Ken Rockot authored
The refactoring in r715377 failed to expose general-purpose child process interfaces to the browser from plugin processes. As a result, histogram collection and tracing don't function as expected in plugin processes. This fixes that. Fixed: 1043019 Change-Id: I7d32e0d4de091cd3e6a343d7cf1604ff65a2ff8f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2037345 Commit-Queue: Ken Rockot <rockot@google.com> Auto-Submit: Ken Rockot <rockot@google.com> Reviewed-by:
Avi Drissman <avi@chromium.org> Cr-Commit-Position: refs/heads/master@{#738423}
-
Nicholas Verne authored
We restart vm when upgrading, if it wasn't running already. Bug: 1024693 Change-Id: I00e093f7bbf83eb04a6adb4029a4612e99950ae4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2026559Reviewed-by:
Kyle Horimoto <khorimoto@chromium.org> Reviewed-by:
David Munro <davidmunro@google.com> Commit-Queue: Nicholas Verne <nverne@chromium.org> Cr-Commit-Position: refs/heads/master@{#738422}
-
Hiroki Nakagawa authored
Bug: n/a Change-Id: I8a45a90fe282c1c25f893bf4ce2c42b2543d196f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2032554Reviewed-by:
Charlie Harrison <csharrison@chromium.org> Commit-Queue: Hiroki Nakagawa <nhiroki@chromium.org> Cr-Commit-Position: refs/heads/master@{#738421}
-
Lei Zhang authored
The removed method is only used in PrintPreviewMessageHandler, and PrintPreviewMessageHandler already has ShouldUseCompositor(), which does exactly the same thing. Once all the calls to ShouldCompositeDocumentUsingIndividualPages() has been replaced, PrintPreviewMessageHandler::OnMetafileReadyForPrinting() now has: if (ShouldUseCompositor(ptr)) { if (ShouldUseCompositor(ptr)) { ... } else { // Dead code. } } Remove the dead code and simplify the surrounding code. With the cleanup, OnMetafileReadyForPrinting() can also make its IPC parameter check more strict. Change-Id: I137f0ceb82f40ede6b61ac3c29fd43d99c12851a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2037088 Commit-Queue: Lei Zhang <thestig@chromium.org> Reviewed-by:
Daniel Hosseinian <dhoss@chromium.org> Cr-Commit-Position: refs/heads/master@{#738420}
-
Lei Zhang authored
In the |kFeatureEntries| struct, each FeatureEntry has a name and a description. As is, for "message-center-redesign", |kMessageCenterRedesignName| is used in both fields and |kMessageCenterRedesignDescription| goes unused. Fix the typo so the description is set to |kMessageCenterRedesignDescription|. Change-Id: I130b795b656fdb27c4474e785ab83db230176d77 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2037082Reviewed-by:
Ahmed Mehfooz <amehfooz@chromium.org> Commit-Queue: Lei Zhang <thestig@chromium.org> Cr-Commit-Position: refs/heads/master@{#738419}
-
Xida Chen authored
This CL adds a few perf tests for the on-screen no damage cases. To be more specific, we create animations that causes no damage, for example animation from translateX(0) to translateX(0). At this moment, the on-screen no damage cases should not report any histogram, because the frames_expected would be 0. Bug: 1048163 Change-Id: Id315e98b32d5a9e55b85a96d1ed2d5d59003a983 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2035858Reviewed-by:
Sadrul Chowdhury <sadrul@chromium.org> Reviewed-by:
Robert Flack <flackr@chromium.org> Commit-Queue: Xida Chen <xidachen@chromium.org> Cr-Commit-Position: refs/heads/master@{#738418}
-
Minggang Wang authored
The current mojom struct ResourceLoadInfo defined in //content is used to notify the status of a resource loading, which is unavailable inside Blink. Along with the implementation of OnionSoup of loaders, we are going to notify the loading status from Blink directly. So we have to move this mojom struct into Blink in order to leverage it there. This CL makes the changes below: - Remove the ResourceType in //content and its typemap and replace with the mojom one. - Move the resource_load_info.mojom into Blink. Change-Id: I11ab3b7107bd4e06ee3ec737f825202c533a466c Bug: 860403 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1986640 Commit-Queue: Minggang Wang <minggang.wang@intel.com> Reviewed-by:
Charlie Reis <creis@chromium.org> Reviewed-by:
Matt Falkenhagen <falken@chromium.org> Reviewed-by:
Kinuko Yasuda <kinuko@chromium.org> Cr-Commit-Position: refs/heads/master@{#738417}
-
Kent Tamura authored
Enable rendering of the shadow element of <select>, and remove anonymous block in LayoutMenuList. * HTMLOptionElement::ParseAttribute(): Update the shadow element content on option[label] change. * HTMLSelectElement::UpdateFromElement(): Fold LayoutMenuList::UpdateFromElement() into here. If option_style_ and InnerElemnet's style are inconsistent, update InnerElement's style. * HTMLSelectElement::UpdateMenuListLabel() Move the code in LayoutMenuList::UpdateInnerStyle() here. Also, kick TextChanged ax notification which LayoutText::ForceSetText did. * MenuListInnerElement::CustomStyleForLayoutObject(): Set "display: block" Add custom style which the anonymous block used. * layout_menu_list.{h,cc}: Remove a lot of code. * ax_layout_object_test.cc: Add tests to check if AXLayoutObject::StringValue() respects to text-transform and -webkit-text-security. * web_tests/accessibility/notification-listeners.html: Remove TextChanged notification expectation. After this CL, <select> won't notify TextChanged in this test scenario. The text is changed before creating LayoutObject and AXLayoutObject. Bug: 1040828 Change-Id: Ia0c19f0897ab2d1461e457c83adceda2c0739f9f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2024250Reviewed-by:
Koji Ishii <kojii@chromium.org> Reviewed-by:
Yoshifumi Inoue <yosin@chromium.org> Commit-Queue: Kent Tamura <tkent@chromium.org> Cr-Commit-Position: refs/heads/master@{#738416}
-
Anand K. Mistry authored
Bug: 634140 Change-Id: I7728ca5b5bfda31be35c10609a2602e6efd6adfd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2035518Reviewed-by:
Tatsuhisa Yamaguchi <yamaguchi@chromium.org> Commit-Queue: Anand Mistry <amistry@chromium.org> Cr-Commit-Position: refs/heads/master@{#738415}
-
Md. Hasanur Rashid authored
This CL update the function GetOriginUsageOnFileTaskRunner to use url::Origin instead of GURL. Bug: 598424 Change-Id: Id88ee97f35f68dbc557c86e07f4431fb95271676 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2032556Reviewed-by:
Victor Costan <pwnall@chromium.org> Reviewed-by:
Christian Dullweber <dullweber@chromium.org> Commit-Queue: Md. Hasanur Rashid <hasanur.r@samsung.com> Cr-Commit-Position: refs/heads/master@{#738414}
-
Rachel Sugrono authored
When an item in a check-select is deleted, onFileSelectionChanged_ must ensure that the current index wraps to stay in bounds of the new selection. When we wrap, favor the bottom entry. Tests coming. Tbr: alex Bug: 803259 Change-Id: I0a6c1f4a22770ad48040695f2b170dcd0db50459 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2035474Reviewed-by:
Noel Gordon <noel@chromium.org> Commit-Queue: Noel Gordon <noel@chromium.org> Commit-Queue: Rachel Sugrono <rsugrono@google.com> Cr-Commit-Position: refs/heads/master@{#738413}
-
Kenneth Russell authored
conformance/extensions/webgl-compressed-texture-astc.html conformance/extensions/webgl-compressed-texture-s3tc-srgb.html are failing on webgl2_conformance_gl_passthrough_tests on Intel GPUs after recent ANGLE changes. Tbr: jdarpinian@chromium.org Bug: 1048861 No-Try: True Change-Id: Iffa429a14ba13a19ef8d3b32cd34c343d7ef9e53 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2037829 Commit-Queue: Kenneth Russell <kbr@chromium.org> Reviewed-by:
Kenneth Russell <kbr@chromium.org> Reviewed-by:
James Darpinian <jdarpinian@chromium.org> Cr-Commit-Position: refs/heads/master@{#738412}
-
Darren Shen authored
Change-Id: I51f0c14c738ba2a6592ddd8ae73726fe2802d926 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2035816 Commit-Queue: dstockwell <dstockwell@chromium.org> Auto-Submit: Darren Shen <shend@chromium.org> Reviewed-by:
dstockwell <dstockwell@chromium.org> Cr-Commit-Position: refs/heads/master@{#738411}
-
Kenneth Russell authored
This reverts commit 5019665f. Reason for revert: broke capture_unittests on chromeos-amd64-generic-rel per http://crbug.com/1048934 Original change's description: > Reland "Call MFShutdown in places where MFStartup is called" > > This reverts commit 5be12bf8. > > Reason for revert: Fixing the issue, and running on more trybots > > Original change's description: > > Revert "Call MFShutdown in places where MFStartup is called" > > > > This reverts commit abf9a1f5. > > > > Reason for revert: Broke tests on Win7 dbg, see linked bug > > > > Original change's description: > > > Call MFShutdown in places where MFStartup is called > > > > > > Bug: 1012527 > > > Fixed: 1012527 > > > Change-Id: Id9ef248aadb0aa24704dec973b60ea23c9e1f1ed > > > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2032332 > > > Commit-Queue: Ted Meyer <tmathmeyer@chromium.org> > > > Reviewed-by: Xiaohan Wang <xhwang@chromium.org> > > > Cr-Commit-Position: refs/heads/master@{#738063} > > > > TBR=xhwang@chromium.org,tmathmeyer@chromium.org > > > > Change-Id: I267213cc06b42769736c7eb337432ade7953de20 > > No-Presubmit: true > > No-Tree-Checks: true > > No-Try: true > > Bug: 1012527 > > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2036057 > > Reviewed-by: Marc Treib <treib@chromium.org> > > Commit-Queue: Marc Treib <treib@chromium.org> > > Cr-Commit-Position: refs/heads/master@{#738130} > > TBR=xhwang@chromium.org,treib@chromium.org,tmathmeyer@chromium.org > > Change-Id: I8f87e933e133d0dcbf9904c002af7738af450f41 > No-Presubmit: true > No-Tree-Checks: true > No-Try: true > Bug: 1012527 > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2037811 > Reviewed-by: Xiaohan Wang <xhwang@chromium.org> > Commit-Queue: Ted Meyer <tmathmeyer@chromium.org> > Cr-Commit-Position: refs/heads/master@{#738344} TBR=xhwang@chromium.org,treib@chromium.org,tmathmeyer@chromium.org Change-Id: Ieba1f172a5a2bed58e338f15c638c6deae8b0685 No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: 1012527, 1048934 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2037855Reviewed-by:
Kenneth Russell <kbr@chromium.org> Commit-Queue: Kenneth Russell <kbr@chromium.org> Cr-Commit-Position: refs/heads/master@{#738410}
-
Kenneth Russell authored
This configuration's been forced to use only the integrated GPU due to graphics driver bug workarounds, so these tests don't pass on this configuration. Tbr: enga@chromium.org Bug: 1047573 No-Try: True Change-Id: Id6e436ae118a1fbb552cfebd995f689b274f893e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2037826 Commit-Queue: Kenneth Russell <kbr@chromium.org> Reviewed-by:
Kenneth Russell <kbr@chromium.org> Reviewed-by:
Austin Eng <enga@chromium.org> Cr-Commit-Position: refs/heads/master@{#738409}
-
Regan Hsu authored
This CL copies over the final strings that are missing from browser settings to OS settings, and removes the browser string provider from OS settings. Bug: 967888 Change-Id: Iebf0880fb3ef94df67e9bc4fea14ad286b0c18ba Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2036263 Commit-Queue: Regan Hsu <hsuregan@chromium.org> Reviewed-by:
Kyle Horimoto <khorimoto@chromium.org> Reviewed-by:
Demetrios Papadopoulos <dpapad@chromium.org> Cr-Commit-Position: refs/heads/master@{#738408}
-
Anand K. Mistry authored
Constants defined in the mojom are re-exported as part of the public API. Adding the mojom as a public dep ensures the header files are generated before trying to compile any dependent target. Bug: 939235 Change-Id: I80b72bcf2ab7a722ebdd3c6c2703fbb546affad9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2037298Reviewed-by:
Sam McNally <sammc@chromium.org> Commit-Queue: Anand Mistry <amistry@chromium.org> Cr-Commit-Position: refs/heads/master@{#738407}
-
Chromium WPT Sync authored
Using wpt-import in Chromium 2ae44760. 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: drott@chromium.org, kojii@chromium.org: external/wpt/css/css-fonts NOAUTOREVERT=true TBR=foolip No-Export: true Change-Id: I85a7219e516a2ae566bca595883c26e13f359ff2 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2037935Reviewed-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@{#738406}
-
Isabella Scalzi authored
Previously the way that Files App checked whether a file could be deleted was different depending on which method that was taken to delete the file. Some places were also calling private methods. Fix this: Make common helper |deleteEntries| that deletes the files specified if possible. Change quick_view_controller.js to use this helper. Note: |canDeleteEntries_| does not check root and fake entries because |canExecute| must behave differently for those types of entries. Also clarify comments and fix closure types. Tbr: alex Bug: 803259 Change-Id: I9c128857b8c3e70f3f287d08a9130fb0728ae249 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2035502Reviewed-by:
Noel Gordon <noel@chromium.org> Commit-Queue: Noel Gordon <noel@chromium.org> Cr-Commit-Position: refs/heads/master@{#738405}
-
Rafael Cintron authored
Graphics drivers periodically allocate internal memory buffers in order to speed up subsequent rendering requests. These memory allocations in general lead to increased memory usage by the overall system. Calling Trim discards internal memory buffers allocated for the app, reducing its memory footprint. Calling Trim method does not change the rendering state of the graphics device and has no effect on rendering operations. There is a brief performance hit when internal buffers are reallocated during the first rendering operations after the Trim call, therefore apps should only call Trim when going idle for a period of time or during low memory conditions. Bug: 1048920 Change-Id: Ic6a27fc5b05eb4084c85726fd3c4f82837f786a3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2037816 Commit-Queue: Rafael Cintron <rafael.cintron@microsoft.com> Reviewed-by:
Zhenyao Mo <zmo@chromium.org> Cr-Commit-Position: refs/heads/master@{#738404}
-
Stephen Chenney authored
This is in preparation for reporting forced update reason in UMA and UKM. Bug: 1041295 Change-Id: I92518c9e62e0ea36bde0ccb873b221a347d281f3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2018005Reviewed-by:
Jeremy Roman <jbroman@chromium.org> Reviewed-by:
Yoshifumi Inoue <yosin@chromium.org> Reviewed-by:
Ian Kilpatrick <ikilpatrick@chromium.org> Commit-Queue: Stephen Chenney <schenney@chromium.org> Cr-Commit-Position: refs/heads/master@{#738403}
-
Bailey Berro authored
Enables the resolution change modal by default. Bug: 860097 Change-Id: I5774c8b710d3744c8e09e158aecbed5dafcfabb4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2038076 Commit-Queue: Bailey Berro <baileyberro@chromium.org> Commit-Queue: Ahmed Fakhry <afakhry@chromium.org> Auto-Submit: Bailey Berro <baileyberro@chromium.org> Reviewed-by:
Ahmed Fakhry <afakhry@chromium.org> Cr-Commit-Position: refs/heads/master@{#738402}
-
Yue Zhang authored
http://crrev.com/c/2024495 makes SelectableItemView inflate modern_list_item_view in its onFinishInflate(). However, even though SelectableTabGridView extends SelectableItemView, it doesn't use the views within it. Thus, this CL removes content from SelectableItemView right after it is inflated to ensure the UI is correct. Bug: 1047595 Change-Id: Ia4da1559c039be95a6463368c642b3c53f4f7c90 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2033805 Commit-Queue: Yue Zhang <yuezhanggg@chromium.org> Auto-Submit: Yue Zhang <yuezhanggg@chromium.org> Reviewed-by:
Wei-Yin Chen (陳威尹) <wychen@chromium.org> Cr-Commit-Position: refs/heads/master@{#738401}
-
Xiao Yang authored
1. Add method to get eid from deeplinks and append to lists¬es mainview link url. 2. Update lists¬es url. 3. Add deeplink parameter "type" to support shopping list. Bug: b/145951425 Change-Id: If063962ddd01e13d738e439f00a159249cea4e1f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1990147Reviewed-by:
Xiaohui Chen <xiaohuic@chromium.org> Commit-Queue: Xiao Yang <yanxiao@google.com> Cr-Commit-Position: refs/heads/master@{#738400}
-
Wei Li authored
The change is to prepare for stable 1% launch at CL/293181353. BUG=none Change-Id: Ib0a583917c5b9d4858bbf4cb73c8386f44a0fa33 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2036798Reviewed-by:
Steven Holte <holte@chromium.org> Commit-Queue: Wei Li <weili@chromium.org> Cr-Commit-Position: refs/heads/master@{#738399}
-
Tetsui Ohkubo authored
When Chrome is in forced tablet mode (--force-tablet-mode=touch_view) and display rotation is set through setDisplayProperties(), ScreenOrientationController::GetCurrentOrientation() keeps returning landscape-primary regardless of the rotation. It prevented some tests from working as intended. TEST=tast run eve-DUT arc.SoftInputMode BUG=1032881 Change-Id: I2b40db9fea2af4a066a0fb8f4d37a870b87d603b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2032693Reviewed-by:
Ahmed Fakhry <afakhry@chromium.org> Commit-Queue: Tetsui Ohkubo <tetsui@chromium.org> Cr-Commit-Position: refs/heads/master@{#738398}
-
Jiawei Li authored
Removed usage of deprecated methods. Merge-With: eureka-internal/358999 Bug: Internal b/148628557 Test: bindings_manager_cast_browsertest, unittests. Change-Id: I435e9cf0e5a5a19e178c10d4cf99eef5ce4b36b9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2037028Reviewed-by:
Yuchen Liu <yucliu@chromium.org> Reviewed-by:
Kevin Marshall <kmarshall@chromium.org> Commit-Queue: Jiawei Li <lijiawei@chromium.org> Cr-Commit-Position: refs/heads/master@{#738397}
-
Sam Sebree authored
Reland "[Controls Refresh] Regression: Focus is not seen on color selector icon when the focus is traversed using Tab key." This is a reland of 2292ef33 This change addresses the bug in which the color picker selection ring gets placed in the top left corner after closing a color picker with (255,255,255) is selected. Bug: 1046648 Change-Id: I78e0fd3175ad1b1cfac9226dc451062ec9e14b55 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2036346 Commit-Queue: Sam Sebree <sasebree@microsoft.com> Reviewed-by:
Mason Freed <masonfreed@chromium.org> Reviewed-by:
Kent Tamura <tkent@chromium.org> Cr-Commit-Position: refs/heads/master@{#738396}
-
Yue Zhang authored
Currently, popup tabstrip doesn't update when user uses swipe gesture to switch between tabs. This CL fixes this issue and adds some tests. Bug: 1048732 Change-Id: I967769ccec7dc7220a7528b72c628e0f76fc1cfe Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2037835Reviewed-by:
Wei-Yin Chen (陳威尹) <wychen@chromium.org> Commit-Queue: Yue Zhang <yuezhanggg@chromium.org> Cr-Commit-Position: refs/heads/master@{#738395}
-
Clark DuVall authored
WebLayer was crashing in Monochrome because BundleUtils.setIsBundle() was never called. This looks like it was caused by http://crrev.com/c/1989243. Bug: 901465 Change-Id: I6f2220b3def3d1783677f8a48b5b4555fd896bc0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2036267 Commit-Queue: Bo <boliu@chromium.org> Reviewed-by:
Bo <boliu@chromium.org> Auto-Submit: Clark DuVall <cduvall@chromium.org> Cr-Commit-Position: refs/heads/master@{#738394}
-
Maksim Moskvitin authored
Sync.EncryptEverythingWhenCryptographerNotReady has a better alternative - filtering by passphrase type. HasAccessToken* histograms are buggy and replaced by NigoriConfigurationWithInvalidatedCredentials histogram. Bug: 1036875, 1037330 Change-Id: Ic4b590b7a6b8d7f5ecf19607b3a2c5852fd0e0ae Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2035978Reviewed-by:
Mikel Astiz <mastiz@chromium.org> Reviewed-by:
Steven Holte <holte@chromium.org> Commit-Queue: Steven Holte <holte@chromium.org> Auto-Submit: Maksim Moskvitin <mmoskvitin@google.com> Cr-Commit-Position: refs/heads/master@{#738393}
-
Yue Zhang authored
In the popup TabStrip used by Duet-TabStrip integration, there is a crash in RecycleView when user very intensively clicks on the TabStrip favicon to close multiple tabs. The stack indicates that the recyclerView is trying to remove the same ViewHolder in two consecutive remove operations, and the second call would crash. The fix introduced in this CL is to early end the animation if we know for sure that this item is going to be removed. This should help with better identifying the ViewHolder to remove. This fix is inspired by the discussion here: https://b.corp.google.com/issues/34184109 and the CL here: https://critique.corp.google.com/#review/188055979/depot/google3/java/com/google/android/apps/play/music/app/ui/common/MediaListRecyclerFragment.java Even though we early end the animation, there should be no visible animation change from the UI perspective. Bug: 1045944 Change-Id: I0d8a7b098e17cdc86c4ae3227cd9dc1ba37b2adc Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2036874 Commit-Queue: Yue Zhang <yuezhanggg@chromium.org> Reviewed-by:
Wei-Yin Chen (陳威尹) <wychen@chromium.org> Cr-Commit-Position: refs/heads/master@{#738392}
-
Yue Zhang authored
Currently, when user uses swipe gesture to switch from a single tab to a tab in tab group, the tab strip doesn't show up. This is due to this tab selection doesn't fire a reset tab strip event. This CL fixes this issue and adds tests. Bug: 1048824 Change-Id: I05ad51709eb6274afc41f4fc6ddbd8ce396640a4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2037844Reviewed-by:
Wei-Yin Chen (陳威尹) <wychen@chromium.org> Commit-Queue: Yue Zhang <yuezhanggg@chromium.org> Cr-Commit-Position: refs/heads/master@{#738391}
-
tby authored
PS1 is the original reland, PS2 is the re-reland, including: 1. A fix for the original problem in structured_metrics_provider.cc 2. A test covering that case into s_m_p_unittest.cc 3. A deleted include that's no longer necessary after another CL. This is a reland of 4b79ed37 Original change's description: > Reland "[Structured metrics] Add metric collection and upload logic." > > This is a reland of 2fe77415 > > Original change's description: > > [Structured metrics] Add metric collection and upload logic. > > > > This is the final CL for the core of the structured metrics system. It > > ties together the KeyData class (for managing keys and computing hashes) > > with the metrics provider, and implements logic to: > > > > 1. Hash and store incoming structured metrics events. > > 2. Provide stored metrics events for upload. > > > > It also adds integration tests for the system, checking that an event > > created through the public API is correctly prepared for upload. > > > > Other misc changes: > > > > - Some minor refactoring of event_base.{h,cc} and equivalent changes > > to events_template.py, to fix some bad style. > > - Added a missing RemoveObserver call to the metrics provider dtor. > > > > Bug: 1016655 > > Change-Id: I3daae2ba7927742d26db8d5750538584bf13b94f > > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1975386 > > Commit-Queue: Tony Yeoman <tby@chromium.org> > > Reviewed-by: Andrew Moylan <amoylan@chromium.org> > > Cr-Commit-Position: refs/heads/master@{#735748} > > Bug: 1016655 > Change-Id: I83e69de7a9b865d35036b714f068cfda3c423b76 > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2026913 > Reviewed-by: Andrew Moylan <amoylan@chromium.org> > Commit-Queue: Tony Yeoman <tby@chromium.org> > Cr-Commit-Position: refs/heads/master@{#736590} Bug: 1016655 Change-Id: I54b06543c5ac3075cd1256d651d3232e6739c7a3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2034387 Commit-Queue: Tony Yeoman <tby@chromium.org> Reviewed-by:
Andrew Moylan <amoylan@chromium.org> Cr-Commit-Position: refs/heads/master@{#738390}
-
Khushal authored
The API docs mention that this flag should be added to buffers destined for HardwareComposer. It was inadvertantly removed in: https://chromium-review.googlesource.com/c/chromium/src/+/2036374 R=liberato@chromium.org,vikassoni@chromium.org Bug: 1021007 Change-Id: If8e3b8f8fad7219829d8866fead24b844baef9df Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2036486 Auto-Submit: Khushal <khushalsagar@chromium.org> Reviewed-by:
Frank Liberato <liberato@chromium.org> Commit-Queue: Khushal <khushalsagar@chromium.org> Cr-Commit-Position: refs/heads/master@{#738389}
-