Skip to content

Commit 661d4c7

Browse files
author
Jakub Kulhan
committed
autoupdated protocol.json & generated files
1 parent de4fc63 commit 661d4c7

File tree

6 files changed

+3
-121
lines changed

6 files changed

+3
-121
lines changed

gen-src/ChromeDevtoolsProtocol/Domain/PageDomain.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@
8181
use ChromeDevtoolsProtocol\Model\Page\SetGeolocationOverrideRequest;
8282
use ChromeDevtoolsProtocol\Model\Page\SetInterceptFileChooserDialogRequest;
8383
use ChromeDevtoolsProtocol\Model\Page\SetLifecycleEventsEnabledRequest;
84-
use ChromeDevtoolsProtocol\Model\Page\SetProduceCompilationCacheRequest;
8584
use ChromeDevtoolsProtocol\Model\Page\SetTouchEmulationEnabledRequest;
8685
use ChromeDevtoolsProtocol\Model\Page\SetWebLifecycleStateRequest;
8786
use ChromeDevtoolsProtocol\Model\Page\StartScreencastRequest;
@@ -459,12 +458,6 @@ public function setLifecycleEventsEnabled(ContextInterface $ctx, SetLifecycleEve
459458
}
460459

461460

462-
public function setProduceCompilationCache(ContextInterface $ctx, SetProduceCompilationCacheRequest $request): void
463-
{
464-
$this->internalClient->executeCommand($ctx, 'Page.setProduceCompilationCache', $request);
465-
}
466-
467-
468461
public function setTouchEmulationEnabled(ContextInterface $ctx, SetTouchEmulationEnabledRequest $request): void
469462
{
470463
$this->internalClient->executeCommand($ctx, 'Page.setTouchEmulationEnabled', $request);

gen-src/ChromeDevtoolsProtocol/Domain/PageDomainInterface.php

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@
8080
use ChromeDevtoolsProtocol\Model\Page\SetGeolocationOverrideRequest;
8181
use ChromeDevtoolsProtocol\Model\Page\SetInterceptFileChooserDialogRequest;
8282
use ChromeDevtoolsProtocol\Model\Page\SetLifecycleEventsEnabledRequest;
83-
use ChromeDevtoolsProtocol\Model\Page\SetProduceCompilationCacheRequest;
8483
use ChromeDevtoolsProtocol\Model\Page\SetTouchEmulationEnabledRequest;
8584
use ChromeDevtoolsProtocol\Model\Page\SetWebLifecycleStateRequest;
8685
use ChromeDevtoolsProtocol\Model\Page\StartScreencastRequest;
@@ -457,7 +456,7 @@ public function printToPDF(ContextInterface $ctx, PrintToPDFRequest $request): P
457456

458457

459458
/**
460-
* Requests backend to produce compilation cache for the specified scripts. Unlike setProduceCompilationCache, this allows client to only produce cache for specific scripts. `scripts` are appeneded to the list of scripts for which the cache for would produced. Disabling compilation cache with `setProduceCompilationCache` would reset all pending cache requests. The list may also be reset during page navigation. When script with a matching URL is encountered, the cache is optionally produced upon backend discretion, based on internal heuristics. See also: `Page.compilationCacheProduced`.
459+
* Requests backend to produce compilation cache for the specified scripts. `scripts` are appeneded to the list of scripts for which the cache would be produced. The list may be reset during page navigation. When script with a matching URL is encountered, the cache is optionally produced upon backend discretion, based on internal heuristics. See also: `Page.compilationCacheProduced`.
461460
*
462461
* @param ContextInterface $ctx
463462
* @param ProduceCompilationCacheRequest $request
@@ -659,17 +658,6 @@ public function setInterceptFileChooserDialog(
659658
public function setLifecycleEventsEnabled(ContextInterface $ctx, SetLifecycleEventsEnabledRequest $request): void;
660659

661660

662-
/**
663-
* Forces compilation cache to be generated for every subresource script. See also: `Page.produceCompilationCache`.
664-
*
665-
* @param ContextInterface $ctx
666-
* @param SetProduceCompilationCacheRequest $request
667-
*
668-
* @return void
669-
*/
670-
public function setProduceCompilationCache(ContextInterface $ctx, SetProduceCompilationCacheRequest $request): void;
671-
672-
673661
/**
674662
* Toggles mouse event-based touch event emulation.
675663
*

gen-src/ChromeDevtoolsProtocol/Model/Page/SetProduceCompilationCacheRequest.php

Lines changed: 0 additions & 47 deletions
This file was deleted.

gen-src/ChromeDevtoolsProtocol/Model/Page/SetProduceCompilationCacheRequestBuilder.php

Lines changed: 0 additions & 41 deletions
This file was deleted.

protocol.json

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18400,7 +18400,7 @@
1840018400
},
1840118401
{
1840218402
"name": "produceCompilationCache",
18403-
"description": "Requests backend to produce compilation cache for the specified scripts. Unlike setProduceCompilationCache, this allows client to only produce cache for specific scripts. `scripts` are appeneded to the list of scripts for which the cache for would produced. Disabling compilation cache with `setProduceCompilationCache` would reset all pending cache requests. The list may also be reset during page navigation. When script with a matching URL is encountered, the cache is optionally produced upon backend discretion, based on internal heuristics. See also: `Page.compilationCacheProduced`.",
18403+
"description": "Requests backend to produce compilation cache for the specified scripts. `scripts` are appeneded to the list of scripts for which the cache would be produced. The list may be reset during page navigation. When script with a matching URL is encountered, the cache is optionally produced upon backend discretion, based on internal heuristics. See also: `Page.compilationCacheProduced`.",
1840418404
"experimental": true,
1840518405
"parameters": [
1840618406
{
@@ -18750,17 +18750,6 @@
1875018750
}
1875118751
]
1875218752
},
18753-
{
18754-
"name": "setProduceCompilationCache",
18755-
"description": "Forces compilation cache to be generated for every subresource script. See also: `Page.produceCompilationCache`.",
18756-
"experimental": true,
18757-
"parameters": [
18758-
{
18759-
"name": "enabled",
18760-
"type": "boolean"
18761-
}
18762-
]
18763-
},
1876418753
{
1876518754
"name": "setTouchEmulationEnabled",
1876618755
"description": "Toggles mouse event-based touch event emulation.",

protocol.json.md5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ae0b4524de54e086377aed9e64453720 protocol.json
1+
c7281abbe711375fdab15da8bd455a2b protocol.json

0 commit comments

Comments
 (0)