- 20 Feb, 2019 40 commits
-
-
danakj authored
Allows usage only in .cc files (which won't leak out of test_runner) and the Web(Frame|View|Widget)TestProxy headers, which are not included in non-web-test code. Also restricts //content/shell from including the Web(Frame|View|Widget)TestProxy headers. R=jochen@chromium.org Bug: 912193 Change-Id: I82528217eeaa363f54f0fc102e1e5a9500f707a8 Reviewed-on: https://chromium-review.googlesource.com/c/1476462 Auto-Submit: danakj <danakj@chromium.org> Commit-Queue: Jochen Eisinger <jochen@chromium.org> Reviewed-by:
Albert J. Wong <ajwong@chromium.org> Reviewed-by:
Jochen Eisinger <jochen@chromium.org> Cr-Commit-Position: refs/heads/master@{#633867}
-
wutao authored
This patch replaces the Assistant icon to Mic icon and entering listening state if clicking the Mic. Bug: 924624 Test: manual Change-Id: I40e224254693178963f9fadb185818f4b902349b Reviewed-on: https://chromium-review.googlesource.com/c/1477514Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Reviewed-by:
Xiaohui Chen <xiaohuic@chromium.org> Commit-Queue: Tao Wu <wutao@chromium.org> Cr-Commit-Position: refs/heads/master@{#633866}
-
Robbie McElrath authored
Change-Id: I7b39e8d244b150ab4093c2dcee21ca9873934661 Reviewed-on: https://chromium-review.googlesource.com/c/1478471Reviewed-by:
Scott Violet <sky@chromium.org> Commit-Queue: Robbie McElrath <rmcelrath@chromium.org> Cr-Commit-Position: refs/heads/master@{#633865}
-
liberato@chromium.org authored
This CL turns off one-hot conversion for nominal features, and instead adds a similar effect directly in RandomTreeTrainer. Instead of converting each nominal feature of N values into N binary features, have the tree builder pick uniformly at random one of the N values to do the split. This choice is made without regard to the number of examples with a particular value, since that's what one- hot encoding would do. For example, if 9 examples have value "A" and 1 has value "B", then each "A" and "B" has a 50% chance of being the split point. For one-hot, there would be two binary features, and the split selection would similarly pick between them with equal probability. There is one difference between one-hot values, however. The current system still picks first, uniformly, a set of features to split on, then chooses (again uniformly) which value to split on this time. The first pick is different, since one-hot would give each value equal weight across multiple features. For example, if we have two features f1 and f2 with values {A,B} and {C,D,E,F}, then one-hot would pick a split uniformly over the resulting 6 features, each of which was a feature value in the original nominal. Now, we'll pick uniformly between f1 and f2, then uniformly again from either {A,B} or {C,D,E,F}, depending on whether we chose f1 and f2. With one-hot encoding, we had twice the chance to pick a f2 value than f1. We could emulate this when choosing features, but it seemed to work okay and is simpler. The reason this is faster is that, for M features of N nominal values each, one-hot would generate M*N features that would be searched over at each node. Now, we have only M features and then a search over N to pick the split. We could preserve this even if we fixed the discrepancy above. For FisherIrisDataset test with nominal features, locally this reduces the runtime of the test from ~325 msec to ~90 msec. Change-Id: I8a43963db8be7e7eb6eb8bb5efc64aefdc6ca67d Reviewed-on: https://chromium-review.googlesource.com/c/1478177 Commit-Queue: Frank Liberato <liberato@chromium.org> Reviewed-by:
Dan Sanders <sandersd@chromium.org> Cr-Commit-Position: refs/heads/master@{#633864}
-
Akihiro Ota authored
Adds new hotkey (modifier + a + f) for ChromeVox users to quickly get all supported text format attributes: bold, italic, underline, strike through, font family, font size, and color. Bug: 929414 Change-Id: Ia33463e4a3566aed34631964a28d537c7d14fbbc Reviewed-on: https://chromium-review.googlesource.com/c/1456210 Commit-Queue: Akihiro Ota <akihiroota@chromium.org> Reviewed-by:
David Tseng <dtseng@chromium.org> Cr-Commit-Position: refs/heads/master@{#633863}
-
Andrew Luo authored
Bug: 919221 Test: python /<sdk dir>/platform-tools/systrace/systrace.py -a org.chromium.webview_shell Change-Id: Id58f9a840ceaa6e88d11616e590091d2d588b901 Reviewed-on: https://chromium-review.googlesource.com/c/1478452 Commit-Queue: Andrew Luo <aluo@chromium.org> Reviewed-by:
Changwan Ryu <changwan@chromium.org> Reviewed-by:
Bo <boliu@chromium.org> Cr-Commit-Position: refs/heads/master@{#633862}
-
Caitlin Fischer authored
Change-Id: I7087dbf6199cb4634acb8371674053fc508ce495 Reviewed-on: https://chromium-review.googlesource.com/c/1477816 Commit-Queue: Caitlin Fischer <caitlinfischer@google.com> Reviewed-by:
Avi Drissman <avi@chromium.org> Reviewed-by:
Fabio Tirelo <ftirelo@chromium.org> Reviewed-by:
Tommy Martino <tmartino@chromium.org> Cr-Commit-Position: refs/heads/master@{#633861}
-
Morten Stenshorne authored
When loading via ScheduleNavigation(), we didn't change null URLs to about:blank. The test is quite meaningless when it doesn't crash, so it's not exported. Bug: 930065 Change-Id: Ia23d30fe85720627d231a18d7b5f1dcf3927e9fa Reviewed-on: https://chromium-review.googlesource.com/c/1459623Reviewed-by:
Dmitry Gozman <dgozman@chromium.org> Commit-Queue: Morten Stenshorne <mstensho@chromium.org> Cr-Commit-Position: refs/heads/master@{#633860}
-
Daniel Libby authored
This reverts commit 3e4749d2. Reason for revert: This change is no longer needed - we are no longer planning on removing the dependency from ui/base to ui/events Original change's description: > Create BUILD.gn in ui/base/idle > > This one step in a series of clean up refactoring changes > that will result in ui/base no longer having dependencies on > ui/events. This will allow ui/base to be treated more as the lowest > layer of the ui/ components. > > This change adds a BUILD.gn to ui/base/idle to create a new > component. This is in preparation of doing the same for > ui/base/user_activity which has a dependency on ui/events > (and on which ui/base/idle has a dependency). > > Bug: 921723 > Change-Id: I1b98d33ce8dfd78309fd532cbfc2bb013453c83f > Reviewed-on: https://chromium-review.googlesource.com/c/1428563 > Commit-Queue: Daniel Libby <dlibby@microsoft.com> > Reviewed-by: Scott Violet <sky@chromium.org> > Reviewed-by: Daniel Cheng <dcheng@chromium.org> > Cr-Commit-Position: refs/heads/master@{#627720} TBR=sadrul@chromium.org,sky@chromium.org,dcheng@chromium.org,dlibby@microsoft.com Bug: 921723 Change-Id: I80080945da2f2726ce79b477644b65e82b0e2ff2 Reviewed-on: https://chromium-review.googlesource.com/c/1478252Reviewed-by:
Scott Violet <sky@chromium.org> Commit-Queue: Daniel Libby <dlibby@microsoft.com> Cr-Commit-Position: refs/heads/master@{#633859}
-
Nancy Li authored
The file device_manager_test.mojom-lite.js is updated so add a '$' here to make it working. Bug: 931809 Change-Id: I3d1b3c469743bdce45c511079d833c1401cf7f2f Reviewed-on: https://chromium-review.googlesource.com/c/1479093 Auto-Submit: Nancy Li <nancyly@google.com> Commit-Queue: Reilly Grant <reillyg@chromium.org> Reviewed-by:
Reilly Grant <reillyg@chromium.org> Cr-Commit-Position: refs/heads/master@{#633858}
-
Matt Menke authored
This file should have been removed in https://chromium-review.googlesource.com/c/chromium/src/+/1417719, which converted the two remaining tests in that file to be TransportClientSocketPoolTest.SOCKS and TransportClientSocketPoolTest.TagSOCKSProxy, and removed the file from the build. Bug: 472729 Change-Id: I30ad81ecceaab75e84597ab3d162c65c4729cb31 Reviewed-on: https://chromium-review.googlesource.com/c/1479291Reviewed-by:
Asanka Herath <asanka@chromium.org> Commit-Queue: Matt Menke <mmenke@chromium.org> Cr-Commit-Position: refs/heads/master@{#633857}
-
Eric Orth authored
More resolves that only exist to warm the HostCache. Replaced with LoadIntoCache(). Bug: 922699 Change-Id: I88a842f388bbbf44b34eaf84c66a85079470cd1a Reviewed-on: https://chromium-review.googlesource.com/c/1477937 Commit-Queue: Asanka Herath <asanka@chromium.org> Reviewed-by:
Asanka Herath <asanka@chromium.org> Auto-Submit: Eric Orth <ericorth@chromium.org> Cr-Commit-Position: refs/heads/master@{#633856}
-
Thomas Anderson authored
Mac asan libraries don't provide operator new/delete unlike on Linux, so libc++ must provide them. BUG=933365 R=thakis Change-Id: I99dfe5aa7979721c0026bdb73845b1a8a012708e Reviewed-on: https://chromium-review.googlesource.com/c/1479392 Commit-Queue: Thomas Anderson <thomasanderson@chromium.org> Commit-Queue: Nico Weber <thakis@chromium.org> Auto-Submit: Thomas Anderson <thomasanderson@chromium.org> Reviewed-by:
Nico Weber <thakis@chromium.org> Cr-Commit-Position: refs/heads/master@{#633855}
-
Tommy Nyquist authored
The Google Play inline update feature previously needed to be enabled manually or from a server side configuration, but this CL makes it possible to do this directly from chrome://flags/#enable-inline-update-flow The forced update types (#force-update-menu-type) still overrides this though, to be able to test the feature without using the real backend after the feature is on by default. BUG=922714 Change-Id: I9a4f0b826a267c8c01cabd8d57679a35278c1938 Reviewed-on: https://chromium-review.googlesource.com/c/1478450Reviewed-by:
David Trainor <dtrainor@chromium.org> Reviewed-by:
Avi Drissman <avi@chromium.org> Commit-Queue: Tommy Nyquist <nyquist@chromium.org> Cr-Commit-Position: refs/heads/master@{#633854}
-
Eyor Alemayehu authored
Currently, we only track whether or not consent has been given to access a user's Web and App activity in Assistant. We do the tracking using a boolean preference flag. However, due to the need to handle the various consent error states, we need to replace the boolean flag with an integral one. The work in this CL is needed to provide a separate experience for GSuite users whose administrators have not granted access to Web & App activity. Design: go/gsuite-optin Bug: b:123638794 Change-Id: I4bfbde8b90b9b560ef2f6e29721e655051ad111d Reviewed-on: https://chromium-review.googlesource.com/c/1446779Reviewed-by:
Yusuke Sato <yusukes@chromium.org> Reviewed-by:
Hidehiko Abe <hidehiko@chromium.org> Reviewed-by:
Dan Beam <dbeam@chromium.org> Reviewed-by:
Dominic Battré <battre@chromium.org> Reviewed-by:
Xiaohui Chen <xiaohuic@chromium.org> Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Commit-Queue: Eyor Alemayehu <eyor@google.com> Cr-Commit-Position: refs/heads/master@{#633853}
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/c74512c7ff9e..5bb4470727b8 git log c74512c7ff9e..5bb4470727b8 --date=short --no-merges --format='%ad %ae %s' 2019-02-20 skia-autoroll@skia-public.iam.gserviceaccount.com Roll third_party/externals/swiftshader 93317ec84443..e205d343d90c (1 commits) 2019-02-20 brianosman@google.com Refactor and further generalization of particle model 2019-02-20 skia-autoroll@skia-public.iam.gserviceaccount.com Roll third_party/externals/swiftshader f4b99b674a1b..93317ec84443 (3 commits) 2019-02-20 egdaniel@google.com Fix setting of GL texture swizzle when using 1 for swizzle. Created with: gclient setdep -r src/third_party/skia@5bb4470727b8 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=jvanverth@chromium.org Change-Id: I0b2f41b2ba1f3ba684202dcd088d75c775e12204 Reviewed-on: https://chromium-review.googlesource.com/c/1479270Reviewed-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@{#633852}
-
Pedro Amaral authored
Currently we always disable the bottom toolbar home button in the NTP. This is a problem if the user has a homepage set. This CL makes it so the home button is only disabled if Clear Tabs is enabled or if a homepage is not set (not setting a homepage means the home button defaults to the NTP). Bug: 933431 Change-Id: I44ea34d21e42952b9ed07a09c0ad9e21ef712718 Reviewed-on: https://chromium-review.googlesource.com/c/1477760 Commit-Queue: Pedro Amaral <amaralp@chromium.org> Reviewed-by:
Matthew Jones <mdjones@chromium.org> Cr-Commit-Position: refs/heads/master@{#633851}
-
chromium-autoroll authored
https://chromium.googlesource.com/catapult.git/+log/e8ab7db4d4da..73105e25f71c git log e8ab7db4d4da..73105e25f71c --date=short --no-merges --format='%ad %ae %s' 2019-02-20 crouleau@chromium.org Add Simon as catapult owner Created with: gclient setdep -r src/third_party/catapult@73105e25f71c The AutoRoll server is located here: https://autoroll.skia.org/r/catapult-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:933445 TBR=sullivan@chromium.org Change-Id: I12b193a8e25fba69705586734477e873684b4ea3 Reviewed-on: https://chromium-review.googlesource.com/c/1479051Reviewed-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@{#633850}
-
Scott Violet authored
In classic ash IME would only stop processing if StopPropagation was called. In mash, IME was stopping processing if handled() was called. This patch changes mash so that it can distinguish between the two. Specifically mojom::TextInputClient::DispatchKeyEventPostIME() gets a boolean so that it has both handled and stopped_propagation so that logic can be wired up to match classic. BUG=931923 TEST=none Change-Id: Ica08929c4ce998c2f2af4fc8bf59a6b2081e97f2 Reviewed-on: https://chromium-review.googlesource.com/c/1477941 Commit-Queue: Scott Violet <sky@chromium.org> Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Reviewed-by:
Chris Palmer <palmer@chromium.org> Cr-Commit-Position: refs/heads/master@{#633849}
-
chromium-autoroll authored
https://android.googlesource.com/platform/external/perfetto.git/+log/74142cf4ffe7..c3f2ec7ab3ee git log 74142cf4ffe7..c3f2ec7ab3ee --date=short --no-merges --format='%ad %ae %s' 2019-02-20 fmayer@google.com Merge "profiling: Move demangling off device." Created with: gclient setdep -r src/third_party/perfetto@c3f2ec7ab3ee The AutoRoll server is located here: https://autoroll.skia.org/r/perfetto-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=perfetto-bugs@google.com Change-Id: I378e823744676c60de9f5c6e5f2771733298ec92 Reviewed-on: https://chromium-review.googlesource.com/c/1479271Reviewed-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@{#633848}
-
Wez authored
Move StartCastComponent() into the test fixture, and break out the CastChannel implementation to a separate helper class, for clarity. Also fixes WebComponent to be usable even if the caller does not provide a service-directory request handle to CreateComponent(). Bug: 918724, 893229 Change-Id: I9fafd6536d550240d79ee7baa7f4e653db823066 Reviewed-on: https://chromium-review.googlesource.com/c/1474647Reviewed-by:
Kevin Marshall <kmarshall@chromium.org> Commit-Queue: Kevin Marshall <kmarshall@chromium.org> Auto-Submit: Wez <wez@chromium.org> Cr-Commit-Position: refs/heads/master@{#633847}
-
Rohit Rao authored
Support for bundle_deps was largely already present, but not fully propagated through to the innermost GN rule. BUG=930859 Change-Id: I5150d062189d8d251a2bb756c67a9f843b2fbef3 Reviewed-on: https://chromium-review.googlesource.com/c/1478494Reviewed-by:
Justin Cohen <justincohen@chromium.org> Reviewed-by:
Sylvain Defresne <sdefresne@chromium.org> Commit-Queue: Rohit Rao <rohitrao@chromium.org> Cr-Commit-Position: refs/heads/master@{#633846}
-
Brandon Jones authored
Reland of https://chromium-review.googlesource.com/c/chromium/src/+/1343065 Incorporates fixes made by jacde@chromium.org (Thanks!) Deactivates XRFrame objects once the relevant callback returns, which causes future calls to the object methods to throw an exception. Bug: 906842 Change-Id: Ib635f56ed28b728434a08347b9d9fb98d1ecd694 Reviewed-on: https://chromium-review.googlesource.com/c/1363836 Commit-Queue: Brandon Jones <bajones@chromium.org> Reviewed-by:
Klaus Weidner <klausw@chromium.org> Cr-Commit-Position: refs/heads/master@{#633845}
-
Nico Weber authored
Bug: 926235 Change-Id: If8aad69145d67db353b17364d4e7c28ef38a7f51 Reviewed-on: https://chromium-review.googlesource.com/c/1477827 Commit-Queue: Nico Weber <thakis@chromium.org> Commit-Queue: anthonyvd <anthonyvd@chromium.org> Auto-Submit: Nico Weber <thakis@chromium.org> Reviewed-by:
Joe Downing <joedow@chromium.org> Reviewed-by:
anthonyvd <anthonyvd@chromium.org> Cr-Commit-Position: refs/heads/master@{#633844}
-
Bruce Dawson authored
On ARM64 builds of mini_installer the compiler generates calls to memcpy. Since we don't link mini_installer with the CRT (to guarantee that it is kept small) we have to implement this function. Bug: 931856 Change-Id: I3e1909b6ebf6255e0da981f20282562c33547a9b Reviewed-on: https://chromium-review.googlesource.com/c/1476527 Commit-Queue: Bruce Dawson <brucedawson@chromium.org> Reviewed-by:
Greg Thompson <grt@chromium.org> Cr-Commit-Position: refs/heads/master@{#633843}
-
Liquan(Max) Gu authored
The current implementation has a memory leak issue. TextPaintTimingDetector has two heaps which only allows adding but not removing. This leads to a memory leak issue. In a test case (see bug 922925) where new nodes keep generated and deleted, the memory leak is detected. To fix this issue, we use a cap as a stopping condition for tracking new nodes. The cap has already been in place but only used by recorded_text_node_ids_. We will extend it to the heaps. The stopping condition was triggered by the size of recorded_text_node_ids_, which was not in sync with the two heaps. In our change, we will make the three in sync so that the two heaps' deactivation will also be subjected to the same condition. More impl details: * We add a detached-node-set to record the detached nodes. Initially, when a node was detached, we completely forgot the record of it. Now, we keep it in detached-node-set until the node is reattached. * We replace the heaps with ordered set, which instruments the adding of detached-node-set. We used to use heap, which only allowed visiting the top of the heap each time. If the top had been erased, we discard the value. In this change, we need to support visiting the non-top as we no longer employ the discarding approach, so we need to replace the heap with the ordered set. Bug: 922925 Change-Id: Ie7d988bf077aa99ee776c7280c63ce39d51fa447 Reviewed-on: https://chromium-review.googlesource.com/c/1475907 Commit-Queue: Liquan (Max) Gu <maxlg@chromium.org> Reviewed-by:
Steve Kobes <skobes@chromium.org> Cr-Commit-Position: refs/heads/master@{#633842}
-
Justin Cohen authored
Now that the NTP can load asynchronously, don't show the network indicator, or the progress bar, when loading an NTP. Bug: 920669 Change-Id: I6e49e10716da50c529b609f0972b74bb67135daf Reviewed-on: https://chromium-review.googlesource.com/c/1471236 Commit-Queue: Justin Cohen <justincohen@chromium.org> Reviewed-by:
Gauthier Ambard <gambard@chromium.org> Reviewed-by:
Eugene But <eugenebut@chromium.org> Cr-Commit-Position: refs/heads/master@{#633841}
-
Collin Baker authored
This function gets called whenever a tab is reopened from the main menu, even if IPH isn't showing. As a result, DCHECKing which promo step we are on fails. To remove the DCHECK, a separate flag is used to track whether IPH is showing. This flag is queried to check whether to update the current step. Bug: 933329 Change-Id: I1cad6305cc95a3170ec784015e85c0a067d6522c Reviewed-on: https://chromium-review.googlesource.com/c/1478188Reviewed-by:
Peter Boström <pbos@chromium.org> Commit-Queue: Collin Baker <collinbaker@chromium.org> Cr-Commit-Position: refs/heads/master@{#633840}
-
Ian Kilpatrick authored
This patch reuses a lot of the logic we currently have to skip layout in LayoutNGMixin::CachedLayoutResult. It also moves this logic from ng_length_utils.cc to ng_layout_utils.cc We also make sure that if the constraint spaces don't match we force a layout of the child. Previously we were only performing a LayoutIfNeeded in this case, and as a result children not respecting the available size, etc. Bug: 635619, 928672 Change-Id: I36e248f1a7413f5becd2b39bdd2db25ca2843559 Reviewed-on: https://chromium-review.googlesource.com/c/1476263 Commit-Queue: Ian Kilpatrick <ikilpatrick@chromium.org> Reviewed-by:
Christian Biesinger <cbiesinger@chromium.org> Reviewed-by:
Morten Stenshorne <mstensho@chromium.org> Cr-Commit-Position: refs/heads/master@{#633839}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/e1834d8c6d38..b946458b8e6f Created with: gclient setdep -r src-internal@b946458b8e6f 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: Ie915472850c977ab69a0b79185d01160dd0e08ce Reviewed-on: https://chromium-review.googlesource.com/c/1477885Reviewed-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@{#633838}
-
Piotr Bialecki authored
Bug: 930797 Change-Id: I85048ef330fce15ed098876ad9aff8d7b4cdd367 Reviewed-on: https://chromium-review.googlesource.com/c/1476179Reviewed-by:
Andrew Grieve <agrieve@chromium.org> Commit-Queue: Piotr Bialecki <bialpio@chromium.org> Cr-Commit-Position: refs/heads/master@{#633837}
-
Caitlin Fischer authored
The parameters in the comment no longer existed in the function declaration. The return type had changed, too. Change-Id: I3118bf0d30ec9fd5df4373db6a9c6197770ba29d Reviewed-on: https://chromium-review.googlesource.com/c/1478499 Commit-Queue: Caitlin Fischer <caitlinfischer@google.com> Reviewed-by:
Fabio Tirelo <ftirelo@chromium.org> Reviewed-by:
Tommy Martino <tmartino@chromium.org> Cr-Commit-Position: refs/heads/master@{#633836}
-
Aaron Krajeski authored
Because HTMLCanvasElement::ShouldAccelerate always returned true if the AlwaysAccelerate finch trial was running, it would never hit the path where it creates a ContextProviderWrapper and checks that it is even POSSIBLE to create an accelerated canvas. This CL changes the logic of that function so that features::kAlwaysAccelerateCanvas simply bypasses all of the other heuristics, but still performs the check on the context provider. Bug: 930559 Change-Id: If4d52b6696424488c468fcaa779793dbec9e689b Reviewed-on: https://chromium-review.googlesource.com/c/1478484Reviewed-by:
enne <enne@chromium.org> Commit-Queue: Aaron Krajeski <aaronhk@chromium.org> Cr-Commit-Position: refs/heads/master@{#633835}
-
Tien Mai authored
The function FindUserBySID was not returning a successful result when it is passed no username or domain to fill even though the user was found. Bug: 933850 Change-Id: I97c9e208ea85695b94651029aac4c58b551beaa6 Reviewed-on: https://chromium-review.googlesource.com/c/1479091 Auto-Submit: Tien Mai <tienmai@chromium.org> Commit-Queue: Roger Tawa <rogerta@chromium.org> Reviewed-by:
Roger Tawa <rogerta@chromium.org> Cr-Commit-Position: refs/heads/master@{#633834}
-
Eric Orth authored
These all seem to extend from a copy/paste of code to set the mock resolver to synchronous mode, but there's no need to make a resolve afterwards. Bug: 922699 Change-Id: I439c7ba4bc37fa63314c48171c2a36a89c714135 Reviewed-on: https://chromium-review.googlesource.com/c/1477302 Auto-Submit: Eric Orth <ericorth@chromium.org> Commit-Queue: Zhongyi Shi <zhongyi@chromium.org> Reviewed-by:
Zhongyi Shi <zhongyi@chromium.org> Cr-Commit-Position: refs/heads/master@{#633833}
-
Edwin Joe authored
Added if guard before using submission_trace_id() and embed_trace_id() method of LocalSurfaceId in trace events to ensure that the LocalSurfaceId is valid when they are called. Bug: 931792 Change-Id: I6cd64feb7b94d84dcd2b4df2d558cf5c8fc904a1 Reviewed-on: https://chromium-review.googlesource.com/c/1478931Reviewed-by:
Saman Sami <samans@chromium.org> Commit-Queue: Edwin Joe <ejoe@google.com> Cr-Commit-Position: refs/heads/master@{#633832}
-
Manu Cornet authored
These are very useful for debugging, but also for some runtime checks that before this CL really didn't check anything, see |ShelfView|'s |GetAppListButton| and |GetBackButton| methods (those used to just resolve to "Button"). The runtime checks in |ShelfView| are also why some of these string class names are made publicly accessible (back button and app list button) while the others are returned inline in the overridden method. Change-Id: Ia775f961fd6b9f1107659105d94020b13de8e9c5 Reviewed-on: https://chromium-review.googlesource.com/c/1477613Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Commit-Queue: Manu Cornet <manucornet@chromium.org> Cr-Commit-Position: refs/heads/master@{#633831}
-
Evan Stade authored
mash_fyi_interactive_ui_tests: - LocationIconViewTest.HideOnSecondClick - MouseEventsTest.MouseOver Bug: none Change-Id: Iea021f7e500848bf25d9afd0f061c2a58dc20ee0 Reviewed-on: https://chromium-review.googlesource.com/c/1479190 Auto-Submit: Evan Stade <estade@chromium.org> Commit-Queue: James Cook <jamescook@chromium.org> Reviewed-by:
James Cook <jamescook@chromium.org> Cr-Commit-Position: refs/heads/master@{#633830}
-
David Bokan authored
The crash is a SegFault at 0x1c which is consistent with ScrollNode::user_scrollable_horizontal's position in ScrollNode. This is a stop-gap to prevent crashing in stable. Once it's confirmed and merged I'll investigate the underlying cause and real fix. Bug: 924068 Change-Id: I7a613b945176d54116c15feaf7f5fdc91833735a Reviewed-on: https://chromium-review.googlesource.com/c/1478373Reviewed-by:
Robert Flack <flackr@chromium.org> Commit-Queue: David Bokan <bokan@chromium.org> Cr-Commit-Position: refs/heads/master@{#633829}
-
chromium-autoroll authored
https://dawn.googlesource.com/dawn.git/+log/f20f5b94939e..938811eef933 git log f20f5b94939e..938811eef933 --date=short --no-merges --format='%ad %ae %s' 2019-02-20 yunchao.he@intel.com Use const*const* to annotate color state descriptors Created with: gclient setdep -r src/third_party/dawn@938811eef933 The AutoRoll server is located here: https://autoroll.skia.org/r/dawn-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: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: Ic306db9b20de6093e1db31fa1e0e1ab5dc248a95 Reviewed-on: https://chromium-review.googlesource.com/c/1479050Reviewed-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@{#633828}
-