Skip to content

Commit 713993e

Browse files
committed
Roll protocol to r1404580
1 parent e2b4f4f commit 713993e

8 files changed

+88
-319
lines changed

changelog.md

+80-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,86 @@
11

22

3+
## Roll protocol to r1404580 — _2025-01-10T04:29:07.000Z_
4+
###### Diff: [`e2b4f4f...7e9acf8`](https://github.com/ChromeDevTools/devtools-protocol/compare/e2b4f4f...7e9acf8)
5+
6+
```diff
7+
@@ browser_protocol.pdl:949 @@ experimental domain Audits
8+
InvalidFieldsSpecified
9+
RelyingPartyOriginIsOpaque
10+
TypeNotMatching
11+
+ UiDismissedNoEmbargo
12+
13+
type FederatedAuthUserInfoRequestIssueDetails extends object
14+
properties
15+
@@ -4217,56 +4218,6 @@ experimental domain DOMStorage
16+
parameters
17+
StorageId storageId
18+
19+
-experimental domain Database
20+
-
21+
- # Unique identifier of Database object.
22+
- type DatabaseId extends string
23+
-
24+
- # Database object.
25+
- type Database extends object
26+
- properties
27+
- # Database ID.
28+
- DatabaseId id
29+
- # Database domain.
30+
- string domain
31+
- # Database name.
32+
- string name
33+
- # Database version.
34+
- string version
35+
-
36+
- # Database error.
37+
- type Error extends object
38+
- properties
39+
- # Error message.
40+
- string message
41+
- # Error code.
42+
- integer code
43+
-
44+
- # Disables database tracking, prevents database events from being sent to the client.
45+
- command disable
46+
-
47+
- # Enables database tracking, database events will now be delivered to the client.
48+
- command enable
49+
-
50+
- command executeSQL
51+
- parameters
52+
- DatabaseId databaseId
53+
- string query
54+
- returns
55+
- optional array of string columnNames
56+
- optional array of any values
57+
- optional Error sqlError
58+
-
59+
- command getDatabaseTableNames
60+
- parameters
61+
- DatabaseId databaseId
62+
- returns
63+
- array of string tableNames
64+
-
65+
- event addDatabase
66+
- parameters
67+
- Database database
68+
-
69+
experimental domain DeviceOrientation
70+
71+
# Clears the overridden Device Orientation.
72+
@@ -8246,6 +8197,7 @@ domain Page
73+
ch-ua
74+
ch-ua-arch
75+
ch-ua-bitness
76+
+ ch-ua-high-entropy-values
77+
ch-ua-platform
78+
ch-ua-model
79+
ch-ua-mobile
80+
```
81+
382
## Roll protocol to r1403989 — _2025-01-09T04:29:04.000Z_
4-
###### Diff: [`d212a6d...0709f89`](https://github.com/ChromeDevTools/devtools-protocol/compare/d212a6d...0709f89)
83+
###### Diff: [`d212a6d...e2b4f4f`](https://github.com/ChromeDevTools/devtools-protocol/compare/d212a6d...e2b4f4f)
584

