Skip to content

Commit

Permalink
Merge branch 'main' into isarkis-patch-3
Browse files Browse the repository at this point in the history
  • Loading branch information
isarkis authored May 9, 2024
2 parents 7fb9f81 + ede9494 commit fb9367c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
3 changes: 3 additions & 0 deletions media/filters/chunk_demuxer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -506,6 +506,9 @@ void ChunkDemuxerStream::CompletePendingReadIfPossible_Locked() {
// Other cases are kOk and just return the buffers.
DCHECK(!buffers.empty());
requested_buffer_count_ = 0;
#if defined(STARBOARD)
write_head_ = std::max(write_head_, buffers.back()->timestamp());
#endif // defined(STARBOARD)
std::move(read_cb_).Run(kOk, std::move(buffers));
}

Expand Down
4 changes: 2 additions & 2 deletions third_party/markupsafe/METADATA
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ description:
third_party {
identifier {
type: "ChromiumVersion"
value: "108.0.5359.243" # from https://chromereleases.googleblog.com/2023/09/long-term-support-channel-update-for_18.html
value: "114.0.5735.358" # from https://chromereleases.googleblog.com/2024/03/long-term-support-channel-update-for_26.html
}
identifier {
type: "Git"
value: "https://chromium.googlesource.com/chromium/src.git"
version: "60f10bcddac0f909b6ba2ddbaf2b49ca9c5ba714"
version: "1759c6ae9316996b9f150c0ce9d0ca78a3d15c02"
}
identifier {
type: "UpstreamSubdir"
Expand Down
1 change: 1 addition & 0 deletions third_party/markupsafe/README.chromium
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ Also includes install script (get_markupsafe.sh) and files of hashes (MD5 is
also posted on website, SHA-512 computed locally); script checks hash then
unpacks archive and installs desired files.
Retrieve or update by executing markupsafe/get_markupsafe.sh from third_party.
We also add markupsafe.gni to list sources.
6 changes: 6 additions & 0 deletions third_party/markupsafe/markupsafe.gni
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
markupsafe_sources = [
"//third_party/markupsafe/__init__.py",
"//third_party/markupsafe/_compat.py",
"//third_party/markupsafe/_constants.py",
"//third_party/markupsafe/_native.py",
]

0 comments on commit fb9367c

Please sign in to comment.