/* * Copyright (C) 2012 Google Inc. All rights reserved. * Copyright (C) 2013-2016 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 // FIXME (121927): This include should not be needed. #include #include "EditingBehaviorTypes.h" #include "ExceptionOr.h" #include "FontGenericFamilies.h" #include "IntSize.h" #include "InternalSettingsGenerated.h" #include "SecurityOrigin.h" #include "Settings.h" #include "WritingMode.h" namespace WebCore { class Page; class Settings; class InternalSettings : public InternalSettingsGenerated { public: static Ref create(Page*); static InternalSettings* from(Page*); void hostDestroyed(); void resetToConsistentState(); ExceptionOr setUsesOverlayScrollbars(bool); ExceptionOr setTouchEventEmulationEnabled(bool); ExceptionOr setStandardFontFamily(const String& family, const String& script); ExceptionOr setSerifFontFamily(const String& family, const String& script); ExceptionOr setSansSerifFontFamily(const String& family, const String& script); ExceptionOr setFixedFontFamily(const String& family, const String& script); ExceptionOr setCursiveFontFamily(const String& family, const String& script); ExceptionOr setFantasyFontFamily(const String& family, const String& script); ExceptionOr setPictographFontFamily(const String& family, const String& script); ExceptionOr setTextAutosizingEnabled(bool); ExceptionOr setTextAutosizingWindowSizeOverride(int width, int height); ExceptionOr setTextAutosizingFontScaleFactor(float); ExceptionOr setMediaTypeOverride(const String&); ExceptionOr setCanStartMedia(bool); ExceptionOr setAllowsAirPlayForMediaPlayback(bool); ExceptionOr setMediaCaptureRequiresSecureConnection(bool); ExceptionOr setEditingBehavior(const String&); ExceptionOr setPreferMIMETypeForImages(bool); ExceptionOr setPDFImageCachingPolicy(const String&); ExceptionOr setShouldDisplayTrackKind(const String& kind, bool enabled); ExceptionOr shouldDisplayTrackKind(const String& kind); ExceptionOr setStorageBlockingPolicy(const String&); ExceptionOr setImagesEnabled(bool); ExceptionOr setMinimumTimerInterval(double intervalInSeconds); ExceptionOr setDefaultVideoPosterURL(const String&); ExceptionOr setForcePendingWebGLPolicy(bool); ExceptionOr setTimeWithoutMouseMovementBeforeHidingControls(double); ExceptionOr setUseLegacyBackgroundSizeShorthandBehavior(bool); ExceptionOr setAutoscrollForDragAndDropEnabled(bool); ExceptionOr setFontFallbackPrefersPictographs(bool); ExceptionOr setWebFontsAlwaysFallBack(bool); ExceptionOr setQuickTimePluginReplacementEnabled(bool); ExceptionOr setYouTubeFlashPluginReplacementEnabled(bool); ExceptionOr setBackgroundShouldExtendBeyondPage(bool); ExceptionOr setShouldConvertPositionStyleOnCopy(bool); ExceptionOr setScrollingTreeIncludesFrames(bool); ExceptionOr setAllowUnclampedScrollPosition(bool); ExceptionOr setAllowsInlineMediaPlayback(bool); ExceptionOr setAllowsInlineMediaPlaybackAfterFullscreen(bool); ExceptionOr setInlineMediaPlaybackRequiresPlaysInlineAttribute(bool); ExceptionOr userInterfaceDirectionPolicy(); ExceptionOr setUserInterfaceDirectionPolicy(const String&); ExceptionOr systemLayoutDirection(); ExceptionOr setSystemLayoutDirection(const String&); static void setAllowsAnySSLCertificate(bool); ExceptionOr deferredCSSParserEnabled(); ExceptionOr setDeferredCSSParserEnabled(bool); enum class ForcedAccessibilityValue { System, On, Off }; ForcedAccessibilityValue forcedColorsAreInvertedAccessibilityValue() const; void setForcedColorsAreInvertedAccessibilityValue(ForcedAccessibilityValue); ForcedAccessibilityValue forcedDisplayIsMonochromeAccessibilityValue() const; void setForcedDisplayIsMonochromeAccessibilityValue(ForcedAccessibilityValue); ForcedAccessibilityValue forcedPrefersReducedMotionAccessibilityValue() const; void setForcedPrefersReducedMotionAccessibilityValue(ForcedAccessibilityValue); // RuntimeEnabledFeatures. static void setIndexedDBWorkersEnabled(bool); static void setCSSGridLayoutEnabled(bool); static void setWebGL2Enabled(bool); private: explicit InternalSettings(Page*); Settings& settings() const; static const char* supplementName(); class Backup { public: explicit Backup(Settings&); void restoreTo(Settings&); EditingBehaviorType m_originalEditingBehavior; // Initially empty, only used if changed by a test. ScriptFontFamilyMap m_standardFontFamilies; ScriptFontFamilyMap m_fixedFontFamilies; ScriptFontFamilyMap m_serifFontFamilies; ScriptFontFamilyMap m_sansSerifFontFamilies; ScriptFontFamilyMap m_cursiveFontFamilies; ScriptFontFamilyMap m_fantasyFontFamilies; ScriptFontFamilyMap m_pictographFontFamilies; #if ENABLE(TEXT_AUTOSIZING) bool m_originalTextAutosizingEnabled; IntSize m_originalTextAutosizingWindowSizeOverride; #endif String m_originalMediaTypeOverride; bool m_originalCanvasUsesAcceleratedDrawing; bool m_originalMockScrollbarsEnabled; bool m_originalUsesOverlayScrollbars; bool m_imagesEnabled; bool m_preferMIMETypeForImages; std::chrono::milliseconds m_minimumTimerInterval; #if ENABLE(VIDEO_TRACK) bool m_shouldDisplaySubtitles; bool m_shouldDisplayCaptions; bool m_shouldDisplayTextDescriptions; #endif String m_defaultVideoPosterURL; bool m_forcePendingWebGLPolicy; bool m_originalTimeWithoutMouseMovementBeforeHidingControls; bool m_useLegacyBackgroundSizeShorthandBehavior; bool m_autoscrollForDragAndDropEnabled; bool m_quickTimePluginReplacementEnabled; bool m_youTubeFlashPluginReplacementEnabled; bool m_shouldConvertPositionStyleOnCopy; bool m_fontFallbackPrefersPictographs; bool m_webFontsAlwaysFallBack; bool m_backgroundShouldExtendBeyondPage; SecurityOrigin::StorageBlockingPolicy m_storageBlockingPolicy; bool m_scrollingTreeIncludesFrames; #if ENABLE(TOUCH_EVENTS) bool m_touchEventEmulationEnabled; #endif #if ENABLE(WIRELESS_PLAYBACK_TARGET) bool m_allowsAirPlayForMediaPlayback; #endif bool m_allowsInlineMediaPlayback; bool m_allowsInlineMediaPlaybackAfterFullscreen; bool m_inlineMediaPlaybackRequiresPlaysInlineAttribute; bool m_deferredCSSParserEnabled; bool m_inputEventsEnabled; UserInterfaceDirectionPolicy m_userInterfaceDirectionPolicy; TextDirection m_systemLayoutDirection; PDFImageCachingPolicy m_pdfImageCachingPolicy; Settings::ForcedAccessibilityValue m_forcedColorsAreInvertedAccessibilityValue; Settings::ForcedAccessibilityValue m_forcedDisplayIsMonochromeAccessibilityValue; Settings::ForcedAccessibilityValue m_forcedPrefersReducedMotionAccessibilityValue; // Runtime enabled settings. bool m_indexedDBWorkersEnabled; bool m_cssGridLayoutEnabled; bool m_webGL2Enabled; }; Page* m_page; Backup m_backup; }; } // namespace WebCore