@@ -614,12 +614,12 @@ Protocol.PageAgent.prototype.invoke_getLayoutMetrics = function(obj) {};
614614 * @param {Protocol.Page.FrameId } frameId
615615 * @param {string= } opt_worldName
616616 * @param {boolean= } opt_grantUniveralAccess
617- * @return {!Promise<undefined > }
617+ * @return {!Promise<?Protocol.Runtime.ExecutionContextId > }
618618 */
619619Protocol . PageAgent . prototype . createIsolatedWorld = function ( frameId , opt_worldName , opt_grantUniveralAccess ) { } ;
620620/** @typedef {!{grantUniveralAccess: (boolean|undefined), worldName: (string|undefined), frameId: Protocol.Page.FrameId} } */
621621Protocol . PageAgent . CreateIsolatedWorldRequest ;
622- /** @typedef {Object|undefined } */
622+ /** @typedef {!{executionContextId: Protocol.Runtime.ExecutionContextId} } */
623623Protocol . PageAgent . CreateIsolatedWorldResponse ;
624624/**
625625 * @param {!Protocol.PageAgent.CreateIsolatedWorldRequest } obj
@@ -5163,7 +5163,7 @@ Protocol.StorageAgent.prototype.invoke_clearDataForOrigin = function(obj) {};
51635163Protocol . StorageAgent . prototype . getUsageAndQuota = function ( origin ) { } ;
51645164/** @typedef {!{origin: string} } */
51655165Protocol . StorageAgent . GetUsageAndQuotaRequest ;
5166- /** @typedef {!{usage: number, quota: number} } */
5166+ /** @typedef {!{usage: number, usageBreakdown: !Array<Protocol.Storage.UsageForType>, quota: number} } */
51675167Protocol . StorageAgent . GetUsageAndQuotaResponse ;
51685168/**
51695169 * @param {!Protocol.StorageAgent.GetUsageAndQuotaRequest } obj
@@ -5181,8 +5181,12 @@ Protocol.Storage.StorageType = {
51815181 Websql : "websql" ,
51825182 Service_workers : "service_workers" ,
51835183 Cache_storage : "cache_storage" ,
5184- All : "all"
5184+ All : "all" ,
5185+ Other : "other"
51855186} ;
5187+
5188+ /** @typedef {!{storageType:(Protocol.Storage.StorageType), usage:(number)} } */
5189+ Protocol . Storage . UsageForType ;
51865190/** @interface */
51875191Protocol . StorageDispatcher = function ( ) { } ;
51885192Protocol . Log = { } ;
@@ -6543,7 +6547,7 @@ Protocol.Profiler.PositionTickInfo;
65436547/** @typedef {!{startOffset:(number), endOffset:(number), count:(number)} } */
65446548Protocol . Profiler . CoverageRange ;
65456549
6546- /** @typedef {!{functionName:(string), ranges:(!Array<Protocol.Profiler.CoverageRange>)} } */
6550+ /** @typedef {!{functionName:(string), ranges:(!Array<Protocol.Profiler.CoverageRange>), isBlockCoverage:(boolean) } } */
65476551Protocol . Profiler . FunctionCoverage ;
65486552
65496553/** @typedef {!{scriptId:(Protocol.Runtime.ScriptId), url:(string), functions:(!Array<Protocol.Profiler.FunctionCoverage>)} } */
0 commit comments