685
```diff
786
@@ browser_protocol.pdl:11295 @@ domain Target

json/browser_protocol.json

+3-131
Original file line numberDiff line numberDiff line change
@@ -1820,7 +1820,8 @@
18201820
"ReplacedByActiveMode",
18211821
"InvalidFieldsSpecified",
18221822
"RelyingPartyOriginIsOpaque",
1823-
"TypeNotMatching"
1823+
"TypeNotMatching",
1824+
"UiDismissedNoEmbargo"
18241825
]
18251826
},
18261827
{
@@ -9126,136 +9127,6 @@
91269127
}
91279128
]
91289129
},
9129-
{
9130-
"domain": "Database",
9131-
"experimental": true,
9132-
"types": [
9133-
{
9134-
"id": "DatabaseId",
9135-
"description": "Unique identifier of Database object.",
9136-
"type": "string"
9137-
},
9138-
{
9139-
"id": "Database",
9140-
"description": "Database object.",
9141-
"type": "object",
9142-
"properties": [
9143-
{
9144-
"name": "id",
9145-
"description": "Database ID.",
9146-
"$ref": "DatabaseId"
9147-
},
9148-
{
9149-
"name": "domain",
9150-
"description": "Database domain.",
9151-
"type": "string"
9152-
},
9153-
{
9154-
"name": "name",
9155-
"description": "Database name.",
9156-
"type": "string"
9157-
},
9158-
{
9159-
"name": "version",
9160-
"description": "Database version.",
9161-
"type": "string"
9162-
}
9163-
]
9164-
},
9165-
{
9166-
"id": "Error",
9167-
"description": "Database error.",
9168-
"type": "object",
9169-
"properties": [
9170-
{
9171-
"name": "message",
9172-
"description": "Error message.",
9173-
"type": "string"
9174-
},
9175-
{
9176-
"name": "code",
9177-
"description": "Error code.",
9178-
"type": "integer"
9179-
}
9180-
]
9181-
}
9182-
],
9183-
"commands": [
9184-
{
9185-
"name": "disable",
9186-
"description": "Disables database tracking, prevents database events from being sent to the client."
9187-
},
9188-
{
9189-
"name": "enable",
9190-
"description": "Enables database tracking, database events will now be delivered to the client."
9191-
},
9192-
{
9193-
"name": "executeSQL",
9194-
"parameters": [
9195-
{
9196-
"name": "databaseId",
9197-
"$ref": "DatabaseId"
9198-
},
9199-
{
9200-
"name": "query",
9201-
"type": "string"
9202-
}
9203-
],
9204-
"returns": [
9205-
{
9206-
"name": "columnNames",
9207-
"optional": true,
9208-
"type": "array",
9209-
"items": {
9210-
"type": "string"
9211-
}
9212-
},
9213-
{
9214-
"name": "values",
9215-
"optional": true,
9216-
"type": "array",
9217-
"items": {
9218-
"type": "any"
9219-
}
9220-
},
9221-
{
9222-
"name": "sqlError",
9223-
"optional": true,
9224-
"$ref": "Error"
9225-
}
9226-
]
9227-
},
9228-
{
9229-
"name": "getDatabaseTableNames",
9230-
"parameters": [
9231-
{
9232-
"name": "databaseId",
9233-
"$ref": "DatabaseId"
9234-
}
9235-
],
9236-
"returns": [
9237-
{
9238-
"name": "tableNames",
9239-
"type": "array",
9240-
"items": {
9241-
"type": "string"
9242-
}
9243-
}
9244-
]
9245-
}
9246-
],
9247-
"events": [
9248-
{
9249-
"name": "addDatabase",
9250-
"parameters": [
9251-
{
9252-
"name": "database",
9253-
"$ref": "Database"
9254-
}
9255-
]
9256-
}
9257-
]
9258-
},
92599130
{
92609131
"domain": "DeviceOrientation",
92619132
"experimental": true,
@@ -17508,6 +17379,7 @@
1750817379
"ch-ua",
1750917380
"ch-ua-arch",
1751017381
"ch-ua-bitness",
17382+
"ch-ua-high-entropy-values",
1751117383
"ch-ua-platform",
1751217384
"ch-ua-model",
1751317385
"ch-ua-mobile",

package.json

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

pdl/browser_protocol.pdl

+2-50
Original file line numberDiff line numberDiff line change
@@ -949,6 +949,7 @@ experimental domain Audits
949949
InvalidFieldsSpecified
950950
RelyingPartyOriginIsOpaque
951951
TypeNotMatching
952+
UiDismissedNoEmbargo
952953

953954
type FederatedAuthUserInfoRequestIssueDetails extends object
954955
properties
@@ -4217,56 +4218,6 @@ experimental domain DOMStorage
42174218
parameters
42184219
StorageId storageId
42194220

4220-
experimental domain Database
4221-
4222-
# Unique identifier of Database object.
4223-
type DatabaseId extends string
4224-
4225-
# Database object.
4226-
type Database extends object
4227-
properties
4228-
# Database ID.
4229-
DatabaseId id
4230-
# Database domain.
4231-
string domain
4232-
# Database name.
4233-
string name
4234-
# Database version.
4235-
string version
4236-
4237-
# Database error.
4238-
type Error extends object
4239-
properties
4240-
# Error message.
4241-
string message
4242-
# Error code.
4243-
integer code
4244-
4245-
# Disables database tracking, prevents database events from being sent to the client.
4246-
command disable
4247-
4248-
# Enables database tracking, database events will now be delivered to the client.
4249-
command enable
4250-
4251-
command executeSQL
4252-
parameters
4253-
DatabaseId databaseId
4254-
string query
4255-
returns
4256-
optional array of string columnNames
4257-
optional array of any values
4258-
optional Error sqlError
4259-
4260-
command getDatabaseTableNames
4261-
parameters
4262-
DatabaseId databaseId
4263-
returns
4264-
array of string tableNames
4265-
4266-
event addDatabase
4267-
parameters
4268-
Database database
4269-
42704221
experimental domain DeviceOrientation
42714222

42724223
# Clears the overridden Device Orientation.
@@ -8246,6 +8197,7 @@ domain Page
82468197
ch-ua
82478198
ch-ua-arch
82488199
ch-ua-bitness
8200+
ch-ua-high-entropy-values
82498201
ch-ua-platform
82508202
ch-ua-model
82518203
ch-ua-mobile

types/protocol-mapping.d.ts

-23
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,6 @@ export namespace ProtocolMapping {
241241
'DOMStorage.domStorageItemRemoved': [Protocol.DOMStorage.DomStorageItemRemovedEvent];
242242
'DOMStorage.domStorageItemUpdated': [Protocol.DOMStorage.DomStorageItemUpdatedEvent];
243243
'DOMStorage.domStorageItemsCleared': [Protocol.DOMStorage.DomStorageItemsClearedEvent];
244-
'Database.addDatabase': [Protocol.Database.AddDatabaseEvent];
245244
/**
246245
* Notification sent after the virtual time budget for the current VirtualTimePolicy has run out.
247246
*/
@@ -2662,28 +2661,6 @@ export namespace ProtocolMapping {
26622661
paramsType: [Protocol.DOMStorage.SetDOMStorageItemRequest];
26632662
returnType: void;
26642663
};
2665-
/**
2666-
* Disables database tracking, prevents database events from being sent to the client.
2667-
*/
2668-
'Database.disable': {
2669-
paramsType: [];
2670-
returnType: void;
2671-
};
2672-
/**
2673-
* Enables database tracking, database events will now be delivered to the client.
2674-
*/
2675-
'Database.enable': {
2676-
paramsType: [];
2677-
returnType: void;
2678-
};
2679-
'Database.executeSQL': {
2680-
paramsType: [Protocol.Database.ExecuteSQLRequest];
2681-
returnType: Protocol.Database.ExecuteSQLResponse;
2682-
};
2683-
'Database.getDatabaseTableNames': {
2684-
paramsType: [Protocol.Database.GetDatabaseTableNamesRequest];
2685-
returnType: Protocol.Database.GetDatabaseTableNamesResponse;
2686-
};
26872664
/**
26882665
* Clears the overridden Device Orientation.
26892666
*/

types/protocol-proxy-api.d.ts

-21
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,6 @@ export namespace ProtocolProxyApi {
5252

5353
DOMStorage: DOMStorageApi;
5454

55-
Database: DatabaseApi;
56-
5755
DeviceOrientation: DeviceOrientationApi;
5856

5957
Emulation: EmulationApi;
@@ -1830,25 +1828,6 @@ export namespace ProtocolProxyApi {
18301828

18311829
}
18321830

1833-
export interface DatabaseApi {
1834-
/**
1835-
* Disables database tracking, prevents database events from being sent to the client.
1836-
*/
1837-
disable(): Promise<void>;
1838-
1839-
/**
1840-
* Enables database tracking, database events will now be delivered to the client.
1841-
*/
1842-
enable(): Promise<void>;
1843-
1844-
executeSQL(params: Protocol.Database.ExecuteSQLRequest): Promise<Protocol.Database.ExecuteSQLResponse>;
1845-
1846-
getDatabaseTableNames(params: Protocol.Database.GetDatabaseTableNamesRequest): Promise<Protocol.Database.GetDatabaseTableNamesResponse>;
1847-
1848-
on(event: 'addDatabase', listener: (params: Protocol.Database.AddDatabaseEvent) => void): void;
1849-
1850-
}
1851-
18521831
export interface DeviceOrientationApi {
18531832
/**
18541833
* Clears the overridden Device Orientation.

0 commit comments

Comments
 (0)