Tags: youtube/cobalt
Tags
Add URL for the current and new M365 web app to scope extensions Microsoft announced a rebranding from Microsoft 365 to Microsoft 365 Copilot including a new URL. The current URL for the M365 PWA as well as the new URL are added to the scope extensions of the M365 PWA to prevent user interruption. (cherry picked from commit 358538037f353731a3218c5d10ba7ad50c0021b4) Bug: b:389599427 Change-Id: I6b606dac0c6ebd3f6468cad0dcaea2567705af60 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6172441 Reviewed-by: Dibyajyoti Pal <dibyapal@chromium.org> Reviewed-by: Alexander Bolodurin <alexbn@chromium.org> Commit-Queue: Dibyajyoti Pal <dibyapal@chromium.org> Auto-Submit: Leon Masopust <lmasopust@google.com> Cr-Original-Commit-Position: refs/heads/main@{#1407324} Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6234234 Commit-Queue: Leon Masopust <lmasopust@google.com> Cr-Commit-Position: refs/branch-heads/6834@{#5516} Cr-Branched-From: 47a3549fac11ee8cb7be6606001ede605b302b9f-refs/heads/main@{#1381561}
Roll commits from side projects in M126 Roll src/v8 in M126 from 0fb8a8a220ce to 732a071888e3 Commits rolled: https://chromium.googlesource.com/v8/v8.git/+log/0fb8a8a220ce..732a071888e3 Generated by: http://go/bbid/8722474616154388385 Change-Id: I27e208f3f95d0101fd4345f8d4074756412c84b3 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6280875 Bot-Commit: Chrome Release Bot (LUCI) <chrome-official-brancher@chops-service-accounts.iam.gserviceaccount.com> Cr-Commit-Position: refs/branch-heads/6478@{#2032} Cr-Branched-From: e6143acc03189c5e52959545b110d6d17ecd5286-refs/heads/main@{#1300313}
Remove one line of log in setCrashContext (#4922) The production log was identified as pii. b/370167229
Disable NPLB test cases which are not applicable for Android (#4721) b/338229737 b/368228941 b/379602017 b/380030274 b/380031306 b/380032222 b/380344836 b/380347735
Explicitly set v8 thread priority (#4693) b/378556308 b/386841458
Fix send for connected UDP socket (#4402) In this PR [#4270](#4270), functionality was added to connect a UDP socket. When we call the `SbSocketSendTo` function, which invokes `sendto` for a UDP socket, the issue arises that if this function is called for a socket that was previously connected, it throws an `errno 56 (already connected)` error on certain platforms, such as `macOS` or `BSD`. To address this, we need to call the send function instead of `sendto`. This behavior is platform-specific, as it works fine on Windows or Linux. To resolve this issue, I propose a minimal patch that, depending on whether the UDP socket is already connected, will call either `sendto` or send accordingly. In my opinion, another approach could involve splitting the `SbSocketSendTo` function into `SbSocketSendTo` (specifically for non-connected UDP sockets) and `SbSocketSend` (for TCP and connected UDP sockets). However, this would require significant code changes. I suggest keeping `SbSocketSendTo` and handling the connected socket state as I’ve done in this PR. In the future, when we fully transition to the POSIX API, we can directly call the appropriate function (`send` or `sendto`) within the `UDPSocketStarboard` class, instead of using wrappers like `SbSocketSendTo`. This transition would also create a clearer interface, as currently, when we call `SbSocketSendTo` for an already connected socket, we pass an address that is ultimately unused. I look forward to hearing your feedback.
PreviousNext