- 31 Aug, 2019 28 commits
-
-
Miyoung Shin authored
This CL converts TextSuggestionHostPtr in blink and TextSuggestionHostRequest in content to the new Mojo types. Bug: 955171, 978694 Change-Id: Ic56dc8f8c4a2f2aacf0e0da073d0bef63d3b4186 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1777468Reviewed-by:
Oksana Zhuravlova <oksamyt@chromium.org> Reviewed-by:
Ted Choc <tedchoc@chromium.org> Commit-Queue: Miyoung Shin <myid.shin@igalia.com> Cr-Commit-Position: refs/heads/master@{#692316}
-
Miyoung Shin authored
This CL converts TextSuggestionBackendPtr in content and TextSuggestionBackendRequest in blink to the new Mojo types. Bug: 955171, 978694 Change-Id: I481157d60666e08ed26196cf1c78b54b7fdb1fa1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1777447Reviewed-by:
Oksana Zhuravlova <oksamyt@chromium.org> Reviewed-by:
Ted Choc <tedchoc@chromium.org> Commit-Queue: Miyoung Shin <myid.shin@igalia.com> Cr-Commit-Position: refs/heads/master@{#692315}
-
Miyoung Shin authored
This CL converts ReportingServiceProxyPtr in blink and ReportingServiceProxyRequest in content to the new Mojo types. Bug: 955171, 978694 Change-Id: Ied46648763bb6557220fd74f2c12440ab27bbad7 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1776143Reviewed-by:
Kinuko Yasuda <kinuko@chromium.org> Reviewed-by:
Adam Langley <agl@chromium.org> Reviewed-by:
Oksana Zhuravlova <oksamyt@chromium.org> Commit-Queue: Miyoung Shin <myid.shin@igalia.com> Cr-Commit-Position: refs/heads/master@{#692314}
-
Joshua Bell authored
Stores with (1) a keyPath (a.k.a. inline keys) and (2) autoIncrement (a.k.a. a key generator) have primary keys generated by the browser and inserted into objects lazily, since the renderer doesn't know what the primary keys will be when the object is serialized. Indexes might have a keyPath that references the same spot in the object. This is handled by checking if the keypaths match. If so, the browser synthesizes the index key (same as the primary key). But Chrome was not handling the case where the index had a compound key - a keypath that's an array, plucking multiple values out of the object. An object with unresolved keypaths would normally just not be indexed, per spec. But since the primary keys should be injected before the indexing occurs, these should be indexed. Fix this by sending the index keys from the renderer to the browser as an array with "holes" that need to be filled in. This is covered by an existing Web Platform Test, which we now pass. Bug: 701972 Change-Id: I14940b23cfcbb7f8b673143b402f574220184fd7 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1728058 Commit-Queue: Joshua Bell <jsbell@chromium.org> Reviewed-by:
Kenichi Ishibashi <bashi@chromium.org> Reviewed-by:
Chase Phillips <cmp@chromium.org> Cr-Commit-Position: refs/heads/master@{#692313}
-
Ryan Hamilton authored
Change-Id: If9c443341119cdd82d4f162b702abd7a15ed10d6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1773884 Commit-Queue: Ryan Hamilton <rch@chromium.org> Reviewed-by:
Zhongyi Shi <zhongyi@chromium.org> Cr-Commit-Position: refs/heads/master@{#692312}
-
Yannic Bonenberger authored
*** Note: There is no behavior change from this patch. *** This CL replaces calls to base::{Bind,BindRepeating} with calls to base::BindOnce, and removes calls to base::AdaptCallbackForRepeating when the returned base::RepeatingCallback is immediately converted to a base::OnceCallback. This CL was uploaded by git cl split. R=mmenke@chromium.org Bug: 714018 Change-Id: I8d6b6cea471f97bbf0a4aef8ea1882fc6c5d78bd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1778768Reviewed-by:
Matt Menke <mmenke@chromium.org> Commit-Queue: Matt Menke <mmenke@chromium.org> Commit-Queue: Yannic Bonenberger <contact@yannic-bonenberger.com> Auto-Submit: Yannic Bonenberger <contact@yannic-bonenberger.com> Cr-Commit-Position: refs/heads/master@{#692311}
-
chrome://dev-ui-loaderSamuel Huang authored
This CL adds the chrome://dev-ui-loader page (Android only) to install / the DevUI DFM (currently only supporting native resource splits). Design decisions from UX team for installation UI are: * Visiting the page triggers install / load flow automatically (i.e., no explicit "press to install" button). * Unlike other DFMs, DevUI DFM installation has minimal UI: No Toasts appear to indicate status, and no InfoBar appears if install fails to prompt retry (instead, one refreshes to retry). This simplifies code and avoids InfoBar-related race conditions. The fact that DevUI is intended only for developers justifies the minimalism. * Install failure leads to error message. Exact wording is TBD. On visiting chrome://dev-ui-loader: If the DevUI DFM is... * Not installed, then start installation. If this fails, then display error message and halt (refresh to retry). Else proceed to next step. * Installed but not loaded (i.e., dev_ui_resources.pak is not opened and mapped), then perform load. This is assumed to succeed always. When complete, proceed to the next step. * Installed and loaded, then redirect to chrome://chrome-urls, while excluding the page from history. The target page can be overridden by specifying the ?page= query param. The usual chrome:// restrictions are assumed to suffice in preventing abuse. Meanwhile, chrome://dev-ui-loader is located in the base module. Upcoming CLs to finish DevUI DFM (behind dfmify_dev_ui build flag): * Add specific chrome:// hosts into the DevUI DFM (multiple CLs). * On visiting the above hosts, if the DevUI DFM is not installed or not loaded, replace URL with chrome://dev-ui-loader URL to trigger install / load (Omnibox still shows original URL). Bug: 927131 Change-Id: Ibb7408a4f4701368e8d01183877a841c29716fcc Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1775208Reviewed-by:
Samuel Huang <huangs@chromium.org> Reviewed-by:
Andrew Grieve <agrieve@chromium.org> Reviewed-by:
Dan Beam <dbeam@chromium.org> Commit-Queue: Samuel Huang <huangs@chromium.org> Cr-Commit-Position: refs/heads/master@{#692310}
-
Yannic Bonenberger authored
*** Note: There is no behavior change from this patch. *** This CL replaces calls to base::{Bind,BindRepeating} with calls to base::BindOnce, and removes calls to base::AdaptCallbackForRepeating when the returned base::RepeatingCallback is immediately converted to a base::OnceCallback. This CL was uploaded by git cl split. R=mmenke@chromium.org Bug: 714018 Change-Id: Id81c3450f3dc9c2d4e0b9cf062b5ee43e1c71e30 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1778770Reviewed-by:
Matt Menke <mmenke@chromium.org> Commit-Queue: Matt Menke <mmenke@chromium.org> Commit-Queue: Yannic Bonenberger <contact@yannic-bonenberger.com> Auto-Submit: Yannic Bonenberger <contact@yannic-bonenberger.com> Cr-Commit-Position: refs/heads/master@{#692309}
-
Bryan McQuade authored
This ensures that the shouldGetPageLoadMetrics policy is applied consistently to all page load metrics, as some invoke notifyPageLoadMetrics directly, bypassing the check that was previously in notifySinglePageLoadMetric. Change-Id: Iecc8f88ae9a5062894513d89483238a52d8c3f5a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1773888Reviewed-by:
Benoit L <lizeb@chromium.org> Commit-Queue: Bryan McQuade <bmcquade@chromium.org> Cr-Commit-Position: refs/heads/master@{#692308}
-
Sergey Ulanov authored
This will allow to play video/mp2t streams on Fuchsia. Bug: b/139838994, 999736 Change-Id: Icd19b8e223af8ff2e6edb465f2f226b3130c2209 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1769349Reviewed-by:
Matthew Wolenetz <wolenetz@chromium.org> Commit-Queue: Matthew Wolenetz <wolenetz@chromium.org> Commit-Queue: Sergey Ulanov <sergeyu@chromium.org> Cr-Commit-Position: refs/heads/master@{#692307}
-
Renjie Tang authored
Change-Id: Ic3e3f8fdaac8f98d2855e1ec2b1f105eb906adbd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1772386 Commit-Queue: Renjie Tang <renjietang@chromium.org> Reviewed-by:
Ryan Hamilton <rch@chromium.org> Cr-Commit-Position: refs/heads/master@{#692306}
-
DongJun Kim authored
This patch is for replacing Platform::Current()->GetURLLoaderMockFactory() calls with "url_test_helpers::" under "third_party/blink/renderer/core/". It is initial stage of integrating all helper classes to frame_test_helpers. We will be able to remove url_test_helpers::calls in the future. Bug: 751425 Change-Id: I082468123023925be73883fab6e730a5356d3a3c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1745122 Commit-Queue: DongJun Kim <djmix.kim@samsung.com> Reviewed-by:
Yutaka Hirano <yhirano@chromium.org> Reviewed-by:
Kinuko Yasuda <kinuko@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Cr-Commit-Position: refs/heads/master@{#692305}
-
Carlos IL authored
This does not fix the issue when showing dialogs in a web contents that does not have a WebContentsModalDialogManager, but let's us fail in a controlled manner. Bug: 999011 Change-Id: I57ab762d9c560b01b76f2550b513c7edfef95bd3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1779173Reviewed-by:
Mike Wittman <wittman@chromium.org> Commit-Queue: Carlos IL <carlosil@chromium.org> Cr-Commit-Position: refs/heads/master@{#692304}
-
Alex Cooper authored
With the recent change to enforce referenceSpace requests, these tests were failing because the inline session did not request the local reference space. Bug: 996142 Change-Id: If0ef9e110df64498c2c73b2fdf0d4efa29ac111b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1779311 Commit-Queue: Alexander Cooper <alcooper@chromium.org> Commit-Queue: Brian Sheedy <bsheedy@chromium.org> Auto-Submit: Alexander Cooper <alcooper@chromium.org> Reviewed-by:
Brian Sheedy <bsheedy@chromium.org> Cr-Commit-Position: refs/heads/master@{#692303}
-
Erik Jensen authored
Chrome Remote Desktop on Linux sets up a dedicated virtual X server which runs its own desktop environment separate from any that the user may be logged into locally. Previously, we would attempt to launch a default session on boot. This had a few issues: 1. A full desktop environment would be running at all times, taking up resources even if the user only used CRD occasionally. 2. There was no guarantee that session we launched was the session the user wanted in CRD, especially when the system's default session might using a resource-hungry desktop environment. 3. Some desktop environments have trouble running multiple instances at the same time under the same user. This could result in detrimental effects when logging in locally, in some cases including not being able to log in locally at all after installing Chrome Remote Desktop. While all of these issues could be worked around by creating a custom ~/.chrome-remote-desktop-session file and customizing it appropriately, this was not very discoverable or user friendly. This patchset aims to address these issues by introducing a new session chooser that allows the user to pick from among the various session types installed on their machine. This chooser will appear by default when no custom session has been configured, but can still be overridden via /etc/chrome-remote-desktop-session or ~/.chrome-remote-desktop-session. By offering the user a choice of what session to launch, this addresses (2). It also addresses (1) and (3) because only the chooser dialog is launched at boot, and a desktop environment is only started when the user connects and selects a session type. Additionally, if the user logs out of their session, the CRD environment will return to the chooser, rather than immediately relaunching the full session. Change-Id: Iead83fdad0691384fcde66192ecbba832d03e2d1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1775932 Commit-Queue: Erik Jensen <rkjnsn@chromium.org> Reviewed-by:
Lambros Lambrou <lambroslambrou@chromium.org> Reviewed-by:
Jamie Walch <jamiewalch@chromium.org> Cr-Commit-Position: refs/heads/master@{#692302}
-
Adam Langley authored
There's a unittest that reaches into FidoCableDevice's internals, and thus needs to be a friend class, in order to check that the sequence numbers are being incremented. But the prior test already confirms that the encryption and decrypt is working as expected by checking inputs and outputs, and testing the behaviour is to be preferred to testing the internals. Therefore, delete that superfluous test and eliminate one of the friends. Another test needs to set the sequence counters. Better to add a testing interface for that than to expose all private members. Thus another friend can be dropped. Then |FidoCableDevice::EncryptionData| can be made private. Change-Id: I42ea49b14b4a4b4e0afa2a4e5490fa9075439fe8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1776796 Commit-Queue: Adam Langley <agl@chromium.org> Reviewed-by:
Martin Kreichgauer <martinkr@google.com> Cr-Commit-Position: refs/heads/master@{#692301}
-
Josh Nohle authored
Because the enroller sometimes owns the enrollment result passed to OnEnrollmentFinished(), a copy of the result is made before destroying the enroller instance. We also fix the signature of RecordEnrollmentResult() to accept the enrollment result as a const ref. Bug: 899080 Change-Id: I1f0057bb0ea9e13c981ea03b46d6218ee316459d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1779578 Commit-Queue: Josh Nohle <nohle@chromium.org> Commit-Queue: Kyle Horimoto <khorimoto@chromium.org> Auto-Submit: Josh Nohle <nohle@chromium.org> Reviewed-by:
Kyle Horimoto <khorimoto@chromium.org> Cr-Commit-Position: refs/heads/master@{#692300}
-
Jon Mann authored
Implements support for tracking the number of attempts to apply a given update as well as the ability to return a specific PendingNetworkConfigurationUpdate. Bug: 966270 Change-Id: I5b48292b51ce5cf1639af5f119b36b4e9d99e5b4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1775670 Commit-Queue: Jon Mann <jonmann@chromium.org> Reviewed-by:
Kyle Horimoto <khorimoto@chromium.org> Cr-Commit-Position: refs/heads/master@{#692299}
-
Yannic Bonenberger authored
*** Note: There is no behavior change from this patch. *** This CL replaces calls to base::{Bind,BindRepeating} with calls to base::BindOnce, and removes calls to base::AdaptCallbackForRepeating when the returned base::RepeatingCallback is immediately converted to a base::OnceCallback. This CL was uploaded by git cl split. R=mattm@chromium.org Change-Id: I8b415eafa1b618785870087c39e813d615e4e7ed Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1778550 Auto-Submit: Yannic Bonenberger <contact@yannic-bonenberger.com> Reviewed-by:
Matt Mueller <mattm@chromium.org> Commit-Queue: Matt Mueller <mattm@chromium.org> Cr-Commit-Position: refs/heads/master@{#692298}
-
Gary Kacmarcik authored
Change-Id: I50b6548b891a123c63b9513d469b51c0efd664b2 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1779402 Auto-Submit: Gary Kacmarcik <garykac@chromium.org> Reviewed-by:
Jamie Walch <jamiewalch@chromium.org> Commit-Queue: Jamie Walch <jamiewalch@chromium.org> Cr-Commit-Position: refs/heads/master@{#692297}
-
Lan Wei authored
We are adding a tentative API to experiment with dynamic delegation of "autoplay" capability, and it will work with run-time flag --enable-blink-features=ExperimentalAutoplayDynamicDelegation. We have a test page with this API, which will auto-play the video after click with the flag. http://mustaqahmed.github.io/web/autoplay-dynamic-delegation-tester.html Bug: 985914 Change-Id: I7756032bd8e18f55bc77fdb1929238ee724d8958 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1779012Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Mustaq Ahmed <mustaq@chromium.org> Reviewed-by:
Alex Moshchuk <alexmos@chromium.org> Commit-Queue: Lan Wei <lanwei@chromium.org> Cr-Commit-Position: refs/heads/master@{#692296}
-
chromium-autoroll authored
https://webrtc.googlesource.com/src.git/+log/8b14b0dea605..ed2fc50eb12d git log 8b14b0dea605..ed2fc50eb12d --date=short --no-merges --format='%ad %ae %s' 2019-08-30 chromium-webrtc-autoroll@webrtc-ci.iam.gserviceaccount.com Roll chromium_revision 291798b8..54ad211b (692040:692182) 2019-08-30 chromium-webrtc-autoroll@webrtc-ci.iam.gserviceaccount.com Roll chromium_revision ea980c90..291798b8 (691937:692040) 2019-08-30 phoglund@webrtc.org Adding CreateTcpClientSocket without user_agent and proxy_info. Created with: gclient setdep -r src/third_party/webrtc@ed2fc50eb12d If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/webrtc-chromium-autoroll Please CC webrtc-chromium-sheriffs-robots@google.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md TBR=webrtc-chromium-sheriffs-robots@google.com Bug: chromium:None,chromium:None Change-Id: I6c3974af983d7242de59d7ea047db572dcaff918 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1779444Reviewed-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@{#692295}
-
chromium-autoroll authored
https://chromium.googlesource.com/catapult.git/+log/9e1c92c073c9..354c81aceebe git log 9e1c92c073c9..354c81aceebe --date=short --no-merges --format='%ad %ae %s' 2019-08-30 crouleau@chromium.org [Telemetry] Don't check for broken expectations during benchmark run. Created with: gclient setdep -r src/third_party/catapult@354c81aceebe If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/catapult-autoroll Please CC skyostil@google.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md 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=skyostil@google.com Bug: chromium:985103,chromium:985103 Change-Id: I4f397430a3322ec2fe493dfbfcd40de684d47151 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1779527Reviewed-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@{#692294}
-
Ahmed Fakhry authored
In multi-profile sessions, simultaneously logged-in users share the same number of desks, but switching between users should restore the user's last active desk position. BUG=995374 TEST=Manually, expanded existing tests. Change-Id: I4dcc81eb02abbc8fbd94bcce618e00fa477ccb33 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1778594 Commit-Queue: Ahmed Fakhry <afakhry@chromium.org> Reviewed-by:
James Cook <jamescook@chromium.org> Cr-Commit-Position: refs/heads/master@{#692293}
-
Fritz Koenig authored
This reverts commit e78b3019. Reason for revert: Flipping the framebuffer is not correct. This flip results in the anti-aliasing being applied to the wrong locations. Original change's description: > cmaa : Flip internally allocated framebuffer > > MESA_framebuffer_flip_y needs the allocated framebuffer > to be setup to the same orientation. > > BUG=964010 > TEST=https://www.khronos.org/registry/webgl/sdk/tests/conformance/context/context-size-change.html?webglVersion=2 > > Change-Id: If7b7aaec176387e47c46c4f7337d686536375e8e > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1641666 > Reviewed-by: Antoine Labour <piman@chromium.org> > Commit-Queue: Fritz Koenig <frkoenig@chromium.org> > Cr-Commit-Position: refs/heads/master@{#666113} TBR=frkoenig@chromium.org,kbr@chromium.org,mcasas@chromium.org,piman@chromium.org # Not skipping CQ checks because original CL landed > 1 day ago. Bug: 964010, 996323 Change-Id: I3db041ea67e3dacac2bdd083c9f3fc2c15b02f0f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1779091Reviewed-by:
Kenneth Russell <kbr@chromium.org> Commit-Queue: Fritz Koenig <frkoenig@chromium.org> Cr-Commit-Position: refs/heads/master@{#692292}
-
Jamie Madill authored
This was fixed in ANGLE some time ago. Bug: None Change-Id: If92644285f2279cc34ce591f22e983d74f544792 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1779067Reviewed-by:
Nico Weber <thakis@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org> Cr-Commit-Position: refs/heads/master@{#692291}
-
Hesen Zhang authored
- The input was assumed sorted, and the implementation was based on that assumption. Now it is not guaranteed, and this CL is about to fix it. Bug: 998701 Change-Id: I1162dd225e66d5724b65fc9423334e05989c50b9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1774826 Commit-Queue: Hesen Zhang <hesen@chromium.org> Reviewed-by:
Xing Liu <xingliu@chromium.org> Cr-Commit-Position: refs/heads/master@{#692290}
-
chromium-autoroll authored
https://dawn.googlesource.com/dawn.git/+log/adbecedad5e0..58e68e0665ba git log adbecedad5e0..58e68e0665ba --date=short --no-merges --format='%ad %ae %s' 2019-08-30 bryan.bernhart@intel.com Disable flaky BC texture tests. 2019-08-30 enga@chromium.org Add dawn_perf_tests as a data_dep of dawn_perf_tests_temp_group Created with: gclient setdep -r src/third_party/dawn@58e68e0665ba If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/dawn-chromium-autoroll Please CC cwallez@google.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md CQ_INCLUDE_TRYBOTS=luci.chromium.try:dawn-linux-x64-deps-rel;luci.chromium.try:dawn-mac-x64-deps-rel;luci.chromium.try:dawn-win10-x64-deps-rel;luci.chromium.try:dawn-win10-x86-deps-rel TBR=cwallez@google.com Bug: None Change-Id: I205df7b2d12dfbaee29b9bfb3522a0dbee33ff87 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1779446Reviewed-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@{#692289}
-
- 30 Aug, 2019 12 commits
-
-
Marijn Kruisselbrink authored
This will help us get an idea of how much usage the API gets, and how the user is interacting with the various UI surfaces exposed by the API. Tbr: jam@chromium.org Bug: 968551 Change-Id: I2c19cc8a2a411dba9f04f76da879035b66ca8071 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1777059 Commit-Queue: Marijn Kruisselbrink <mek@chromium.org> Reviewed-by:
John Abd-El-Malek <jam@chromium.org> Reviewed-by:
Victor Costan <pwnall@chromium.org> Reviewed-by:
Mark Pearson <mpearson@chromium.org> Cr-Commit-Position: refs/heads/master@{#692288}
-
Kevin Marshall authored
Backtrace generation doesn't work for optimized official builds, so the StackTraceTest test is disabled for that case. Bug: 999737 Change-Id: If7e395d82bd77ba47cb63d33cfab1b66711f627a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1779566 Commit-Queue: Kevin Marshall <kmarshall@chromium.org> Auto-Submit: Kevin Marshall <kmarshall@chromium.org> Reviewed-by:
Wez <wez@chromium.org> Cr-Commit-Position: refs/heads/master@{#692287}
-
Erik Chen authored
This CL makes WebViewImpl stop inheriting from WebWidget. The main functional change is that WebViewImpl::MainFrameWidget now returns the actual WebWidget [assuming one exists] or else nullptr. Previously it always returns `this`. All non-test callers of MainFrameWidget have previously been audited, and problematic call sites fixed. Change-Id: Ifb585add3a0e397af338022c5e30d36bdd90f83b Bug: 995981 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1771350 Commit-Queue: Erik Chen <erikchen@chromium.org> Auto-Submit: Erik Chen <erikchen@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Cr-Commit-Position: refs/heads/master@{#692286}
-
Stephen Martinis authored
The builds are failing to find the 'utf-8' codec. This should hopefully help fixing the problem. Bug: 999461 Change-Id: I1d021974c12aab2ff365dcd95d87dc3ace5c1b70 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1779439Reviewed-by:
Robert Sesek <rsesek@chromium.org> Commit-Queue: Stephen Martinis <martiniss@chromium.org> Cr-Commit-Position: refs/heads/master@{#692285}
-
Tatiana Buldina authored
Fix screenshot size on Retina screen by setting scale = 1 / device_pixel_ratio Bug: chromedriver:752, chromedriver:2683 Change-Id: I1b378e2cda6f8b52f67337c754ae18cf2cb8130f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1772436Reviewed-by:
John Chen <johnchen@chromium.org> Commit-Queue: Tatiana Buldina <buldina@chromium.org> Cr-Commit-Position: refs/heads/master@{#692284}
-
vikas soni authored
This reverts commit cc108652. Reason for revert: Shared image video overlays seems to be broken on android K,L and M. Reverting until this issue is debugged and fixed. Original change's description: > Enable shared images by default on Android > > Bug: 900973 > Change-Id: I67570ec7f0fcf7daa9bd1234d17ae5a9c9b9bf23 > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1761634 > Reviewed-by: Bo <boliu@chromium.org> > Reviewed-by: Eric Karl <ericrk@chromium.org> > Commit-Queue: Peng Huang <penghuang@chromium.org> > Cr-Commit-Position: refs/heads/master@{#688744} TBR=penghuang@chromium.org,boliu@chromium.org,ericrk@chromium.org # Not skipping CQ checks because original CL landed > 1 day ago. Bug: 900973, 997574, 997579 Change-Id: I3c59ea1befcc5ea8bbff87ecdd69d56d7a85fe7b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1779180Reviewed-by:
vikas soni <vikassoni@chromium.org> Commit-Queue: vikas soni <vikassoni@chromium.org> Cr-Commit-Position: refs/heads/master@{#692283}
-
Joshua Bell authored
In cases where an array is being processed to generate a key (either a JS array, or an array key path), if an exception occurs the conversion needs to terminate immediately so that the exception can be delivered to script. Add early exits in a couple missing places, and add tests. Note that these cases are not reachable from script, because the conversion code is defined to run on "structured clones" of input data, so any getters that throw (for example) will have been filtered out by the previous serialize/deserialize process producing the clone. Change-Id: I53576eb1d47d23b0be4b712bc12e9de47078a419 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1777060 Commit-Queue: Joshua Bell <jsbell@chromium.org> Reviewed-by:
Kenichi Ishibashi <bashi@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Cr-Commit-Position: refs/heads/master@{#692282}
-
Aga Wronska authored
Bug: 935859 Test: ParentAccessViewTest Change-Id: Ie1ad5b0165e1f9c9387f0452b1b0f7cece1c5182 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1775555 Commit-Queue: Aga Wronska <agawronska@chromium.org> Reviewed-by:
Toni Baržić <tbarzic@chromium.org> Reviewed-by:
Mark Pearson <mpearson@chromium.org> Cr-Commit-Position: refs/heads/master@{#692281}
-
Anqing Zhao authored
The return value of method ReadTemperatureSensorInfo should honor the information source, rather than always set as false. Bug: None. Change-Id: If107543591c450693eef197e42c3878637ce43b8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1771601Reviewed-by:
Denis Kuznetsov <antrim@chromium.org> Commit-Queue: Anqing Zhao <anqing@google.com> Cr-Commit-Position: refs/heads/master@{#692280}
-
Fabrice de Gans-Riberi authored
* These files were in //fuchsia/engine but are now needed for tests outside of WebEngine. * Spin-off from https://crrev.com/c/1773707 Bug: 997895 Change-Id: I8361953162f9353fba8493a08ca984de0492b7f9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1778917 Auto-Submit: Fabrice de Gans-Riberi <fdegans@chromium.org> Commit-Queue: Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Wez <wez@chromium.org> Cr-Commit-Position: refs/heads/master@{#692279}
-
Tricia Crichton authored
This CL enables users in headless mode to specify download.default_directory using dot notation rather than constructing a nested dictionary. Support for the nested syntax is maintained. This matches the behavior for headed mode. Bug: chromedriver:3106 Change-Id: I8b225b83272b5ab15d176603bf6df43493c64a4f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1779427Reviewed-by:
John Chen <johnchen@chromium.org> Commit-Queue: Tricia Crichton <triciac@chromium.org> Cr-Commit-Position: refs/heads/master@{#692278}
-
Sky Malice authored
Bug: 997716 Change-Id: I1fbeeba09a9143c7e8029e5f102b6ea004947999 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1769515Reviewed-by:
Carlos Knippschild <carlosk@chromium.org> Reviewed-by:
Theresa <twellington@chromium.org> Commit-Queue: Sky Malice <skym@chromium.org> Cr-Commit-Position: refs/heads/master@{#692277}
-