Skip to content

Commit 0cac6fd

Browse files
committed
Roll protocol to r1515996
1 parent 54189ca commit 0cac6fd

File tree

10 files changed

+48
-39
lines changed

10 files changed

+48
-39
lines changed

changelog.md

Lines changed: 17 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,23 @@
11

22

3+
## Roll protocol to r1515996 — _2025-09-16T13:32:58.000Z_
4+
###### Diff: [`54189ca...49b0ae5`](https://github.com/ChromeDevTools/devtools-protocol/compare/54189ca...49b0ae5)
5+
6+
```diff
7+
@@ domains/Network.pdl:622 @@ domain Network
8+
# Cookie path.
9+
string path
10+
# Cookie expiration date as the number of seconds since the UNIX epoch.
11+
+ # The value is set to -1 if the expiry date is not set.
12+
+ # The value can be null for values that cannot be represented in
13+
+ # JSON (±Inf).
14+
number expires
15+
# Cookie size.
16+
integer size
17+
```
18+
319
## Roll protocol to r1515189 — _2025-09-13T04:29:50.000Z_
4-
###### Diff: [`0dba65c...622cf99`](https://github.com/ChromeDevTools/devtools-protocol/compare/0dba65c...622cf99)
20+
###### Diff: [`0dba65c...262032f`](https://github.com/ChromeDevTools/devtools-protocol/compare/0dba65c...262032f)
521

622
```diff
723
@@ domains/IndexedDB.pdl:159 @@ experimental domain IndexedDB
@@ -41995,33 +42011,4 @@ index d4102f5c..6285d9b6 100644
4199542011
smart-card
4199642012
storage-access
4199742013
sync-xhr
41998-
```
41999-
42000-
## Roll protocol to r1088570 — _2023-01-04T04:27:47.000Z_
42001-
###### Diff: [`0400c45...253af7d`](https://github.com/ChromeDevTools/devtools-protocol/compare/0400c45...253af7d)
42002-
42003-
```diff
42004-
@@ browser_protocol.pdl:1092 @@ domain Browser
42005-
protectedMediaIdentifier
42006-
sensors
42007-
storageAccess
42008-
+ topLevelStorageAccess
42009-
videoCapture
42010-
videoCapturePanTiltZoom
42011-
wakeLockScreen
42012-
```
42013-
42014-
## Roll protocol to r1087818 — _2022-12-31T04:27:46.000Z_
42015-
###### Diff: [`47facb7...0400c45`](https://github.com/ChromeDevTools/devtools-protocol/compare/47facb7...0400c45)
42016-
42017-
```diff
42018-
@@ browser_protocol.pdl:8555 @@ domain Page
42019-
ActivatedInBackground
42020-
EmbedderHostDisallowed
42021-
ActivationNavigationDestroyedBeforeSuccess
42022-
+ TabClosedByUserGesture
42023-
+ TabClosedWithoutUserGesture
42024-
42025-
# Fired when a prerender attempt is completed.
42026-
experimental event prerenderAttemptCompleted
4202742014
```

json/browser_protocol.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15927,7 +15927,7 @@
1592715927
},
1592815928
{
1592915929
"name": "expires",
15930-
"description": "Cookie expiration date as the number of seconds since the UNIX epoch.",
15930+
"description": "Cookie expiration date as the number of seconds since the UNIX epoch.\nThe value is set to -1 if the expiry date is not set.\nThe value can be null for values that cannot be represented in\nJSON (\u00b1Inf).",
1593115931
"type": "number"
1593215932
},
1593315933
{

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "devtools-protocol",
3-
"version": "0.0.1515189",
3+
"version": "0.0.1515996",
44
"description": "The Chrome DevTools Protocol JSON",
55
"repository": "https://github.com/ChromeDevTools/devtools-protocol",
66
"author": "The Chromium Authors",

pdl/domains/Network.pdl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -622,6 +622,9 @@ domain Network
622622
# Cookie path.
623623
string path
624624
# Cookie expiration date as the number of seconds since the UNIX epoch.
625+
# The value is set to -1 if the expiry date is not set.
626+
# The value can be null for values that cannot be represented in
627+
# JSON (±Inf).
625628
number expires
626629
# Cookie size.
627630
integer size

scripts/inspector_protocol

Submodule inspector_protocol updated from 07272ab to 1ac1ec6

types/protocol-mapping.d.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1+
// Copyright (c) 2025 The Chromium Authors. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
/**********************************************************************
2-
* Auto-generated by protocol-dts-generator.ts, do not edit manually. *
6+
* Auto-generated by protocol-dts-generator.ts. Do not edit manually. *
37
**********************************************************************/
48

59
import Protocol from './protocol'

types/protocol-proxy-api.d.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1+
// Copyright (c) 2025 The Chromium Authors. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
/**********************************************************************
2-
* Auto-generated by protocol-dts-generator.ts, do not edit manually. *
6+
* Auto-generated by protocol-dts-generator.ts. Do not edit manually. *
37
**********************************************************************/
48

59
import Protocol from './protocol'

types/protocol-tests-proxy-api.d.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1+
// Copyright (c) 2025 The Chromium Authors. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
/**********************************************************************
2-
* Auto-generated by protocol-dts-generator.ts, do not edit manually. *
6+
* Auto-generated by protocol-dts-generator.ts. Do not edit manually. *
37
**********************************************************************/
48

59
import Protocol from './protocol'

types/protocol.d.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1+
// Copyright (c) 2025 The Chromium Authors. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
15
/**********************************************************************
2-
* Auto-generated by protocol-dts-generator.ts, do not edit manually. *
6+
* Auto-generated by protocol-dts-generator.ts. Do not edit manually. *
37
**********************************************************************/
48

59
/**
@@ -12744,6 +12748,9 @@ export namespace Protocol {
1274412748
path: string;
1274512749
/**
1274612750
* Cookie expiration date as the number of seconds since the UNIX epoch.
12751+
* The value is set to -1 if the expiry date is not set.
12752+
* The value can be null for values that cannot be represented in
12753+
* JSON (±Inf).
1274712754
*/
1274812755
expires: number;
1274912756
/**

0 commit comments

Comments
 (0)