Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AUTO][FILECONTROL] - version 130.0.6723.59 #1558

Merged
merged 1 commit into from
Oct 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/under-control/src/RELEASE
Original file line number Diff line number Diff line change
@@ -1 +1 @@
130.0.6723.44
130.0.6723.59
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,9 @@ interface CanvasRenderingContext2D {

// path API (see also CanvasPath)
[HighEntropy, NoAllocDirectCall] void beginPath();
[HighEntropy, NoAllocDirectCall] void fill();
[HighEntropy] void fill(CanvasFillRule winding);
[HighEntropy] void fill(optional CanvasFillRule winding);
[HighEntropy] void fill(Path2D path, optional CanvasFillRule winding);
[HighEntropy, NoAllocDirectCall] void stroke();
[HighEntropy] void stroke();
[HighEntropy] void stroke(Path2D path);
// Focus rings
void drawFocusIfNeeded(Element element);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ dictionary RTCEncodedAudioFrameMetadata {
DOMString mimeType;
unsigned short? sequenceNumber;
[RuntimeEnabled=RTCEncodedAudioFrameAbsCaptureTime] unsigned long long absCaptureTime;
[RuntimeEnabled=RTCEncodedFrameSetMetadata] unsigned long rtpTimestamp;
unsigned long rtpTimestamp;
};
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,5 @@ dictionary RTCEncodedVideoFrameMetadata {
DOMString mimeType;
[RuntimeEnabled=RTCEncodedVideoFrameAdditionalMetadata]
long long timestamp; // Presentation timestamp, microseconds.
[RuntimeEnabled=RTCEncodedFrameSetMetadata]
unsigned long rtpTimestamp;
};