- 14 May, 2020 40 commits
-
-
sandromaggi authored
This prototype implements the design doc. It allows the fallback handler of Autofill actions to click a base element, wait for a specific option to appear and click it. Bug: b/156238665 Change-Id: I4bc61b1dd6036616e09f21b1375aa883154649c7 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2193580 Commit-Queue: Sandro Maggi <sandromaggi@google.com> Reviewed-by:
Mathias Carlen <mcarlen@chromium.org> Reviewed-by:
Marian Fechete <marianfe@google.com> Cr-Commit-Position: refs/heads/master@{#768733}
-
chromium-autoroll authored
https://chromium.googlesource.com/devtools/devtools-frontend.git/+log/457095815d1f..8ad44a779e85 git log 457095815d1f..8ad44a779e85 --date=short --first-parent --format='%ad %ae %s' 2020-05-14 caseq@chromium.org Ignore getResourceTree responses with invalid URLs 2020-05-14 tvanderlippe@chromium.org Update TypeScript to 3.9.2 2020-05-14 tvanderlippe@chromium.org Emit fixes for TypeScript 3.9.2 Created with: gclient setdep -r src/third_party/devtools-frontend/src@8ad44a779e85 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/devtools-frontend-chromium Please CC devtools-waterfall-sheriff-onduty@grotations.appspotmail.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 Bug: chromium:1011811,chromium:10781354,chromium:1081270 Tbr: devtools-waterfall-sheriff-onduty@grotations.appspotmail.com Change-Id: Ie94d4ab113ca211fa78cc668fdf2fb38dfb994b3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2200743Reviewed-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@{#768732}
-
Jinsuk Kim authored
ContextMenuHelper and ContextMenuPopulator refer to each other. This CL breaks the dependency by the populator having its own native layer to process the tasks. This leaves ContextMenuPopulator free of the reference to Context- MenuPopulator, effectively allowing for the definition of a modularized build target chrome/browser/contextmenu:java. Bug: 952703 Change-Id: I2bdabe167e2c98a1d2fef24eb68af993d3beab57 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2172176 Commit-Queue: Jinsuk Kim <jinsukkim@chromium.org> Reviewed-by:
Theresa <twellington@chromium.org> Cr-Commit-Position: refs/heads/master@{#768731}
-
chromium-autoroll authored
https://webrtc.googlesource.com/src.git/+log/b088a952ee9f..2e2f67443e9c git log b088a952ee9f..2e2f67443e9c --date=short --first-parent --format='%ad %ae %s' 2020-05-14 eshr@google.com Add VideoStreamEncoder tests for DegredationPreference switching. 2020-05-14 danilo.bargen@threema.ch docs: Improve Android testing docs Created with: gclient setdep -r src/third_party/webrtc@2e2f67443e9c 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 Bug: None Tbr: webrtc-chromium-sheriffs-robots@google.com Change-Id: I9b6991fcda8a1078b16ad38a171fb5cc12157c62 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2200744Reviewed-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@{#768730}
-
Stephen Nusko authored
This allows us to base our determination of jank based on how frequently chrome SHOULD be outputting a frame to smoothly have the scroll happen. We fall back to assuming a 60 FPS device if we don't have these trace events. Change-Id: I41c677860c76cc337add8be5df26008c194d7afd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2199468 Commit-Queue: Stephen Nusko <nuskos@chromium.org> Commit-Queue: Mikhail Khokhlov <khokhlov@google.com> Auto-Submit: Stephen Nusko <nuskos@chromium.org> Reviewed-by:
Mikhail Khokhlov <khokhlov@google.com> Cr-Commit-Position: refs/heads/master@{#768729}
-
Maksim Sisov authored
We used to be using complicated logic how to reroute and process events based on the assumption that it must be the toplevel menu window receiving located events, etc. However, there is an easier way to determine what window should receive the events, etc. 1) Remove unnecessary bits in CanDispatchEvent and return true iff the window has focus. 2) Add Grab/UnGrabEvents methods to WaylandWindowManager - it is going to tell WaylandWindows what window should finally get the event. 3) Fix the DispatchEvent so that: - It reroutes all keyboard events to root parent wayland window. - It reroutes events to the event grabber (and fixes the location of the events as it used to be doing) iff it belongs to the same "family" aka the event grabber and original event dispatcher has the same root parent window. 4) Fix the tests verifying that: - WaylandWindows process the events based on the state of the focus. - The dispatcher honors the event grabber and reroutes the events the same way as it used to be before (PlatformWindowDelegate doesn't see any changes in the logic and continues to operate as it used to operate before). - The event grabber doesn't receive events if they were initially sent to another window that doesn't belong to its family. 5) Do not set implicit capture on mouse press events. Also remove the bits related to that. Bug: 1079221 Change-Id: Iaf2fd175f6ede6779d58863832245dca87178d60 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2187313 Commit-Queue: Maksim Sisov <msisov@igalia.com> Reviewed-by:
Nick Yamane <nickdiego@igalia.com> Reviewed-by:
Robert Kroeger <rjkroege@chromium.org> Cr-Commit-Position: refs/heads/master@{#768728}
-
Wei-Yin Chen (陳威尹) authored
Show single-tab tab switcher in Instant start. Bug: 1065314, 1065902 Change-Id: Id4826695fcb9d160b871c1c1b61fd1a11a02841f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2167711 Commit-Queue: Wei-Yin Chen (陳威尹) <wychen@chromium.org> Reviewed-by:
Xi Han <hanxi@chromium.org> Cr-Commit-Position: refs/heads/master@{#768727}
-
Maria Kazinova authored
Storing and sending unique IDs in AutofillFormData/AutofillFormFieldData as numeric values leads to hard to catch bugs in ObjectiveC/Javascript communication, thus I'm storing them as strings. Bug: 1075444 Change-Id: If55497fd2a130d6222246be62110cabd7c15c822 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2199459Reviewed-by:
Olivier Robin <olivierrobin@chromium.org> Reviewed-by:
Vadym Doroshenko <dvadym@chromium.org> Commit-Queue: Maria Kazinova <kazinova@google.com> Cr-Commit-Position: refs/heads/master@{#768726}
-
Anders Hartvoll Ruud authored
This CL adds a small test framework for unit testing the MPC, along with some very basic tests. An special Key constructor which accepts a specific hash value is added to make testing reliable. (Otherwise there might be collisions for tests which add multiple entries to the cache). Bug: 1057072 Change-Id: Ibf8da90997ee8fcb4776c7b39aea0f23ae636a0b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2193681 Commit-Queue: Anders Hartvoll Ruud <andruud@chromium.org> Reviewed-by:
Xiaocheng Hu <xiaochengh@chromium.org> Cr-Commit-Position: refs/heads/master@{#768725}
-
chromium-autoroll authored
https://android.googlesource.com/platform/external/perfetto.git/+log/d8cb80d7a786..9eaf6cc64b84 git log d8cb80d7a786..9eaf6cc64b84 --date=short --first-parent --format='%ad %ae %s' 2020-05-14 primiano@google.com Merge "Content-type for wasm files in tools/dev_server" Created with: gclient setdep -r src/third_party/perfetto@9eaf6cc64b84 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/perfetto-chromium-autoroll Please CC perfetto-bugs@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:linux-perfetto-rel Bug: None Tbr: perfetto-bugs@google.com Change-Id: I30d39c3bc5f8a38f4e5c6f6a6a7a933ecb59eaf4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2200741Reviewed-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@{#768724}
-
Danil Chapovalov authored
Change Log: https://chromium.googlesource.com/external/github.com/abseil/abseil-cpp/+log/a35ef8a62c..f2bc9d11e8 Full diff: https://chromium.googlesource.com/external/github.com/abseil/abseil-cpp/+/a35ef8a62c..f2bc9d11e8 Bug: None Change-Id: Icdc26614abbf81404391ead6a5918d16f09f2914 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2199348Reviewed-by:
Mirko Bonadei <mbonadei@chromium.org> Commit-Queue: Danil Chapovalov <danilchap@chromium.org> Cr-Commit-Position: refs/heads/master@{#768723}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/c7d195b7c991..ff46862e0fb2 Created with: gclient setdep -r src-internal@ff46862e0fb2 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://skia-autoroll.corp.goog/r/src-internal-chromium-autoroll Please CC amraboelkher@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.chrome.try:linux-chromeos-chrome Bug: None Tbr: amraboelkher@google.com Change-Id: Ie5f4b2b41753e869824bc1d9e202ddb974dd6e3d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2200736Reviewed-by:
chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Reviewed-by:
Amr Aboelkher <amraboelkher@google.com> Commit-Queue: chromium-internal-autoroll <chromium-internal-autoroll@skia-corp.google.com.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#768722}
-
Mark Pearson authored
when Javascript is blocked by default I.e., for the small fraction of users who block Javascript by default, allow them to enable it easily. No need to explicitly go into settings and type or paste in the hostname to add an exception. Tested interactively. Bug: 1054648 Change-Id: I78976cbc353b7108cca180512a54379056e4b0ec Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2174597 Auto-Submit: Mark Pearson <mpearson@chromium.org> Commit-Queue: Finnur Thorarinsson <finnur@chromium.org> Reviewed-by:
Finnur Thorarinsson <finnur@chromium.org> Cr-Commit-Position: refs/heads/master@{#768721}
-
chromium-autoroll authored
https://chromium.googlesource.com/devtools/devtools-frontend.git/+log/b8584478ddff..457095815d1f git log b8584478ddff..457095815d1f --date=short --first-parent --format='%ad %ae %s' 2020-05-14 pfaffe@chromium.org Libraryize the symbol server 2020-05-14 paulirish@chromium.org Audits: Roll Lighthouse 6.0.0 (7e4fa5587) 2020-05-14 kayce@google.com Add WNDT84 Created with: gclient setdep -r src/third_party/devtools-frontend/src@457095815d1f If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/devtools-frontend-chromium Please CC devtools-waterfall-sheriff-onduty@grotations.appspotmail.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 Bug: chromium:772558,chromium:986998 Tbr: devtools-waterfall-sheriff-onduty@grotations.appspotmail.com Change-Id: If439e0b4ccdb8da774e580dfe6a065c04c988256 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2200739Reviewed-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@{#768720}
-
Omid Tourzan authored
Used existing flex div rule (button-group) to group button(s) and push them to the other end instead of absolute positioning which causes overlap. There is an opportunity to make it more flexible in case of extreme squeezing of window by css ellipsis but leave it now to get UX confirmation. Bug: 1082539 Change-Id: I6257f077ddaab2c6c83e081d3b186371283fbce0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2198703 Commit-Queue: Omid Tourzan <oto@chromium.org> Reviewed-by:
Noel Gordon <noel@chromium.org> Cr-Commit-Position: refs/heads/master@{#768719}
-
Alex Chau authored
- Introduced new SharingPreferVapid flag in the tiral Bug: 1044607 Change-Id: I0ee1c7109593db923146ea8c8ca317d20fd9f894 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2198966Reviewed-by:
Alexei Svitkine <asvitkine@chromium.org> Commit-Queue: Alex Chau <alexchau@chromium.org> Cr-Commit-Position: refs/heads/master@{#768718}
-
David Roger authored
The DiceTabHelper is attached to the tab at the beginning of a signin flow that are started from Chrome UI, and can be used to tell whether a signin flow was started in a given tab. This CL now also tracks the end of the signin flow: as the flow progresses and completes, the DiceTabHelper is notified, and now is able to tell if the sync signin flow is currently in progress. This information is then passed to the DiceWebSigninInterceptor, which uses it to decide if the signin is a sync signin or a web signin. Note that this is slightly approximative, as the user can abort the sync signin and do a web signin in the same tab instead. Since the ProcessDiceDelegateImpl now needs to know about the DiceTabHelper, the code can be simplified: parameters of ProcessDiceDelegateImpl are removed and instead the ProcessDiceDelegateImpl gets the information from the DiceTabHelper directly. Bug: 1076880 Change-Id: I0c91c1404f4198d8759b42577accc6b3b7600168 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2185050 Commit-Queue: David Roger <droger@chromium.org> Reviewed-by:
Jan Krcal <jkrcal@chromium.org> Cr-Commit-Position: refs/heads/master@{#768717}
-
Stepan Khapugin authored
New name better matches style guide. Bug: none Change-Id: I8fdf0bf918cb0f2042acebf47ef01d224fe1dd7b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2193074 Auto-Submit: Stepan Khapugin <stkhapugin@chromium.org> Reviewed-by:
Olivier Robin <olivierrobin@chromium.org> Commit-Queue: Olivier Robin <olivierrobin@chromium.org> Cr-Commit-Position: refs/heads/master@{#768716}
-
chromium-autoroll authored
https://chromium.googlesource.com/catapult.git/+log/087cffcba472..f80ec7eedf59 git log 087cffcba472..f80ec7eedf59 --date=short --first-parent --format='%ad %ae %s' 2020-05-14 abennetts@google.com pinpoint-ux: Use a Jinja2 template for the "differences found" message. Created with: gclient setdep -r src/third_party/catapult@f80ec7eedf59 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 nuskos@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:chromeos-kevin-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:1069331 Tbr: nuskos@google.com Change-Id: I926b32378441dd0e0c231100ff2570398d5726ea Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2200600Reviewed-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@{#768715}
-
Hsin-Yi Wang authored
Skip test cases that fails on elm/hana for kernelnext as well. BUG=b:156319984 TEST=build binary and run on elm-kernelnext Change-Id: I12b55012d8de481d5c4fe93ce81209ce696e8e80 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2196882Reviewed-by:
Alexandre Courbot <acourbot@chromium.org> Commit-Queue: Hsin-Yi Wang <hsinyi@chromium.org> Cr-Commit-Position: refs/heads/master@{#768714}
-
Yutaka Hirano authored
Print the QuicTransport handshake failure reason to devtools console. To do that, add |reason| parameter to QuicTransportHandshakeClient.OnHandshakeFailed message. The reason string is captured and passed to the devtools in the browser process and blink::QuicTransport doesn't see the reason string in order to avoid security / privacy problems. Bug: 1069744 Change-Id: I3b6250bda9cfa8ba402d53c033d8ede4616c24d3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2189716 Commit-Queue: Yutaka Hirano <yhirano@chromium.org> Reviewed-by:
Andrey Kosyakov <caseq@chromium.org> Reviewed-by:
Kinuko Yasuda <kinuko@chromium.org> Reviewed-by:
Victor Vasiliev <vasilvv@chromium.org> Cr-Commit-Position: refs/heads/master@{#768713}
-
Rachel Carpenter authored
CIPD package: https://chrome-infra-packages.appspot.com/p/chromeos_internal/apps/help_app/app/+/2-qOcOasdsOBSeuuk0i7nSS6i3i8VeOt-lPAW8ZcGrwC Release notes: http://go/help_app-x20/relnotes/Nightly/help_app_20200513_RC00.html Cq-Include-Trybots: chrome/try:linux-chromeos-chrome Change-Id: Ic074708f30be119e06036b2f6601bbdc98c2067d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2198847 Commit-Queue: Rachel Carpenter <carpenterr@chromium.org> Reviewed-by:
Bugs Nash <bugsnash@chromium.org> Cr-Commit-Position: refs/heads/master@{#768712}
-
Michael Lippautz authored
This restores previous state where we would (a) discard pages, and (b) compact on testing GCs that run without stack. Bug: chromium:1079150, chromium:1082136, chromium:1077663 Change-Id: I53fa1e97a2537aa93d41772ace1f1c803deaa342 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2199152Reviewed-by:
Kentaro Hara <haraken@chromium.org> Commit-Queue: Michael Lippautz <mlippautz@chromium.org> Cr-Commit-Position: refs/heads/master@{#768711}
-
chromium-autoroll authored
https://chromium.googlesource.com/angle/angle.git/+log/664376e20ab2..3a9098412b8c git log 664376e20ab2..3a9098412b8c --date=short --first-parent --format='%ad %ae %s' 2020-05-14 cnorthrop@google.com Perf: Add Reset call to trace tests 2020-05-14 cnorthrop@google.com Perf: Detect context used by trace Created with: gclient setdep -r src/third_party/angle@3a9098412b8c If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/angle-chromium-autoroll Please CC geofflang@chromium.org 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-asan;luci.chromium.try:win_optional_gpu_tests_rel;luci.chromium.try:linux-swangle-try-x64;luci.chromium.try:win-swangle-try-x86 Bug: None Tbr: geofflang@chromium.org Change-Id: Ib2951ef463f3faeba50ea0dc14dd2476fa2c09e8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2200610Reviewed-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@{#768710}
-
Manuel Rego Casasnovas authored
This patch stores outline-offset as a LayoutUnit and it provides a method ComputedStyle::OutlineOffsetInt() to use it in the rest of the code without modifications. BUG=1068107 TEST=external/wpt/css/css-ui/parsing/outline-offset-computed.html Change-Id: Ice8a425b73fc7ba179411a951d91ac1fef345f00 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2199456Reviewed-by:
Rune Lillesveen <futhark@chromium.org> Commit-Queue: Manuel Rego <rego@igalia.com> Cr-Commit-Position: refs/heads/master@{#768709}
-
Anders Hartvoll Ruud authored
It's a bit strange that the MatchedPropertiesCache doesn't know how to hash its own key, and that this instead happens in StyleResolver. It looks like it's done this way to prevent calculation of the hash value twice (first when checking if there's a cache entry, and then once again when it's being added to the cache). In order for CachedMatchedProperties to take ownership of the caching, but also prevent calculating the hash twice, this CL introduces CachedMatchedProperties::Key which can be instantiated at the call- site. There should be no functional change in this CL. Bug: 1057072 Change-Id: I5ba0b8b59009f67318a610f3da51254f77dfecd8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2193772 Commit-Queue: Anders Hartvoll Ruud <andruud@chromium.org> Reviewed-by:
Xiaocheng Hu <xiaochengh@chromium.org> Cr-Commit-Position: refs/heads/master@{#768708}
-
Roman Sorokin authored
Caused issues with CFM enrollment - Mojo host does not support all kiosk apps yet. Bug: 1077009 Change-Id: I00639777f9fa45d85bf459148ff4a1e1ffc50d6f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2199063 Commit-Queue: Roman Sorokin [CET] <rsorokin@chromium.org> Reviewed-by:
Renato Silva <rrsilva@google.com> Cr-Commit-Position: refs/heads/master@{#768707}
-
Kuo Jen Wei authored
Instead of querying tablet state with ChromeHelper.isTabletMode(), flip 'tablet' state when state change. Bug: 1024118 Test: tast run <DUT> "camera.CCAUI*" Change-Id: I440c49ef2550743a8c6238cff2c0363d732495b3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2192131Reviewed-by:
Shik Chen <shik@chromium.org> Commit-Queue: Kuo Jen Wei <inker@chromium.org> Auto-Submit: Kuo Jen Wei <inker@chromium.org> Cr-Commit-Position: refs/heads/master@{#768706}
-
Kuo Jen Wei authored
Bug: 1024118 Test: Manually verify the event is sent to GA correctly. Change-Id: I580dcbfe425b3f9d32d2cacef83e9b4fd0ca10b1 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2198757Reviewed-by:
Shik Chen <shik@chromium.org> Commit-Queue: Kuo Jen Wei <inker@chromium.org> Auto-Submit: Kuo Jen Wei <inker@chromium.org> Cr-Commit-Position: refs/heads/master@{#768705}
-
Maria Kazinova authored
filling. Bug: 1075444 Change-Id: I5dac3a71857eb98bff0e83eb49052bf08248e567 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2196389 Commit-Queue: Maria Kazinova <kazinova@google.com> Reviewed-by:
Eugene But <eugenebut@chromium.org> Reviewed-by:
John Wu <jzw@chromium.org> Reviewed-by:
Vadym Doroshenko <dvadym@chromium.org> Cr-Commit-Position: refs/heads/master@{#768704}
-
Simon Zünd authored
This CL adds an empty AuditsHandler to RenderFrameDevToolsAgentHost. The plan is to send and store issues directly in the browser process (if they originate from the browser) instead of sending them to a renderer process first. R=sigurds@chromium.org Bug: chromium:1063007 Change-Id: Ifd6c3849bf0fc5acbeaaa31b66193c88d4dea363 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2198964 Commit-Queue: Simon Zünd <szuend@chromium.org> Reviewed-by:
Sigurd Schneider <sigurds@chromium.org> Cr-Commit-Position: refs/heads/master@{#768703}
-
Rune Lillesveen authored
We set the used color-scheme on the owner element for select, date pop-ups, etc. as the preferred color-scheme for the document used to render the popup so that we can utilize @media queries to implement light/dark theme in the UA. Additionally added a null check to fix 1082389. Bug: 929098, 1082389 Change-Id: Ifec2296e5a04d25e1837186b5d264172129fb041 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2196170 Commit-Queue: Rune Lillesveen <futhark@chromium.org> Reviewed-by:
Anders Hartvoll Ruud <andruud@chromium.org> Cr-Commit-Position: refs/heads/master@{#768702}
-
chromium-autoroll authored
fuchsia/third_party/aemu/linux-amd64/+log/LGuw6.....ntzwg... Created with: gclient setdep -r src/third_party/aemu-linux-x64@ntzwg... If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/fuchsia-aemu-chromium-autoroll Please CC chonggu@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 Bug: None Tbr: chonggu@google.com Change-Id: Icc6e35fde4b2c368e7c585560a09d382e078ec1f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2200612Reviewed-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@{#768701}
-
David Jean authored
Add also direct password use metrics (when no UI is presented by the extension) Bug: 1066804 Change-Id: I9de44d4dcef79c64574a0dcf27b928fd60ff5fc5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2193693Reviewed-by:
Brian White <bcwhite@chromium.org> Reviewed-by:
Eric Noyau <noyau@chromium.org> Reviewed-by:
Javier Ernesto Flores Robles <javierrobles@chromium.org> Commit-Queue: David Jean <djean@chromium.org> Cr-Commit-Position: refs/heads/master@{#768700}
-
chromium-autoroll authored
https://chromium.googlesource.com/devtools/devtools-frontend.git/+log/7bf4d03c5810..b8584478ddff git log 7bf4d03c5810..b8584478ddff --date=short --first-parent --format='%ad %ae %s' 2020-05-14 yangguo@chromium.org More specific OWNERS where appropriate 2020-05-14 devtools-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com Update DevTools Chromium DEPS. 2020-05-14 bmeurer@chromium.org [wasmparser] Use standardized text format for variable instructions. Created with: gclient setdep -r src/third_party/devtools-frontend/src@b8584478ddff If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/devtools-frontend-chromium Please CC devtools-waterfall-sheriff-onduty@grotations.appspotmail.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 Bug: chromium:1043031 Tbr: devtools-waterfall-sheriff-onduty@grotations.appspotmail.com Change-Id: I978013b8f7464fd6a6be540bce173eeb6e2d0ab8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2200613Reviewed-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@{#768699}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/74dda68dbe06..c7d195b7c991 Created with: gclient setdep -r src-internal@c7d195b7c991 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://skia-autoroll.corp.goog/r/src-internal-chromium-autoroll Please CC hajimehoshi@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.chrome.try:linux-chromeos-chrome Bug: None Tbr: hajimehoshi@google.com Change-Id: I31a43bff017d5d7241e2cbbaa0845f24904e743a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2200607Reviewed-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@{#768698}
-
Yao Xiao authored
Bug: 1062736 Change-Id: I030401389a7fe0f6a2f59d84636abae362d042c5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2184952 Commit-Queue: Yao Xiao <yaoxia@chromium.org> Reviewed-by:
Mikel Astiz <mastiz@chromium.org> Cr-Commit-Position: refs/heads/master@{#768697}
-
Ben Goldberger authored
Will be renaming 'variations_http_header_provider' to 'variations_ids_provider' in a follow up. Bug: 1079458 Change-Id: Ibb4b5b1b2e4464a403a4f803c80a031a30ae5e00 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2196817 Commit-Queue: Ben Goldberger <benwgold@google.com> Reviewed-by:
Alexei Svitkine <asvitkine@chromium.org> Reviewed-by:
Theresa <twellington@chromium.org> Cr-Commit-Position: refs/heads/master@{#768696}
-
Matthew Denton authored
This changes ContentBrowserClient::CreateNetworkContext to ContentBrowserClient::ConfigureNetworkContextParams, so the embedder can customize the NetworkContextParams and CertVerifierCreationParams if desired. content/ then passes these params to the NetworkService::CreateNetworkContext(). This CL includes some changes to NetworkContextParams so that embedders don't need to call mojo methods on NetworkContext to finish configuration. Bug: 1015134 Change-Id: I49573d46360c60e31ba2edaca70a043a1de90248 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2195196 Commit-Queue: Matthew Denton <mpdenton@chromium.org> Reviewed-by:
Roman Sorokin [CET] <rsorokin@chromium.org> Reviewed-by:
John Abd-El-Malek <jam@chromium.org> Cr-Commit-Position: refs/heads/master@{#768695}
-
Kenichi Ishibashi authored
Looks like this test is slow. Bug: 1081342 Change-Id: I0c8f18c3768d1197587767ebea665dda2fde0f8f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2198763Reviewed-by:
Matt Falkenhagen <falken@chromium.org> Commit-Queue: Kenichi Ishibashi <bashi@chromium.org> Cr-Commit-Position: refs/heads/master@{#768694}
-