- 08 Nov, 2019 40 commits
-
-
Alex Turner authored
When creating a new subframe or WebContents with an initial empty document, it inherits the last committed origin of the originating frame. We now also set the Network Isolation Key (NIK) at the same time. Certain subsequent requests are both same-document navigations and the first to result in a call to RenderFrameHostImpl::CommitNavigation, e.g. the last navigation of NavigationControllerBrowserTest. BackAfterIframeDocumentWrite. Previously, requests in such a case could be made without a valid NIK. We also add a DCHECK to ensure the NIK is always set after the call to CommitNavigation. Bug: 1014077 Change-Id: I33e3c223352d6f82fb7849b6be9ce6bd585b96fd Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1872790 Commit-Queue: Alex Turner <alexmt@chromium.org> Reviewed-by:
Alex Moshchuk <alexmos@chromium.org> Reviewed-by:
Arthur Sonzogni <arthursonzogni@chromium.org> Reviewed-by:
Łukasz Anforowicz <lukasza@chromium.org> Reviewed-by:
Shivani Sharma <shivanisha@chromium.org> Cr-Commit-Position: refs/heads/master@{#713871}
-
Sam Maier authored
compression_utils_portable This allows client code to select the wrapper format used which may be faster (e.g. zlib format on older ARMv7 and early ARMv8 SoCs) depending on the application. The wrapper format selection code was partially taken from zlib_bench.cc. Bug: 833361 Change-Id: I8a317e6abc8bd2d66f2e940406badfd7e930e809 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1904505Reviewed-by:
Adenilson Cavalcanti <cavalcantii@chromium.org> Commit-Queue: Adenilson Cavalcanti <cavalcantii@chromium.org> Cr-Commit-Position: refs/heads/master@{#713870}
-
Mikhail Khokhlov authored
This will help to discover bugs and incorrect Results Processor usage earlier. Bug: 981349 Change-Id: Icd2ba7f2187166b452702681392417ab3ec8e6dc Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1904168 Commit-Queue: Mikhail Khokhlov <khokhlov@google.com> Reviewed-by:
Juan Antonio Navarro Pérez <perezju@chromium.org> Cr-Commit-Position: refs/heads/master@{#713869}
-
Aran Gilman authored
Bug: 1017341 Change-Id: I719f13dd45a75783dc919a0f74be996445951be6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1875481Reviewed-by:
Wei-Yin Chen (陳威尹) <wychen@chromium.org> Commit-Queue: Aran Gilman <gilmanmh@google.com> Cr-Commit-Position: refs/heads/master@{#713868}
-
Aran Gilman authored
Change-Id: I47d8314c480b1a3e64a5f8ebb63c97c0af9bf516 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1903759Reviewed-by:
Dominic Mazzoni <dmazzoni@chromium.org> Commit-Queue: Aran Gilman <gilmanmh@google.com> Cr-Commit-Position: refs/heads/master@{#713867}
-
Chris Harrelson authored
Change-Id: Iecc102fca57b21132085671f43e597ae43263bab Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1904618 Commit-Queue: Chris Harrelson <chrishtr@chromium.org> Reviewed-by:
Mason Freed <masonfreed@chromium.org> Cr-Commit-Position: refs/heads/master@{#713866}
-
Robert Liao authored
BUG=5027 Change-Id: Iab491d8e238f49c981e026e07fde9de916af82f8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1904816 Auto-Submit: Robert Liao <robliao@chromium.org> Reviewed-by:
Roger Tawa <rogerta@chromium.org> Commit-Queue: Robert Liao <robliao@chromium.org> Cr-Commit-Position: refs/heads/master@{#713865}
-
Fredrik Söderquist authored
(Re)use EventTarget::EnqueueEvent rather than (re)implementing something pretty much identical. Bug: 998526 Change-Id: I79a8d84141e37f485c9b74ee6dc2e4afacda080a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1906150 Auto-Submit: Fredrik Söderquist <fs@opera.com> Commit-Queue: Stephen Chenney <schenney@chromium.org> Reviewed-by:
Stephen Chenney <schenney@chromium.org> Cr-Commit-Position: refs/heads/master@{#713864}
-
Raymond Toy authored
This also allows us to replace base::Bind with base::BindOnce. Bug: 1007798 Change-Id: Iab43f746e3c4507d9b9b7b82e6f58cedcd08faa9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1904847Reviewed-by:
Olga Sharonova <olka@chromium.org> Commit-Queue: Raymond Toy <rtoy@chromium.org> Cr-Commit-Position: refs/heads/master@{#713863}
-
Toni Barzic authored
Enables OverviewWindowDragTest.NormalDrag and ScreenRotationTest.RotateInTabletOverview back, as the use-after-free because of which they were disable has been fixed. Bug: 1021936 Change-Id: I431f8fe4fb1be1eb0f4c8816d9dcb91a42d41ee3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1904160Reviewed-by:
Mitsuru Oshima <oshima@chromium.org> Commit-Queue: Toni Baržić <tbarzic@chromium.org> Cr-Commit-Position: refs/heads/master@{#713862}
-
James Cook authored
For go/split-settings-sync we want to defer sync of all OS types until the user turned on the feature. Add a user profile pref that enables the feature. Add ModelTypeControllers for OS preferences and printers that observe the pref and use it to enable/disable the their sync via preconditions. The two ModelTypeControllers are very similar but are separate because they have different superclasses. I think trying to create a mixin that could be shared would be more complicated than just having each class have a separate PrefChangeRegistrar. For now the "feature enabled" pref is set via a placeholder toggle button in the OS settings UI. A future CL will tie it to the sync consent that appears in OOBE. Bug: 1013466 Test: added to unit_tests Change-Id: If4e24eea93a103f2cf5fada3771481a7ab843759 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1904342Reviewed-by:
Xiyuan Xia <xiyuan@chromium.org> Reviewed-by:
Marc Treib <treib@chromium.org> Commit-Queue: James Cook <jamescook@chromium.org> Cr-Commit-Position: refs/heads/master@{#713861}
-
Yi Gu authored
Tested locally and didn't see the crash mentioned in crbug.com/545547. Bug: 545547 Change-Id: I597c4ae170b3d5297a18472d3e4f1b7923856057 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1897244Reviewed-by:
Ken Buchanan <kenrb@chromium.org> Commit-Queue: Yi Gu <yigu@chromium.org> Cr-Commit-Position: refs/heads/master@{#713860}
-
Chris Hamilton authored
This creates a policy engine that forwards calculated priority values out of the graph, applying the priorities to RenderProcessHosts (and subsequently to the process itself). BUG=971272 Change-Id: I11c8c040e5382a8fa6881c40f80f6885f26e88df Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1904367 Commit-Queue: Chris Hamilton <chrisha@chromium.org> Reviewed-by:
Sigurður Ásgeirsson <siggi@chromium.org> Cr-Commit-Position: refs/heads/master@{#713859}
-
Greg Thompson authored
This function has historically been opening a file for exclusive r/w/d with FILE_ALL_ACCESS. FILE_ALL_ACCESS is nearly almost never, ever the right choice when opening a file. This is especially true when opening a file from an ordinary non-elevated user session, since it attempts to gain things like WRITE_DAC and WRITE_OWNER and will fail if it's not possible to gain those access rights. A better way to determine if a file is "in use" (and what we really mean is "is an executable that is running") is simply to try to write to it. This is because CreateProcess opens its target with only exclusive write mode (read and execute are shared for obvious reasons). This change also eliminates the exact copy of this function, which included the incorrect formatting from the original, that was used in the unittest. R=gab@chromium.org BUG: 474401 Change-Id: I0488e2a5333f74353f46ae6c87795e2833a30b61 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1905948 Commit-Queue: David Bienvenu <davidbienvenu@chromium.org> Reviewed-by:
David Bienvenu <davidbienvenu@chromium.org> Auto-Submit: Greg Thompson <grt@chromium.org> Cr-Commit-Position: refs/heads/master@{#713858}
-
Friedrich Horschig authored
This cl removes an unnecessary break condition that prevented collection for CreditCards. The metrics recorder already supports recording non-password tabs (like addresses) but this artifact prevented recording sheet triggering. Bug: 926372 Change-Id: Ia4a92e06b2c21000ee61aa14a060bb4a521fc360 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1905687Reviewed-by:
Ioana Pandele <ioanap@chromium.org> Commit-Queue: Friedrich [CET] <fhorschig@chromium.org> Cr-Commit-Position: refs/heads/master@{#713857}
-
Mihai Sardarescu authored
This CL converts all ChromeOS code to use CoreAccountId instead of std::string for the account id. Bug: 959157 Change-Id: Ia27b9e566100ecd7c1ead3a5ca8e46da39e569ea Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1906149Reviewed-by:
Sylvain Defresne <sdefresne@chromium.org> Commit-Queue: Mihai Sardarescu <msarda@chromium.org> Cr-Commit-Position: refs/heads/master@{#713856}
-
chromium-autoroll authored
https://chromium.googlesource.com/chromiumos/chromite.git/+log/8c6f1f9af3f4..fc61fb037d2c git log 8c6f1f9af3f4..fc61fb037d2c --date=short --no-merges --format='%ad %ae %s' 2019-11-08 dburger@chromium.org config: mark grunt-unittest-only not important. Created with: gclient setdep -r src/third_party/chromite@fc61fb037d2c If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/chromite-chromium-autoroll Please CC chrome-os-gardeners@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:chromeos-kevin-rel TBR=chrome-os-gardeners@google.com Bug: None Change-Id: Ic9762f94cdd7cbbe558456837496a25508e5b30e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1906290Reviewed-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@{#713855}
-
chromium-autoroll authored
https://chromium.googlesource.com/devtools/devtools-frontend.git/+log/3b14632a5ba8..7eee1a626bd1 git log 3b14632a5ba8..7eee1a626bd1 --date=short --no-merges --format='%ad %ae %s' 2019-11-08 almuthanna@google.com Cover Geometry.js with Karma tests Created with: gclient setdep -r src/third_party/devtools-frontend/src@7eee1a626bd1 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 v8-waterfall-sheriff@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 TBR=v8-waterfall-sheriff@grotations.appspotmail.com Bug: None Change-Id: I93fc261f075067df575f9d6b92bada76bb3ed966 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1906288Reviewed-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@{#713854}
-
Antonio Gomes authored
This CL fixes the clusterfuzz issues reported (see "Fixed" below) by using WTF::Bind and WrapPersistent in RTCRtpSenderImpl::ReplaceTrack. This is a regression from crrev.com/c/1899786, where code used to have a WebRTCVoidRequest wrapping RTCVoidRequest instances (garbage collected). Now that RTCVoidRequest is used directly, we need to properly wrap-persist its instances with WTF::WrapPersistent when passing it to callbacks. Reason: With Oilpan and WTF::Bind, raw pointers of garbage collected objects are not allowed. Fixed:1022558 R=hbos@chormium.org, jbroman@chromium.org Change-Id: I8f0fcf7275c9e07240e3b2e20f89c4cf96c72439 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1906506 Commit-Queue: Antonio Gomes <tonikitoo@igalia.com> Commit-Queue: Henrik Boström <hbos@chromium.org> Reviewed-by:
Henrik Boström <hbos@chromium.org> Cr-Commit-Position: refs/heads/master@{#713853}
-
chromium-autoroll authored
https://webrtc.googlesource.com/src.git/+log/2bc811ea07b7..d6b9b0a1f413 git log 2bc811ea07b7..d6b9b0a1f413 --date=short --no-merges --format='%ad %ae %s' 2019-11-08 danilchap@webrtc.org Cleanup MultiStreamTester Created with: gclient setdep -r src/third_party/webrtc@d6b9b0a1f413 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: None Change-Id: I9b6e4aa2c4f191db79df4e7512a6fe1e6b6874c2 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1906289Reviewed-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@{#713852}
-
Sean Gilhuly authored
Create a Dawn device using D3D12 on Windows and Vulkan on Linux, and use it to create a Skia Dawn GrContext. On Windows, create a SkiaOutputDeviceDawn, which uses a native D3D12 swapchain for presentation. On Linux, use a SkiaOutputDeviceX11 for now, until the Vulkan swapchain is ready. Bug: 1021566 Change-Id: If3e1f435fe87132c9294f5613c85d675a7282b3a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1899200 Commit-Queue: Sean Gilhuly <sgilhuly@chromium.org> Reviewed-by:
Jonathan Backer <backer@chromium.org> Reviewed-by:
Bo <boliu@chromium.org> Reviewed-by:
Stephen White <senorblanco@chromium.org> Reviewed-by:
Corentin Wallez <cwallez@chromium.org> Cr-Commit-Position: refs/heads/master@{#713851}
-
v8-ci-autoroll-builder authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/4e6e728c..814c68a9 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: I0fcb4a1600db047f1944680dad357056a00928bc Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1906066Reviewed-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@{#713850}
-
Robert Ma authored
Manual import because of https://crbug.com/1022519 (with https://crrev.com/c/1904340 applied locally to fix rebaseline-cl) Using wpt-import in Chromium a53cf24b. With Chromium commits locally applied on WPT: 1d5b803f "Add WebVTT support for inline styling - Web Platform Tests" 40c01af7 "[Chromedriver] Fix PerformAction to support multi touch points cases" 85c1bdf8 "Improve scroll to text WPT coverage." a42521dd "Roll WebGPU CTS" Note to sheriffs: This CL imports external tests and adds expectations for those tests; if this CL is large and causes a few new failures, please fix the failures by adding new lines to TestExpectations rather than reverting. See: https://chromium.googlesource.com/chromium/src/+/master/docs/testing/web_platform_tests.md Directory owners for changes in this CL: foolip@chromium.org, lpz@chromium.org, robertma@chromium.org: external/wpt/tools foolip@chromium.org, robertma@chromium.org, smcgruer@chromium.org: external/wpt/infrastructure guidou@chromium.org, armax@chromium.org: external/wpt/mediacapture-streams hongchan@chromium.org, rtoy@chromium.org: external/wpt/webaudio jsbell@chromium.org: external/wpt/resources kojii@chromium.org: external/wpt/css/css-text/overflow-wrap meade@chromium.org: external/wpt/web-animations NOAUTOREVERT=true TBR=smcgruer No-Export: true Bug: 1022519 Change-Id: Idb9348b86ecf24b64fa94c79b92565671031a079 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1904343Reviewed-by:
Robert Ma <robertma@chromium.org> Commit-Queue: Robert Ma <robertma@chromium.org> Cr-Commit-Position: refs/heads/master@{#713849}
-
Mikhail Khokhlov authored
This CL adds some basic support for traces in perfetto protobuf format. The traces are concatenated, converted to json and then processed as usual. For that to work, one needs to build trace processor shell with sqlite and json support, and supply it to results_processor via the --trace-processor-path command line argument. Bug: 990304 Change-Id: If6d7c903813fd1f860e4f11ea98bf22e4b70e057 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1903144Reviewed-by:
Juan Antonio Navarro Pérez <perezju@chromium.org> Commit-Queue: Mikhail Khokhlov <khokhlov@google.com> Cr-Commit-Position: refs/heads/master@{#713848}
-
Ian Clelland authored
This adds support for the generalized 'List' syntax in https://tools.ietf.org/html/draft-ietf-httpbis-header-structure-13. Since some types have changed slightly between revisions, the parser now takes a version parameter on construction, which can be used to switch between draft 9 (for compatibility with existing Web Packaging deployments) and draft 13 (for new headers). Bug: 1011101 Change-Id: Ie8a76384430f5319e1d564e51f4f62af7c0ada7f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1872764 Commit-Queue: Ian Clelland <iclelland@chromium.org> Reviewed-by:
Jeremy Roman <jbroman@chromium.org> Cr-Commit-Position: refs/heads/master@{#713847}
-
jonross authored
A recent change to support mixed Vulkan implementation and GrContext led to requiring an additional flag to enable Vulkan as the GrContext. It looks like one test suite was missed in that update. TEST=vulkan_content_browsertest Change-Id: I6474e113d45d3854edd67ec704a6704161585a3f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1901800 Auto-Submit: Jonathan Ross <jonross@chromium.org> Reviewed-by:
Yuly Novikov <ynovikov@chromium.org> Reviewed-by:
Aaron Gable <agable@chromium.org> Commit-Queue: Jonathan Ross <jonross@chromium.org> Cr-Commit-Position: refs/heads/master@{#713846}
-
Mohamed Abdelhalim authored
This uses only NavigationThrottleRunner::Delegate to construct NavigationThrottleRunner. Note: RegisterNavigationThrottles should only be called from NavigationRequest, where the Delegate is a NavigationRequest. Change-Id: Ifa6abf81799c5e3e8dda55781bcab9e8f98cc67b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1906346 Commit-Queue: Mohamed Abdelhalim <zetamoo@chromium.org> Reviewed-by:
Arthur Sonzogni <arthursonzogni@chromium.org> Cr-Commit-Position: refs/heads/master@{#713845}
-
Josh Nohle authored
During the first phase of the CryptAuth v2 DeviceSync rollout, v2 DeviceSync is enabled behind the flag kCryptAuthV2DeviceSync, and v1 and v2 DeviceSync run in parallel, with their results consolidated into a single set of device data. The second phase of the v2 DeviceSync rollout deprecates v1 DeviceSync behind the flag kCryptAuthV1DeviceSyncDeprecate that we add here. Bug: 951969, 1019206 Change-Id: Ic13a709649e3d3d8dd855563b1a57abed8c599db Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1899415 Commit-Queue: Josh Nohle <nohle@chromium.org> Reviewed-by:
Kyle Horimoto <khorimoto@chromium.org> Cr-Commit-Position: refs/heads/master@{#713844}
-
Jasmine Chen authored
This CL enables ZSL for one shot requests. It sets ANDROID_CONTROL_ENABLE_ZSL to true for still capture requests and a private usage flag to still capture streams so that adapter recognizes still capture output streams. BUG=b:130851309 TEST=Enabled ZSL and verified still capture works with ZSL CLs. Change-Id: Idb0741f56b55b93a157e7ee11aff4beff2024451 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1896480Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Reviewed-by:
Wei Lee <wtlee@chromium.org> Commit-Queue: Jasmine Chen <lnishan@google.com> Cr-Commit-Position: refs/heads/master@{#713843}
-
Jasper Chapman-Black authored
Bug: 1011921 Change-Id: Ica2e5a7a9222d80a81bd70299219f82798c19855 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1901427 Commit-Queue: Jasper Chapman-Black <jaspercb@chromium.org> Reviewed-by:
Samuel Huang <huangs@chromium.org> Cr-Commit-Position: refs/heads/master@{#713842}
-
Antonio Gomes authored
The replacement is now possible that all users are in Blink. Essentially, the former is a pure interface for the later. As a follow up step the use of WebString will be replace by WTF::String. BUG=787254, 919392 R=guidou@chromium.org, haraken@chromium.org Change-Id: I921d2351533f54f00c3dd1b19d20a1b6f7a2a3f9 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1902445 Commit-Queue: Antonio Gomes <tonikitoo@igalia.com> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Reviewed-by:
Guido Urdaneta <guidou@chromium.org> Cr-Commit-Position: refs/heads/master@{#713841}
-
chromium-autoroll authored
https://chromium.googlesource.com/catapult.git/+log/0868b8947615..d9164777415c git log 0868b8947615..d9164777415c --date=short --no-merges --format='%ad %ae %s' 2019-11-08 perezju@chromium.org [Telemetry] Trim down story_run.Artifact object 2019-11-08 a-v-y@yandex-team.ru Fix breakpad symbolization of heap profiles when so is mapped from apk. 2019-11-08 perezju@chromium.org [Telemetry] Replace Will-/DidRunPage methods with results.CreateStoryRun Created with: gclient setdep -r src/third_party/catapult@d9164777415c 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 rmhasan@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=rmhasan@google.com Bug: chromium:973837,chromium:734705,chromium:973837 Change-Id: I84f582b5ef961c1bdd611535aff2222bd0976c5a Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1905906Reviewed-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@{#713840}
-
Alexander Timin authored
We want to remove kInternalIPC task type as it's confusing and use kInternalNavigationAssociated instead as a more descriptive one. - Add kInternalNavigationAssociatedUnfreezable task type. - Make kInternalNavigationAssociated to be freezable to reflect the comment. - Use kInternalNavigationAssociatedUnfreezable in the places which expect to be unfreezable. - Convert kInternalFreezableIPC usage to kInternalNavigationAssociated. - Remove kInternalFreezableIPC task type. R=haraken@chromium.org,yuzus@chromium.org,hajimehoshi@chromium.org Change-Id: I80cfdad5c65bf928c65aeae02f2e080de3cf6873 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1890319 Commit-Queue: Alexander Timin <altimin@chromium.org> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Reviewed-by:
Daniel Cheng <dcheng@chromium.org> Cr-Commit-Position: refs/heads/master@{#713839}
-
Roman Sorokin authored
Make the best effort to determine sizes. Bug: 1022764 Change-Id: I4b55302b36a2964cd3b11ff8c5c4540c69300bfa Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1905550 Commit-Queue: Roman Sorokin [CET] <rsorokin@chromium.org> Reviewed-by:
Roman Aleksandrov <raleksandrov@google.com> Cr-Commit-Position: refs/heads/master@{#713838}
-
Jonathan Ross authored
On going work has resolved a number of bugs with SkiaRenderer + Vulkan. This change updates the pixel_expectations as well as blink_web_test expectations, in order to enable more tests. TBR=ynovikov@chromium.org TEST=vulkan_native_blink_web_tests vulkan_swiftshader_blink_web_tests vulkan_pixel_skia_gold_test Change-Id: Ia5533aae4f766fb1588344b3f5fcaf903f05dc96 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1901801Reviewed-by:
Jonathan Ross <jonross@chromium.org> Reviewed-by:
Yuly Novikov <ynovikov@chromium.org> Commit-Queue: Jonathan Ross <jonross@chromium.org> Cr-Commit-Position: refs/heads/master@{#713837}
-
Antonio Gomes authored
The replacement is now possible that all users are in Blink. Essentially, the former is a pure interface for the later. As a follow up step the use of WebString will be replace by TF::String. BUG=787254, 919392 R=guidou@chromium.org, haraken@chromium.org Change-Id: I7c94b66363f933db7c15ca0e80236e61aac5828c Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1902443 Commit-Queue: Antonio Gomes <tonikitoo@igalia.com> Reviewed-by:
Kentaro Hara <haraken@chromium.org> Reviewed-by:
Guido Urdaneta <guidou@chromium.org> Cr-Commit-Position: refs/heads/master@{#713836}
-
Henrique Nakashima authored
Bug: 1022107 Change-Id: Ie7b1cb7c41bca57e225a8821360dc9db80d87e43 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1903928Reviewed-by:
Theresa <twellington@chromium.org> Commit-Queue: Henrique Nakashima <hnakashima@chromium.org> Cr-Commit-Position: refs/heads/master@{#713835}
-
Bence Béky authored
Before this CL, a frame of reserved type was sent out after every HEADERS frame, even if the HEADERS frame had END_STREAM set, which is in violation with https://httpwg.org/specs/rfc7540.html#StreamStates. After this CL, reserved frames are sent before every DATA frame, when the stream is guaranteed to be in open or half-closed (local) state from the receiver's point of view. Reserved frames sent on stream 0 after the SETTINGS frame are not affected by this change. Bug: 1020233 Change-Id: I2ac5273c44486578d1e14920678ca07800278dda Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1903946 Commit-Queue: Bence Béky <bnc@chromium.org> Reviewed-by:
Ryan Hamilton <rch@chromium.org> Cr-Commit-Position: refs/heads/master@{#713834}
-
Joe Mason authored
A lot of the plumbing that passes information from ChromePromptIPC to higher layers uses the PromptAcceptance enum and callback classes generated from chrome_prompt.mojom. This will make it harder to get rid of chrome_prompt.mojom when it's no longer supported. * Use PromptUserResponse::PromptAcceptance from chrome_prompt.proto, which is now the preferred IPC method. * Define callbacks in ChromePromptIPC that have similar signatures to the Mojo callbacks. * Convert to and from these types in MojoChromePromptIPC. The Mojo types are no longer referenced outside this class and its unit test. R=proberge Bug: 969139 Change-Id: Ie4028bc650aa2d155492225c33716cf6eaf69c02 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1904846Reviewed-by:
proberge <proberge@chromium.org> Commit-Queue: Joe Mason <joenotcharles@chromium.org> Cr-Commit-Position: refs/heads/master@{#713833}
-
meacer authored
The letter "ə" (U+0259) can be confused with both "e" and "a" when used in domain names. IDN spoof checker currently doesn't have a way of treating a single character as confusable with multiple characters, so the only option is to map this letter to either "e" or "a" but not both. This is obviously not desirable since the Schwa can be used to spoof the non-mapped character. As a result, there is no straightforward solution other than limiting the character to .az domains (The letter is used commonly in Azerbaijani language). This fix affects ~250 registered domains containing the letter "ə". However, only ~40 of these domains serve some sort of content, the rest are either parked or don't serve content. Furthermore, only 1 of these domains appear in usage logs and the domain is not widely used, so this is probably a safe change. Bug: 1017707 Change-Id: Ied699b3b7bd067945d90dd360d2ecf3243912145 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1904761 Commit-Queue: Joe DeBlasio <jdeblasio@chromium.org> Reviewed-by:
Joe DeBlasio <jdeblasio@chromium.org> Cr-Commit-Position: refs/heads/master@{#713832}
-