- 26 Nov, 2019 40 commits
-
-
Yoshifumi Inoue authored
This patch markes external/wpt/css/cssom/idlharness.html as slow test. Tbr: yosin@chromium.org Bug: 1028482 No-Presubmit: true No-Tree-Checks: true No-Try: true Change-Id: I4a16f628b3b3e9d3f70dc97300f822ba624c4aa4 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1935579Reviewed-by:
Yoshifumi Inoue <yosin@chromium.org> Commit-Queue: Yoshifumi Inoue <yosin@chromium.org> Cr-Commit-Position: refs/heads/master@{#719034}
-
Luciano Pacheco authored
Bug: 1028465 Fixed: 1028465 Change-Id: I1f6e4b60666ee130b6c02e25ed79e9c65da3bd62 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1935971 Auto-Submit: Luciano Pacheco <lucmult@chromium.org> Commit-Queue: Noel Gordon <noel@chromium.org> Reviewed-by:
Noel Gordon <noel@chromium.org> Cr-Commit-Position: refs/heads/master@{#719033}
-
Jan Wilken Dörrie authored
This change implements a C++14 version of C++17's std::as_const and makes use of it in a few //base classes. Bug: 752720 Change-Id: Ie3e525dc719e3cf579650ce50b018da82ad80c43 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1932438Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Commit-Queue: Jan Wilken Dörrie <jdoerrie@chromium.org> Cr-Commit-Position: refs/heads/master@{#719032}
-
Yoshifumi Inoue authored
This reverts commit edc475ed. Reason for revert: Causes compilation failure: https://logs.chromium.org/logs/chrome/buildbucket/cr-buildbucket.appspot.com/8895755054118235408/+/steps/compile/0/stdout ../../clank/java/src/org/chromium/chrome/browser/compositor/CompositorViewHolderForQ.java:26: error: method does not override or implement a method from a supertype @Override ^ Original change's description: > Upstreaming ContentCapture > > Related downstream change: > https://chrome-internal-review.googlesource.com/c/clank/internal/apps/+/2172237 > > Binary-Size: all added code was from downstream, the size increase is expected. > Bug: 951275 > Change-Id: Ibf56135e2a7d2f437f167dc0cdb7761bce447e86 > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1922603 > Reviewed-by: Changwan Ryu <changwan@chromium.org> > Reviewed-by: Richard Coles <torne@chromium.org> > Reviewed-by: David Trainor <dtrainor@chromium.org> > Commit-Queue: Tao Bai <michaelbai@chromium.org> > Cr-Commit-Position: refs/heads/master@{#718894} TBR=michaelbai@chromium.org,dtrainor@chromium.org,torne@chromium.org,changwan@chromium.org Change-Id: Id904c28aa48d561ccea36942da1f507982a698dd No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: 951275 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1935578Reviewed-by:
Yoshifumi Inoue <yosin@chromium.org> Commit-Queue: Yoshifumi Inoue <yosin@chromium.org> Cr-Commit-Position: refs/heads/master@{#719031}
-
Dominic Mazzoni authored
In http://crrev.com/c/1873964, I introduced a change that auto-focuses links when they get accessibility focus. This accidentally triggered re-focusing when you scroll the page, making it impossible to scroll because it keeps scrolling the focused node back into view. The fix is simple, just don't try to focus the link again if it's already focused. Bug: 1021918, 657157 Change-Id: If9d2a3a5e58cf4344d3b61f2e6c59da3bbad1257 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1917325Reviewed-by:
Akihiro Ota <akihiroota@chromium.org> Commit-Queue: Dominic Mazzoni <dmazzoni@chromium.org> Cr-Commit-Position: refs/heads/master@{#719030}
-
Yoshifumi Inoue authored
This patch markes http/tests/devtools/sources/debugger/navigator-view.js as flaky test. Bug: 1028482 Tbr: einbinder@chromium.org No-Presubmit: true No-Tree-Checks: true No-Try: true Change-Id: I03ccd69f5e61ac8cd08a48efcef9c8fc86313f64 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1935777Reviewed-by:
Yoshifumi Inoue <yosin@chromium.org> Commit-Queue: Yoshifumi Inoue <yosin@chromium.org> Cr-Commit-Position: refs/heads/master@{#719029}
-
Maggie Cai authored
This cl removes the user input in progress logic for qrcode_generator_icon_view and send_tab_to_self_icon_view, because now this is handled in the Update() superclass. BUG=1004031 Change-Id: Ie8082f742ccecd97996029965d5d9a57c5db1b8f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1935575 Commit-Queue: Maggie Cai <mxcai@chromium.org> Reviewed-by:
Trent Apted <tapted@chromium.org> Cr-Commit-Position: refs/heads/master@{#719028}
-
David Black authored
This CL adds the following histograms to track engagement of proactive suggestion cards: - Assistant.ProactiveSuggestions.CardClick - Assistant.ProactiveSuggestions.CardClick.ByCategory - Assistant.ProactiveSuggestions.CardClick.ByIndex - Assistant.ProactiveSuggestions.CardClick.ByVeId Proactive suggestions cards are hosted in an embedded WebContents. In order to log these metrics, a new deep link needed to be created to carry metadata necessary for metric logging while still navigating to the correct URL as a result of the click action. The schema for the new deep link is a follows: googleassistant://proactive-suggestions ?action=cardClick &category={int} &index={int} &veId={int} This CL also fixes a bug in which controller which were both AssistantControllerObservers and AssistantViewDelegateObservers received duplicate OnDeepLinkReceived events. This needed to be corrected to avoid double counting histograms but also fixes a previously unknown issue in which many deep links were in fact being processed twice. Bug: b:144875278 Change-Id: I0c531fdd6cd38254de536c0589c2f6c488f180ff Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1929711 Commit-Queue: David Black <dmblack@google.com> Reviewed-by:
Ilya Sherman <isherman@chromium.org> Reviewed-by:
Xiaohui Chen <xiaohuic@chromium.org> Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Cr-Commit-Position: refs/heads/master@{#719027}
-
Jiewei Qian authored
Deprecate FailedUnknownReason and add new error codes for different subsystems. Add FailedShuttingDown to indicate this kind of interruption. Bug: 1021813 Change-Id: Iabeccca99c1132229341a6c4412dbd8ef34130c2 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1915651 Commit-Queue: Jiewei Qian <qjw@chromium.org> Reviewed-by:
Kyle Horimoto <khorimoto@chromium.org> Reviewed-by:
Dominick Ng <dominickn@chromium.org> Reviewed-by:
Giovanni Ortuño Urquidi <ortuno@chromium.org> Cr-Commit-Position: refs/heads/master@{#719026}
-
Yoshifumi Inoue authored
This patch markes external/wpt/cookies/http-state/path-tests.htm as slow test. Bug: 1028488 No-Presubmit: true No-Tree-Checks: true No-Try: true Tbr: yosin@chromium.org Change-Id: I56e99d2a237ef4038a9ec32b971eba1aae54f5e2 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1935577Reviewed-by:
Yoshifumi Inoue <yosin@chromium.org> Commit-Queue: Yoshifumi Inoue <yosin@chromium.org> Cr-Commit-Position: refs/heads/master@{#719025}
-
Bettina authored
Bold the domains in the saved password warning dialog so it will be easier for users to see which domains they should change their passwords on. https://screenshot.googleplex.com/KHvTjqhus1M.png Bug: 1015671 Change-Id: I4fd83873847b8d2ae9098b2d20f770963d315b4c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1929922 Commit-Queue: Bettina Dea <bdea@chromium.org> Reviewed-by:
Daniel Rubery <drubery@chromium.org> Reviewed-by:
Varun Khaneja <vakh@chromium.org> Reviewed-by:
Mustafa Emre Acer <meacer@chromium.org> Cr-Commit-Position: refs/heads/master@{#719024}
-
v8-ci-autoroll-builder authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/5d28dbab..52e6614e Please follow these instructions for assigning/CC'ing issues: https://v8.dev/docs/triage-issues Please close rolling in case of a roll revert: https://v8-roll.appspot.com/ This only works with a Google account. CQ_INCLUDE_TRYBOTS=luci.chromium.try:linux-blink-rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:linux_optional_gpu_tests_rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:mac_optional_gpu_tests_rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:win_optional_gpu_tests_rel CQ_INCLUDE_TRYBOTS=luci.chromium.try:android_optional_gpu_tests_rel TBR=hablich@chromium.org,v8-waterfall-sheriff@grotations.appspotmail.com Change-Id: I6330a8aaec97b28725d702abbaeda1f216afac10 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1935449Reviewed-by:
v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Commit-Queue: v8-ci-autoroll-builder <v8-ci-autoroll-builder@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/heads/master@{#719023}
-
Abhijeet Kandalkar authored
This CL has goal to use To<HTMLCanvasElement> and DynamicTo<HTMLCanvasElement> as new downcast helper Bug: 891908 Change-Id: I94523c3544b068f54284ef9426d0c59892a206ec Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1930763Reviewed-by:
Jeremy Roman <jbroman@chromium.org> Commit-Queue: Abhijeet | Igalia <abhijeet@igalia.com> Cr-Commit-Position: refs/heads/master@{#719022}
-
chromium-autoroll authored
https://chromium.googlesource.com/catapult.git/+log/dde2188cbe9d..ad2608d39418 git log dde2188cbe9d..ad2608d39418 --date=short --first-parent --format='%ad %ae %s' 2019-11-26 abennetts@google.com Tweaks to docker docs and config. Created with: gclient setdep -r src/third_party/catapult@ad2608d39418 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 Bug: None Tbr: skyostil@google.com Change-Id: Ia00c9676f426fd00ac9454f5ad781ad9f16e99d7 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1935857Reviewed-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@{#719021}
-
Abhijeet Kandalkar authored
This CL has goal to use To<HTMLBRElement> as new downcast helper Bug: 891908 Change-Id: Id23a072816c168c77285f635b7928fcc76c0609c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1930762Reviewed-by:
Jeremy Roman <jbroman@chromium.org> Commit-Queue: Abhijeet | Igalia <abhijeet@igalia.com> Cr-Commit-Position: refs/heads/master@{#719020}
-
Yoshifumi Inoue authored
This reverts commit 507f4ee8. Reason for revert: Start failing following tests on Win7 Test bot after this patch (build 80323): * All/DumpAccessibilityTreeTest.AccessibilityANameCalc/uia * All/DumpAccessibilityTreeTest.AccessibilityAriaTreeDiscontinuous/uia * All/DumpAccessibilityTreeTest.AccessibilityButtonNameCalc/uia https://ci.chromium.org/p/chromium/builders/ci/Win7%20Tests%20%28dbg%29%281%29/80323 Original change's description: > Do not return InlineTextBox nodes from UIA GetEnclosingElement > > In AXPlatformNodeTextRangeProviderWin, nodes with role kInlineTextBox > should never be exposed to UIA. This CL introduces a simple fix. > > In GetEnclosingElement(), if the enclosing node is an inline text box, > we simply return its parent. I also updated a unit test for this case. > > Bug: 928948 > Change-Id: I31a31566461c3091bed36ebad626c4f51afc55a3 > Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1931753 > Commit-Queue: Benjamin Beaudry <benjamin.beaudry@microsoft.com> > Reviewed-by: Kurt Catti-Schmidt <kschmi@microsoft.com> > Cr-Commit-Position: refs/heads/master@{#718920} TBR=kschmi@microsoft.com,ethavar@microsoft.com,benjamin.beaudry@microsoft.com Change-Id: Ibf9e61c9fed0d01c7ceb2afdb74b6aae4e8a4c10 No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: 928948 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1936070Reviewed-by:
Yoshifumi Inoue <yosin@chromium.org> Commit-Queue: Yoshifumi Inoue <yosin@chromium.org> Cr-Commit-Position: refs/heads/master@{#719019}
-
Dan Beam authored
Even without focusing or hovering a match, the X to remove should show. Fixed: 1028372 Change-Id: I72fbfb4129fd2e1f50fe4ebbbf93d175e0491bf7 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1935622 Commit-Queue: Dan Beam <dbeam@chromium.org> Auto-Submit: Dan Beam <dbeam@chromium.org> Reviewed-by:
Moe Ahmadi <mahmadi@chromium.org> Cr-Commit-Position: refs/heads/master@{#719018}
-
Hiroshi Ichikawa authored
Change-Id: Id1bed24f06e21d4bf7a61d139d528122810a3e46 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1928389Reviewed-by:
John Wu <jzw@chromium.org> Reviewed-by:
anthonyvd <anthonyvd@chromium.org> Commit-Queue: Hiroshi Ichikawa <ichikawa@chromium.org> Cr-Commit-Position: refs/heads/master@{#719017}
-
byoungkwon ko authored
When new TerminationStatus are added, compile error should be occurred. So we should delete 'default' at switch statements. Bug: 1020020 Change-Id: I7728ea68cdf4e4d5844c8fb314bae6ec37bfa36d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1932143Reviewed-by:
Andrey Kosyakov <caseq@chromium.org> Commit-Queue: Byoungkwon Ko <codeimpl@gmail.com> Cr-Commit-Position: refs/heads/master@{#719016}
-
Carlos IL authored
This CL changes the console message printed when a mixed subresource is autoupgraded to HTTPS to point to the Chromium blog post detailing mixed content plans as opposed to the md doc in the repository. Change-Id: I6958fca31381c1d49fe40adb1d98340e7bb63fe3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1934520 Auto-Submit: Carlos IL <carlosil@chromium.org> Commit-Queue: Mike West <mkwst@chromium.org> Reviewed-by:
Mike West <mkwst@chromium.org> Cr-Commit-Position: refs/heads/master@{#719015}
-
Christopher Lam authored
This CL plumbs the Chrome OS semantic colors into cr-toggles in OS Settings by adding a shared style module to Settings on Chrome OS which is active only on OS Settings and not Browser Settings. To test, go to chrome://os-settings and type $$('html')[0].style.setProperty('--cros-default-button-color', 'red') into DevTools which should change the color of all toggles on the page. Bug: 1018654 Change-Id: I7d680a9bb5c188c44639e59748f96845c83e67d8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1925834Reviewed-by:
Kyle Horimoto <khorimoto@chromium.org> Commit-Queue: calamity <calamity@chromium.org> Cr-Commit-Position: refs/heads/master@{#719014}
-
Fergus Dall authored
Bug: 1018093 Change-Id: Iab1f83f417e540827d7b0b00b5e2ff60904a9eb9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1928458 Commit-Queue: Fergus Dall <sidereal@google.com> Reviewed-by:
Nik Bhagat <nikunjb@chromium.org> Reviewed-by:
Ryo Hashimoto <hashimoto@chromium.org> Cr-Commit-Position: refs/heads/master@{#719013}
-
Dan Beam authored
The autocomplete system internally trims starting spaces (which we did not know). Because we send this input in the response and check that it matches, left-padded input was failing (looking like it was a fast-typing user waiting for a response). Fixed: 1024724 Change-Id: If47b8f187146776b4f42341d8dfd697e64ec6c43 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1935177 Auto-Submit: Dan Beam <dbeam@chromium.org> Reviewed-by:
Moe Ahmadi <mahmadi@chromium.org> Commit-Queue: Dan Beam <dbeam@chromium.org> Cr-Commit-Position: refs/heads/master@{#719012}
-
Maggie Cai authored
Remove the return value of Update() in PageActionIconView. Currently there is only one use case for the Update() return value and it is for a very particular icon. Remove the general return value to simply the code. BUG=1004031 Change-Id: Ia2e44892249247cbd2381745e720c6803271db80 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1935570 Commit-Queue: Maggie Cai <mxcai@chromium.org> Reviewed-by:
Trent Apted <tapted@chromium.org> Cr-Commit-Position: refs/heads/master@{#719011}
-
chromium-internal-autoroll authored
https://chrome-internal.googlesource.com/chrome/src-internal.git/+log/80271e61d1fa..f50b090b72d4 Created with: gclient setdep -r src-internal@f50b090b72d4 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 jbudorick@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: chromium:None,chromium:b/144121590 Tbr: jbudorick@google.com Change-Id: I1985691b6440f54f8a86758cbe2a49a13f240f4d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1936028Reviewed-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@{#719010}
-
Hajime Hoshi authored
This CL adds a missed reason 'session restored' for more precise metrics. When a user restored the session, any reasons are not recorded in BackForwardCacheMetrics. This CL catches this case. Bug: 1004676 Change-Id: I703563fe0a862ce7b64c9abd68526c45b112a069 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1903184 Commit-Queue: Hajime Hoshi <hajimehoshi@chromium.org> Reviewed-by:
Arthur Sonzogni <arthursonzogni@chromium.org> Reviewed-by:
Kouhei Ueno <kouhei@chromium.org> Reviewed-by:
Alexander Timin <altimin@chromium.org> Cr-Commit-Position: refs/heads/master@{#719009}
-
Jay Harris authored
This will allow file handler registration to also be stored in prefs. Bug: 1028448 Change-Id: Iaef3854d32efeb6b1af7527b9c61d379c8472138 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1935292Reviewed-by:
Alexey Baskakov <loyso@chromium.org> Commit-Queue: Jay Harris <harrisjay@chromium.org> Cr-Commit-Position: refs/heads/master@{#719008}
-
Gyuyoung Kim authored
This CL converts InterfaceProviderPtr|Request to the new Mojo types. Major changes are as below, - Convert mojom::InterfaceProviderPtr to mojo::PendingRemote|Remote<mojom::InterfaceProvider> - Convert mojo::InterfaceProviderRequest to mojo::PendingReceiver<mojom::InterfaceProvider> - Convert mojo::Binding to mojo::Receiver - Convert mojom::InterfaceProviderPtrInfo to mojo::PendingRemote<mojom::InterfaceProvider> Bug: 955171, 978694 Change-Id: I94b956bb60e20810a84f7714e23c4da836bfd8c6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1928429Reviewed-by:
Wei Li <weili@chromium.org> Reviewed-by:
Frank Liberato <liberato@chromium.org> Reviewed-by:
Matt Falkenhagen <falken@chromium.org> Reviewed-by:
Ken Rockot <rockot@google.com> Reviewed-by:
Sam McNally <sammc@chromium.org> Reviewed-by:
Hiroki Nakagawa <nhiroki@chromium.org> Commit-Queue: Gyuyoung Kim <gyuyoung@igalia.com> Cr-Commit-Position: refs/heads/master@{#719007}
-
Maggie Cai authored
This CL hides the page action icons by default when typing starts in the omnibox. Most icons already have the logic to hide the icon however this need to be done for every icon. This change ensures all the new icons have this behaviour by default unless overridden by developer intentionally. BUG=1004031 Change-Id: I6ddc6d80813d635c52fbfcb4eb4acbb599c2ccfa Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1933852Reviewed-by:
Trent Apted <tapted@chromium.org> Reviewed-by:
Alan Cutter <alancutter@chromium.org> Commit-Queue: Maggie Cai <mxcai@chromium.org> Cr-Commit-Position: refs/heads/master@{#719006}
-
Austin Tankiang authored
Also reverse the arrow's direction: use \25c0 (left arrow). While here, move the related ltr/rtl CSS rules together. Bug: 980503 Change-Id: I08e487a8699dd6f465f106511b4b40f789fc2951 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1935571 Commit-Queue: Austin Tankiang <austinct@chromium.org> Reviewed-by:
Noel Gordon <noel@chromium.org> Cr-Commit-Position: refs/heads/master@{#719005}
-
chromium-autoroll authored
https://chromium.googlesource.com/angle/angle.git/+log/4b53273c1292..f65b212492ec git log 4b53273c1292..f65b212492ec --date=short --first-parent --format='%ad %ae %s' 2019-11-25 felipearchondo@google.com [fuchsia] Change all Angle Presents to Present2s Created with: gclient setdep -r src/third_party/angle@f65b212492ec 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 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: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: None Tbr: cwallez@google.com Change-Id: I94a5c0d1f183421d4f714351ed2fac98f0a9752b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1935809Reviewed-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@{#719004}
-
Alex Danilo authored
When a button on the action bar has focus, clicking on any menu button fails to grab focus from any existing focus item, leaving the previously focused button as selected. Checks for currently focused element. If a button has focus, let the browser perform the default action which will set the menu button as the focused element. If the focus is on any other element, leave it alone (e.g. in the case where a row in the file list has focus, we don't want to change that due to the menu activation). Bug: 906566 Tests: browser_test --gtest_filter="*MultiMenu" Change-Id: I32ab6b5e52771298c13fae51c2b13fba9cf996b7 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1935567 Commit-Queue: Alex Danilo <adanilo@chromium.org> Commit-Queue: Noel Gordon <noel@chromium.org> Reviewed-by:
Noel Gordon <noel@chromium.org> Cr-Commit-Position: refs/heads/master@{#719003}
-
Kunihiko Sakamoto authored
After this patch, WebBundleReader will be able to recover from data_decoder service disconnection. To prevent parser restart loop, in-flight parse requests when the parser is disconnected will not retried (they will just fail). Reconnection will be attempted at the first ReadResponse() call after disconnection. Bug: 969596 Change-Id: I8e34c52aa7f19662a33b796bba7412a64245cc28 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1903166 Commit-Queue: Kunihiko Sakamoto <ksakamoto@chromium.org> Reviewed-by:
Kinuko Yasuda <kinuko@chromium.org> Reviewed-by:
Robert Sesek <rsesek@chromium.org> Reviewed-by:
Tsuyoshi Horo <horo@chromium.org> Cr-Commit-Position: refs/heads/master@{#719002}
-
chromium-autoroll authored
https://skia.googlesource.com/skia.git/+log/32d6c8d02436..3e7af41224ee git log 32d6c8d02436..3e7af41224ee --date=short --first-parent --format='%ad %ae %s' 2019-11-26 reed@google.com Revert "switch to new filltype for SkPath" 2019-11-26 fmalita@chromium.org [skottie-wasm] Disable image pre-decoding 2019-11-25 recipe-mega-autoroller@chops-service-accounts.iam.gserviceaccount.com Roll recipe dependencies (trivial). 2019-11-25 reed@google.com switch to new filltype for SkPath Created with: gclient setdep -r src/third_party/skia@3e7af41224ee If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/skia-autoroll Please CC bungeman@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-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 Bug: None Tbr: bungeman@google.com Change-Id: I81833b131a779786cb9566eba08932884309e198 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1935812Reviewed-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@{#719001}
-
Abhijeet Kandalkar authored
This CL has goal to use IsA<HTMLFieldSetElement>(element) in place of IsHTMLFieldSetElement(element) Bug: 891908 Change-Id: I7aa818e1cf1b75fe1c96c8a8e9fc781a32879a85 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1930766Reviewed-by:
Jeremy Roman <jbroman@chromium.org> Commit-Queue: Abhijeet | Igalia <abhijeet@igalia.com> Cr-Commit-Position: refs/heads/master@{#719000}
-
Timothy Loh authored
The ListUsbDevices function was added almost a year ago when adding USB support to Crostini but we haven't end up using it. Change-Id: Iee869b4757b8e6e5095f3671ade8cc5b15d4365c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1930353Reviewed-by:
Ryo Hashimoto <hashimoto@chromium.org> Reviewed-by:
Fergus Dall <sidereal@google.com> Commit-Queue: Timothy Loh <timloh@chromium.org> Cr-Commit-Position: refs/heads/master@{#718999}
-
Abhijeet Kandalkar authored
This CL has goal to use DynamicTo<HTMLHRElement> as new downcast helper Bug: 891908 Change-Id: Icb20e0163d092e08e0bf71ecd75bfcfb140c6e27 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1930539Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Commit-Queue: Abhijeet | Igalia <abhijeet@igalia.com> Cr-Commit-Position: refs/heads/master@{#718998}
-
Austin Tankiang authored
With the legacy drive sync client, drive paths had to be treated separately from native paths in certain situations. However, since now with DriveFS all drive paths are native, this separation can be removed. Bug: 1003238 Change-Id: I3fbbfaf5456b292c24c3f3b3c1ea8ef253101285 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1930274 Commit-Queue: Austin Tankiang <austinct@chromium.org> Reviewed-by:
Joel Hockey <joelhockey@chromium.org> Reviewed-by:
Scott Violet <sky@chromium.org> Reviewed-by:
Tommy Li <tommycli@chromium.org> Reviewed-by:
Min Qin <qinmin@chromium.org> Reviewed-by:
Noel Gordon <noel@chromium.org> Reviewed-by:
Sam McNally <sammc@chromium.org> Cr-Commit-Position: refs/heads/master@{#718997}
-
Abhijeet Kandalkar authored
This CL has goal to Use IsA<HTMLMenuElement>(element) in place of IsHTMLMenuElement(element) Bug: 891908 Change-Id: Ia9c016f9c23481a60db63ee00ead1361090de3a2 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1930541 Commit-Queue: Abhijeet | Igalia <abhijeet@igalia.com> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Cr-Commit-Position: refs/heads/master@{#718996}
-
chromium-autoroll authored
https://chromium.googlesource.com/catapult.git/+log/bee6bf4cd336..dde2188cbe9d git log bee6bf4cd336..dde2188cbe9d --date=short --first-parent --format='%ad %ae %s' 2019-11-26 chonggu@google.com [Fuchsia] Add SshForwarder for Fuchsia. 2019-11-26 erikchen@chromium.org Fix catapult sharder to produce more uniform sharding. 2019-11-25 eroman@chromium.org Update the contributing/deploying instructions for Net Log Viewer. Created with: gclient setdep -r src/third_party/catapult@dde2188cbe9d 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 Bug: chromium:1028298 Tbr: skyostil@google.com Change-Id: I21bc5006cd80f798f9433341a8ea342b3399170e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1935506Reviewed-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@{#718995}
-