Skip to content

Commit

Permalink
devtools: regenerate protocol-related files
Browse files Browse the repository at this point in the history
  • Loading branch information
babot committed Aug 29, 2019
1 parent a64bce8 commit b96cecd
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 8 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Protocol.BakedSupportedCSSPropertiesChromeTag='78.0.3879.2';
Protocol.BakedSupportedCSSPropertiesChromeRev='f478ba7211a5f4f8cc25a9adfa391a12b9222aea';
Protocol.BakedSupportedCSSPropertiesChromeTag='78.0.3896.2';
Protocol.BakedSupportedCSSPropertiesChromeRev='b72ae910eb9f8b4e3a4a0fab20acbfe11213da6a';
Protocol.BakedSupportedCSSProperties=''
+ '[{"name": "-internal-effective-zoom", "inherited": true},\n'
+ ' {"name": "-internal-visited-background-color"},\n'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2413,11 +2413,12 @@ Protocol.DOMSnapshotAgent.prototype.invoke_getSnapshot = function(obj) {};

/**
* @param {!Array<string>} computedStyles
* @param {boolean=} opt_includePaintOrder
* @param {boolean=} opt_includeDOMRects
* @return {!Promise<?Array<Protocol.DOMSnapshot.DocumentSnapshot>>}
*/
Protocol.DOMSnapshotAgent.prototype.captureSnapshot = function(computedStyles, opt_includeDOMRects) {};
/** @typedef {!{includeDOMRects: (boolean|undefined), computedStyles: !Array<string>}} */
Protocol.DOMSnapshotAgent.prototype.captureSnapshot = function(computedStyles, opt_includePaintOrder, opt_includeDOMRects) {};
/** @typedef {!{includePaintOrder: (boolean|undefined), includeDOMRects: (boolean|undefined), computedStyles: !Array<string>}} */
Protocol.DOMSnapshotAgent.CaptureSnapshotRequest;
/** @typedef {!{documents: !Array<Protocol.DOMSnapshot.DocumentSnapshot>, strings: !Array<string>}} */
Protocol.DOMSnapshotAgent.CaptureSnapshotResponse;
Expand Down Expand Up @@ -2465,7 +2466,7 @@ Protocol.DOMSnapshot.DocumentSnapshot;
/** @typedef {!{parentIndex:(!Array<number>|undefined), nodeType:(!Array<number>|undefined), nodeName:(!Array<Protocol.DOMSnapshot.StringIndex>|undefined), nodeValue:(!Array<Protocol.DOMSnapshot.StringIndex>|undefined), backendNodeId:(!Array<Protocol.DOM.BackendNodeId>|undefined), attributes:(!Array<Protocol.DOMSnapshot.ArrayOfStrings>|undefined), textValue:(Protocol.DOMSnapshot.RareStringData|undefined), inputValue:(Protocol.DOMSnapshot.RareStringData|undefined), inputChecked:(Protocol.DOMSnapshot.RareBooleanData|undefined), optionSelected:(Protocol.DOMSnapshot.RareBooleanData|undefined), contentDocumentIndex:(Protocol.DOMSnapshot.RareIntegerData|undefined), pseudoType:(Protocol.DOMSnapshot.RareStringData|undefined), isClickable:(Protocol.DOMSnapshot.RareBooleanData|undefined), currentSourceURL:(Protocol.DOMSnapshot.RareStringData|undefined), originURL:(Protocol.DOMSnapshot.RareStringData|undefined)}} */
Protocol.DOMSnapshot.NodeTreeSnapshot;

/** @typedef {!{nodeIndex:(!Array<number>), styles:(!Array<Protocol.DOMSnapshot.ArrayOfStrings>), bounds:(!Array<Protocol.DOMSnapshot.Rectangle>), text:(!Array<Protocol.DOMSnapshot.StringIndex>), stackingContexts:(Protocol.DOMSnapshot.RareBooleanData), offsetRects:(!Array<Protocol.DOMSnapshot.Rectangle>|undefined), scrollRects:(!Array<Protocol.DOMSnapshot.Rectangle>|undefined), clientRects:(!Array<Protocol.DOMSnapshot.Rectangle>|undefined)}} */
/** @typedef {!{nodeIndex:(!Array<number>), styles:(!Array<Protocol.DOMSnapshot.ArrayOfStrings>), bounds:(!Array<Protocol.DOMSnapshot.Rectangle>), text:(!Array<Protocol.DOMSnapshot.StringIndex>), stackingContexts:(Protocol.DOMSnapshot.RareBooleanData), paintOrders:(!Array<number>|undefined), offsetRects:(!Array<Protocol.DOMSnapshot.Rectangle>|undefined), scrollRects:(!Array<Protocol.DOMSnapshot.Rectangle>|undefined), clientRects:(!Array<Protocol.DOMSnapshot.Rectangle>|undefined)}} */
Protocol.DOMSnapshot.LayoutTreeSnapshot;

/** @typedef {!{layoutIndex:(!Array<number>), bounds:(!Array<Protocol.DOMSnapshot.Rectangle>), start:(!Array<number>), length:(!Array<number>)}} */
Expand Down Expand Up @@ -7703,6 +7704,21 @@ Protocol.WebAuthnAgent.GetCredentialsResponse;
* @return {!Promise<!Protocol.WebAuthnAgent.GetCredentialsResponse>} */
Protocol.WebAuthnAgent.prototype.invoke_getCredentials = function(obj) {};

/**
* @param {Protocol.WebAuthn.AuthenticatorId} authenticatorId
* @param {string} credentialId
* @return {!Promise<undefined>}
*/
Protocol.WebAuthnAgent.prototype.removeCredential = function(authenticatorId, credentialId) {};
/** @typedef {!{credentialId: string, authenticatorId: Protocol.WebAuthn.AuthenticatorId}} */
Protocol.WebAuthnAgent.RemoveCredentialRequest;
/** @typedef {Object|undefined} */
Protocol.WebAuthnAgent.RemoveCredentialResponse;
/**
* @param {!Protocol.WebAuthnAgent.RemoveCredentialRequest} obj
* @return {!Promise<!Protocol.WebAuthnAgent.RemoveCredentialResponse>} */
Protocol.WebAuthnAgent.prototype.invoke_removeCredential = function(obj) {};

/**
* @param {Protocol.WebAuthn.AuthenticatorId} authenticatorId
* @return {!Promise<undefined>}
Expand Down

0 comments on commit b96cecd

Please sign in to comment.