1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623
|
/*
* Copyright (C) 2012 Google Inc. All rights reserved.
* Copyright (C) 2013-2017 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
#include "CSSComputedStyleDeclaration.h"
#include "ContextDestructionObserver.h"
#include "ExceptionOr.h"
#include "JSDOMPromiseDeferred.h"
#include "OrientationNotifier.h"
#include "PageConsoleClient.h"
#include "RealtimeMediaSource.h"
#include <runtime/Float32Array.h>
#include <wtf/Optional.h>
#if ENABLE(MEDIA_SESSION)
#include "MediaSessionInterruptionProvider.h"
#endif
namespace WebCore {
class AudioContext;
class DOMRect;
class DOMRectList;
class DOMURL;
class DOMWindow;
class Document;
class Element;
class File;
class Frame;
class GCObservation;
class HTMLImageElement;
class HTMLInputElement;
class HTMLLinkElement;
class HTMLMediaElement;
class HTMLSelectElement;
class ImageData;
class InspectorStubFrontend;
class InternalSettings;
class MallocStatistics;
class MediaSession;
class MediaStream;
class MediaStreamTrack;
class MemoryInfo;
class MockCDMFactory;
class MockContentFilterSettings;
class MockPageOverlay;
class NodeList;
class Page;
class Range;
class RenderedDocumentMarker;
class RTCPeerConnection;
class SVGSVGElement;
class SerializedScriptValue;
class SourceBuffer;
class StyleSheet;
class TimeRanges;
class TypeConversions;
class WebGLRenderingContext;
class XMLHttpRequest;
class Internals final : public RefCounted<Internals>, private ContextDestructionObserver
#if ENABLE(MEDIA_STREAM)
, private RealtimeMediaSource::Observer
#endif
{
public:
static Ref<Internals> create(Document&);
virtual ~Internals();
static void resetToConsistentState(Page&);
ExceptionOr<String> elementRenderTreeAsText(Element&);
bool hasPausedImageAnimations(Element&);
String address(Node&);
bool nodeNeedsStyleRecalc(Node&);
String styleChangeType(Node&);
String description(JSC::JSValue);
bool isPreloaded(const String& url);
bool isLoadingFromMemoryCache(const String& url);
String xhrResponseSource(XMLHttpRequest&);
bool isSharingStyleSheetContents(HTMLLinkElement&, HTMLLinkElement&);
bool isStyleSheetLoadingSubresources(HTMLLinkElement&);
enum class CachePolicy { UseProtocolCachePolicy, ReloadIgnoringCacheData, ReturnCacheDataElseLoad, ReturnCacheDataDontLoad };
void setOverrideCachePolicy(CachePolicy);
ExceptionOr<void> setCanShowModalDialogOverride(bool allow);
enum class ResourceLoadPriority { ResourceLoadPriorityVeryLow, ResourceLoadPriorityLow, ResourceLoadPriorityMedium, ResourceLoadPriorityHigh, ResourceLoadPriorityVeryHigh };
void setOverrideResourceLoadPriority(ResourceLoadPriority);
void setStrictRawResourceValidationPolicyDisabled(bool);
void clearMemoryCache();
void pruneMemoryCacheToSize(unsigned size);
void destroyDecodedDataForAllImages();
unsigned memoryCacheSize() const;
unsigned imageFrameIndex(HTMLImageElement&);
void setImageFrameDecodingDuration(HTMLImageElement&, float duration);
void resetImageAnimation(HTMLImageElement&);
bool isImageAnimating(HTMLImageElement&);
void setClearDecoderAfterAsyncFrameRequestForTesting(HTMLImageElement&, bool enabled);
unsigned imageDecodeCount(HTMLImageElement&);
void setLargeImageAsyncDecodingEnabledForTesting(HTMLImageElement&, bool enabled);
void setGridMaxTracksLimit(unsigned);
void clearPageCache();
unsigned pageCacheSize() const;
void disableTileSizeUpdateDelay();
void setSpeculativeTilingDelayDisabledForTesting(bool);
Ref<CSSComputedStyleDeclaration> computedStyleIncludingVisitedInfo(Element&) const;
Node* ensureUserAgentShadowRoot(Element& host);
Node* shadowRoot(Element& host);
ExceptionOr<String> shadowRootType(const Node&) const;
String shadowPseudoId(Element&);
void setShadowPseudoId(Element&, const String&);
// CSS Deferred Parsing Testing
unsigned deferredStyleRulesCount(StyleSheet&);
unsigned deferredGroupRulesCount(StyleSheet&);
unsigned deferredKeyframesRulesCount(StyleSheet&);
// DOMTimers throttling testing.
ExceptionOr<bool> isTimerThrottled(int timeoutId);
bool isRequestAnimationFrameThrottled() const;
double requestAnimationFrameInterval() const;
bool scriptedAnimationsAreSuspended() const;
bool areTimersThrottled() const;
enum EventThrottlingBehavior { Responsive, Unresponsive };
void setEventThrottlingBehaviorOverride(std::optional<EventThrottlingBehavior>);
std::optional<EventThrottlingBehavior> eventThrottlingBehaviorOverride() const;
// Spatial Navigation testing.
ExceptionOr<unsigned> lastSpatialNavigationCandidateCount() const;
// CSS Animation testing.
unsigned numberOfActiveAnimations() const;
ExceptionOr<bool> animationsAreSuspended() const;
ExceptionOr<void> suspendAnimations() const;
ExceptionOr<void> resumeAnimations() const;
ExceptionOr<bool> pauseAnimationAtTimeOnElement(const String& animationName, double pauseTime, Element&);
ExceptionOr<bool> pauseAnimationAtTimeOnPseudoElement(const String& animationName, double pauseTime, Element&, const String& pseudoId);
double animationsInterval() const;
// CSS Transition testing.
ExceptionOr<bool> pauseTransitionAtTimeOnElement(const String& propertyName, double pauseTime, Element&);
ExceptionOr<bool> pauseTransitionAtTimeOnPseudoElement(const String& property, double pauseTime, Element&, const String& pseudoId);
Node* treeScopeRootNode(Node&);
Node* parentTreeScope(Node&);
String visiblePlaceholder(Element&);
void selectColorInColorChooser(HTMLInputElement&, const String& colorValue);
ExceptionOr<Vector<String>> formControlStateOfPreviousHistoryItem();
ExceptionOr<void> setFormControlStateOfPreviousHistoryItem(const Vector<String>&);
ExceptionOr<Ref<DOMRect>> absoluteCaretBounds();
Ref<DOMRect> boundingBox(Element&);
ExceptionOr<Ref<DOMRectList>> inspectorHighlightRects();
ExceptionOr<String> inspectorHighlightObject();
ExceptionOr<unsigned> markerCountForNode(Node&, const String&);
ExceptionOr<RefPtr<Range>> markerRangeForNode(Node&, const String& markerType, unsigned index);
ExceptionOr<String> markerDescriptionForNode(Node&, const String& markerType, unsigned index);
ExceptionOr<String> dumpMarkerRects(const String& markerType);
void addTextMatchMarker(const Range&, bool isActive);
ExceptionOr<void> setMarkedTextMatchesAreHighlighted(bool);
void invalidateFontCache();
void setFontSmoothingEnabled(bool);
ExceptionOr<void> setLowPowerModeEnabled(bool);
ExceptionOr<void> setScrollViewPosition(int x, int y);
ExceptionOr<Ref<DOMRect>> layoutViewportRect();
ExceptionOr<Ref<DOMRect>> visualViewportRect();
ExceptionOr<void> setViewBaseBackgroundColor(const String& colorValue);
ExceptionOr<void> setPagination(const String& mode, int gap, int pageLength);
ExceptionOr<void> setPaginationLineGridEnabled(bool);
ExceptionOr<String> configurationForViewport(float devicePixelRatio, int deviceWidth, int deviceHeight, int availableWidth, int availableHeight);
ExceptionOr<bool> wasLastChangeUserEdit(Element& textField);
bool elementShouldAutoComplete(HTMLInputElement&);
void setEditingValue(HTMLInputElement&, const String&);
void setAutofilled(HTMLInputElement&, bool enabled);
enum class AutoFillButtonType { AutoFillButtonTypeNone, AutoFillButtonTypeContacts, AutoFillButtonTypeCredentials };
void setShowAutoFillButton(HTMLInputElement&, AutoFillButtonType);
ExceptionOr<void> scrollElementToRect(Element&, int x, int y, int w, int h);
ExceptionOr<String> autofillFieldName(Element&);
ExceptionOr<void> paintControlTints();
RefPtr<Range> rangeFromLocationAndLength(Element& scope, int rangeLocation, int rangeLength);
unsigned locationFromRange(Element& scope, const Range&);
unsigned lengthFromRange(Element& scope, const Range&);
String rangeAsText(const Range&);
Ref<Range> subrange(Range&, int rangeLocation, int rangeLength);
ExceptionOr<RefPtr<Range>> rangeForDictionaryLookupAtLocation(int x, int y);
RefPtr<Range> rangeOfStringNearLocation(const Range&, const String&, unsigned);
ExceptionOr<void> setDelegatesScrolling(bool enabled);
ExceptionOr<int> lastSpellCheckRequestSequence();
ExceptionOr<int> lastSpellCheckProcessedSequence();
Vector<String> userPreferredLanguages() const;
void setUserPreferredLanguages(const Vector<String>&);
Vector<String> userPreferredAudioCharacteristics() const;
void setUserPreferredAudioCharacteristic(const String&);
ExceptionOr<unsigned> wheelEventHandlerCount();
ExceptionOr<unsigned> touchEventHandlerCount();
ExceptionOr<Ref<DOMRectList>> touchEventRectsForEvent(const String&);
ExceptionOr<Ref<DOMRectList>> passiveTouchEventListenerRects();
ExceptionOr<RefPtr<NodeList>> nodesFromRect(Document&, int x, int y, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding, bool ignoreClipping, bool allowUserAgentShadowContent, bool allowChildFrameContent) const;
String parserMetaData(JSC::JSValue = JSC::JSValue::JSUndefined);
void updateEditorUINowIfScheduled();
bool hasSpellingMarker(int from, int length);
bool hasGrammarMarker(int from, int length);
bool hasAutocorrectedMarker(int from, int length);
void setContinuousSpellCheckingEnabled(bool);
void setAutomaticQuoteSubstitutionEnabled(bool);
void setAutomaticLinkDetectionEnabled(bool);
void setAutomaticDashSubstitutionEnabled(bool);
void setAutomaticTextReplacementEnabled(bool);
void setAutomaticSpellingCorrectionEnabled(bool);
void handleAcceptedCandidate(const String& candidate, unsigned location, unsigned length);
bool isOverwriteModeEnabled();
void toggleOverwriteModeEnabled();
ExceptionOr<RefPtr<Range>> rangeOfString(const String&, RefPtr<Range>&&, const Vector<String>& findOptions);
ExceptionOr<unsigned> countMatchesForText(const String&, const Vector<String>& findOptions, const String& markMatches);
ExceptionOr<unsigned> countFindMatches(const String&, const Vector<String>& findOptions);
unsigned numberOfScrollableAreas();
ExceptionOr<bool> isPageBoxVisible(int pageNumber);
static const char* internalsId;
InternalSettings* settings() const;
unsigned workerThreadCount() const;
ExceptionOr<bool> areSVGAnimationsPaused() const;
ExceptionOr<double> svgAnimationsInterval(SVGSVGElement&) const;
enum {
// Values need to be kept in sync with Internals.idl.
LAYER_TREE_INCLUDES_VISIBLE_RECTS = 1,
LAYER_TREE_INCLUDES_TILE_CACHES = 2,
LAYER_TREE_INCLUDES_REPAINT_RECTS = 4,
LAYER_TREE_INCLUDES_PAINTING_PHASES = 8,
LAYER_TREE_INCLUDES_CONTENT_LAYERS = 16,
LAYER_TREE_INCLUDES_ACCELERATES_DRAWING = 32,
LAYER_TREE_INCLUDES_BACKING_STORE_ATTACHED = 64,
};
ExceptionOr<String> layerTreeAsText(Document&, unsigned short flags) const;
ExceptionOr<uint64_t> layerIDForElement(Element&);
ExceptionOr<String> repaintRectsAsText() const;
ExceptionOr<String> scrollingStateTreeAsText() const;
ExceptionOr<String> mainThreadScrollingReasons() const;
ExceptionOr<Ref<DOMRectList>> nonFastScrollableRects() const;
ExceptionOr<void> setElementUsesDisplayListDrawing(Element&, bool usesDisplayListDrawing);
ExceptionOr<void> setElementTracksDisplayListReplay(Element&, bool isTrackingReplay);
enum {
// Values need to be kept in sync with Internals.idl.
DISPLAY_LIST_INCLUDES_PLATFORM_OPERATIONS = 1,
};
ExceptionOr<String> displayListForElement(Element&, unsigned short flags);
ExceptionOr<String> replayDisplayListForElement(Element&, unsigned short flags);
ExceptionOr<void> garbageCollectDocumentResources() const;
void beginSimulatedMemoryPressure();
void endSimulatedMemoryPressure();
bool isUnderMemoryPressure();
ExceptionOr<void> insertAuthorCSS(const String&) const;
ExceptionOr<void> insertUserCSS(const String&) const;
unsigned numberOfLiveNodes() const;
unsigned numberOfLiveDocuments() const;
unsigned referencingNodeCount(const Document&) const;
RefPtr<DOMWindow> openDummyInspectorFrontend(const String& url);
void closeDummyInspectorFrontend();
ExceptionOr<void> setInspectorIsUnderTest(bool);
String counterValue(Element&);
int pageNumber(Element&, float pageWidth = 800, float pageHeight = 600);
Vector<String> shortcutIconURLs() const;
int numberOfPages(float pageWidthInPixels = 800, float pageHeightInPixels = 600);
ExceptionOr<String> pageProperty(const String& propertyName, int pageNumber) const;
ExceptionOr<String> pageSizeAndMarginsInPixels(int pageNumber, int width, int height, int marginTop, int marginRight, int marginBottom, int marginLeft) const;
ExceptionOr<float> pageScaleFactor() const;
ExceptionOr<void> setPageScaleFactor(float scaleFactor, int x, int y);
ExceptionOr<void> setPageZoomFactor(float);
ExceptionOr<void> setTextZoomFactor(float);
ExceptionOr<void> setUseFixedLayout(bool);
ExceptionOr<void> setFixedLayoutSize(int width, int height);
ExceptionOr<void> setViewExposedRect(float left, float top, float width, float height);
void setPrinting(int width, int height);
void setHeaderHeight(float);
void setFooterHeight(float);
void setTopContentInset(float);
#if ENABLE(FULLSCREEN_API)
void webkitWillEnterFullScreenForElement(Element&);
void webkitDidEnterFullScreenForElement(Element&);
void webkitWillExitFullScreenForElement(Element&);
void webkitDidExitFullScreenForElement(Element&);
#endif
WEBCORE_TESTSUPPORT_EXPORT void setApplicationCacheOriginQuota(unsigned long long);
void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme);
void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(const String& scheme);
void registerDefaultPortForProtocol(unsigned short port, const String& protocol);
Ref<MallocStatistics> mallocStatistics() const;
Ref<TypeConversions> typeConversions() const;
Ref<MemoryInfo> memoryInfo() const;
Vector<String> getReferencedFilePaths() const;
ExceptionOr<void> startTrackingRepaints();
ExceptionOr<void> stopTrackingRepaints();
ExceptionOr<void> startTrackingLayerFlushes();
ExceptionOr<unsigned> layerFlushCount();
ExceptionOr<void> startTrackingStyleRecalcs();
ExceptionOr<unsigned> styleRecalcCount();
unsigned lastStyleUpdateSize() const;
ExceptionOr<void> startTrackingCompositingUpdates();
ExceptionOr<unsigned> compositingUpdateCount();
ExceptionOr<void> updateLayoutIgnorePendingStylesheetsAndRunPostLayoutTasks(Node*);
unsigned layoutCount() const;
Ref<ArrayBuffer> serializeObject(const RefPtr<SerializedScriptValue>&) const;
Ref<SerializedScriptValue> deserializeBuffer(ArrayBuffer&) const;
bool isFromCurrentWorld(JSC::JSValue) const;
void setUsesOverlayScrollbars(bool);
void setUsesMockScrollAnimator(bool);
ExceptionOr<String> getCurrentCursorInfo();
String markerTextForListItem(Element&);
String toolTipFromElement(Element&) const;
void forceReload(bool endToEnd);
void reloadExpiredOnly();
void enableAutoSizeMode(bool enabled, int minimumWidth, int minimumHeight, int maximumWidth, int maximumHeight);
#if ENABLE(LEGACY_ENCRYPTED_MEDIA)
void initializeMockCDM();
#endif
#if ENABLE(ENCRYPTED_MEDIA)
Ref<MockCDMFactory> registerMockCDM();
#endif
#if ENABLE(SPEECH_SYNTHESIS)
void enableMockSpeechSynthesizer();
#endif
#if ENABLE(MEDIA_STREAM)
void setMockMediaCaptureDevicesEnabled(bool);
#endif
#if ENABLE(WEB_RTC)
#if USE(OPENWEBRTC)
void enableMockMediaEndpoint();
#endif
void emulateRTCPeerConnectionPlatformEvent(RTCPeerConnection&, const String& action);
void useMockRTCPeerConnectionFactory(const String&);
void setICECandidateFiltering(bool);
void setEnumeratingAllNetworkInterfacesEnabled(bool);
void stopPeerConnection(RTCPeerConnection&);
void applyRotationForOutgoingVideoSources(RTCPeerConnection&);
#endif
String getImageSourceURL(Element&);
#if ENABLE(VIDEO)
Vector<String> mediaResponseSources(HTMLMediaElement&);
Vector<String> mediaResponseContentRanges(HTMLMediaElement&);
void simulateAudioInterruption(HTMLMediaElement&);
ExceptionOr<bool> mediaElementHasCharacteristic(HTMLMediaElement&, const String&);
#endif
bool isSelectPopupVisible(HTMLSelectElement&);
ExceptionOr<String> captionsStyleSheetOverride();
ExceptionOr<void> setCaptionsStyleSheetOverride(const String&);
ExceptionOr<void> setPrimaryAudioTrackLanguageOverride(const String&);
ExceptionOr<void> setCaptionDisplayMode(const String&);
#if ENABLE(VIDEO)
Ref<TimeRanges> createTimeRanges(Float32Array& startTimes, Float32Array& endTimes);
double closestTimeToTimeRanges(double time, TimeRanges&);
#endif
ExceptionOr<Ref<DOMRect>> selectionBounds();
ExceptionOr<bool> isPluginUnavailabilityIndicatorObscured(Element&);
bool isPluginSnapshotted(Element&);
#if ENABLE(MEDIA_SOURCE)
WEBCORE_TESTSUPPORT_EXPORT void initializeMockMediaSource();
Vector<String> bufferedSamplesForTrackID(SourceBuffer&, const AtomicString&);
Vector<String> enqueuedSamplesForTrackID(SourceBuffer&, const AtomicString&);
void setShouldGenerateTimestamps(SourceBuffer&, bool);
#endif
#if ENABLE(VIDEO)
ExceptionOr<void> beginMediaSessionInterruption(const String&);
void endMediaSessionInterruption(const String&);
void applicationWillBecomeInactive();
void applicationDidBecomeActive();
void applicationWillEnterForeground(bool suspendedUnderLock) const;
void applicationDidEnterBackground(bool suspendedUnderLock) const;
ExceptionOr<void> setMediaSessionRestrictions(const String& mediaType, StringView restrictionsString);
ExceptionOr<String> mediaSessionRestrictions(const String& mediaType) const;
void setMediaElementRestrictions(HTMLMediaElement&, StringView restrictionsString);
ExceptionOr<void> postRemoteControlCommand(const String&, float argument);
bool elementIsBlockingDisplaySleep(HTMLMediaElement&) const;
#endif
#if ENABLE(MEDIA_SESSION)
void sendMediaSessionStartOfInterruptionNotification(MediaSessionInterruptingCategory);
void sendMediaSessionEndOfInterruptionNotification(MediaSessionInterruptingCategory);
String mediaSessionCurrentState(MediaSession&) const;
double mediaElementPlayerVolume(HTMLMediaElement&) const;
enum class MediaControlEvent { PlayPause, NextTrack, PreviousTrack };
void sendMediaControlEvent(MediaControlEvent);
#endif
#if ENABLE(WIRELESS_PLAYBACK_TARGET)
void setMockMediaPlaybackTargetPickerEnabled(bool);
ExceptionOr<void> setMockMediaPlaybackTargetPickerState(const String& deviceName, const String& deviceState);
#endif
#if ENABLE(WEB_AUDIO)
void setAudioContextRestrictions(AudioContext&, StringView restrictionsString);
#endif
void simulateSystemSleep() const;
void simulateSystemWake() const;
enum class PageOverlayType { View, Document };
ExceptionOr<Ref<MockPageOverlay>> installMockPageOverlay(PageOverlayType);
ExceptionOr<String> pageOverlayLayerTreeAsText(unsigned short flags) const;
void setPageMuted(StringView);
String pageMediaState();
void setPageDefersLoading(bool);
RefPtr<File> createFile(const String&);
void queueMicroTask(int);
bool testPreloaderSettingViewport();
#if ENABLE(CONTENT_FILTERING)
MockContentFilterSettings& mockContentFilterSettings();
#endif
#if ENABLE(CSS_SCROLL_SNAP)
ExceptionOr<String> scrollSnapOffsets(Element&);
void setPlatformMomentumScrollingPredictionEnabled(bool);
#endif
ExceptionOr<String> pathStringWithShrinkWrappedRects(const Vector<double>& rectComponents, double radius);
String getCurrentMediaControlsStatusForElement(HTMLMediaElement&);
String userVisibleString(const DOMURL&);
void setShowAllPlugins(bool);
String resourceLoadStatisticsForOrigin(const String& origin);
void setResourceLoadStatisticsEnabled(bool);
#if ENABLE(STREAMS_API)
bool isReadableStreamDisturbed(JSC::ExecState&, JSC::JSValue);
JSC::JSValue cloneArrayBuffer(JSC::ExecState&, JSC::JSValue, JSC::JSValue, JSC::JSValue);
#endif
String composedTreeAsText(Node&);
bool isProcessingUserGesture();
double lastHandledUserGestureTimestamp();
RefPtr<GCObservation> observeGC(JSC::JSValue);
enum class UserInterfaceLayoutDirection { LTR, RTL };
void setUserInterfaceLayoutDirection(UserInterfaceLayoutDirection);
bool userPrefersReducedMotion() const;
void reportBacktrace();
enum class BaseWritingDirection { Natural, Ltr, Rtl };
void setBaseWritingDirection(BaseWritingDirection);
#if ENABLE(POINTER_LOCK)
bool pageHasPendingPointerLock() const;
bool pageHasPointerLock() const;
#endif
Vector<String> accessKeyModifiers() const;
void setQuickLookPassword(const String&);
void setAsRunningUserScripts(Document&);
#if ENABLE(WEBGL)
void simulateWebGLContextChanged(WebGLRenderingContext&);
void failNextGPUStatusCheck(WebGLRenderingContext&);
#endif
void setPageVisibility(bool isVisible);
#if ENABLE(WEB_RTC)
void setH264HardwareEncoderAllowed(bool allowed);
#endif
#if ENABLE(MEDIA_STREAM)
void setCameraMediaStreamTrackOrientation(MediaStreamTrack&, int orientation);
ExceptionOr<void> setMediaDeviceState(const String& id, const String& property, bool value);
unsigned long trackAudioSampleCount() const { return m_trackAudioSampleCount; }
unsigned long trackVideoSampleCount() const { return m_trackVideoSampleCount; }
void observeMediaStreamTrack(MediaStreamTrack&);
using TrackFramePromise = DOMPromiseDeferred<IDLInterface<ImageData>>;
void grabNextMediaStreamTrackFrame(TrackFramePromise&&);
void delayMediaStreamTrackSamples(MediaStreamTrack&, float);
void setMediaStreamTrackMuted(MediaStreamTrack&, bool);
void removeMediaStreamTrack(MediaStream&, MediaStreamTrack&);
void simulateMediaStreamTrackCaptureSourceFailure(MediaStreamTrack&);
#endif
String audioSessionCategory() const;
private:
explicit Internals(Document&);
Document* contextDocument() const;
Frame* frame() const;
ExceptionOr<RenderedDocumentMarker*> markerAt(Node&, const String& markerType, unsigned index);
// RealtimeMediaSource::Observer API
#if ENABLE(MEDIA_STREAM)
void videoSampleAvailable(MediaSample&) final;
void audioSamplesAvailable(const MediaTime&, const PlatformAudioData&, const AudioStreamDescription&, size_t) final { m_trackAudioSampleCount++; }
OrientationNotifier m_orientationNotifier;
unsigned long m_trackVideoSampleCount { 0 };
unsigned long m_trackAudioSampleCount { 0 };
RefPtr<MediaStreamTrack> m_track;
std::optional<TrackFramePromise> m_nextTrackFramePromise;
#endif
std::unique_ptr<InspectorStubFrontend> m_inspectorFrontend;
};
} // namespace WebCore
|