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
|
/*
* Copyright (C) 2006 Eric Seidel (eric@webkit.org)
* Copyright (C) 2008-2023 Apple Inc. All rights reserved.
* Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
* Copyright (C) 2012 Samsung Electronics. 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 INC. ``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 INC. OR
* 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 "ChromeClient.h"
#include "CryptoClient.h"
#include <wtf/TZoneMalloc.h>
#include <wtf/UniqueRef.h>
// Empty client classes for use by WebCore.
//
// First created for SVGImage as it had no way to access the current Page (nor should it, since Images are not tied to a page).
// See http://bugs.webkit.org/show_bug.cgi?id=5971 for the original discussion about this file.
namespace WebCore {
class DiagnosticLoggingClient;
class EditorClient;
class HTMLImageElement;
class PageConfiguration;
class EmptyChromeClient : public ChromeClient {
WTF_MAKE_TZONE_ALLOCATED(EmptyChromeClient);
void chromeDestroyed() override { }
void setWindowRect(const FloatRect&) final { }
FloatRect windowRect() const final { return FloatRect(); }
FloatRect pageRect() const final { return FloatRect(); }
void focus() final { }
void unfocus() final { }
bool canTakeFocus(FocusDirection) const final { return false; }
void takeFocus(FocusDirection) final { }
void focusedElementChanged(Element*) final { }
void focusedFrameChanged(Frame*) final { }
RefPtr<Page> createWindow(LocalFrame&, const String&, const WindowFeatures&, const NavigationAction&) final { return nullptr; }
void show() final { }
bool canRunModal() const final { return false; }
void runModal() final { }
void setToolbarsVisible(bool) final { }
bool toolbarsVisible() const final { return false; }
void setStatusbarVisible(bool) final { }
bool statusbarVisible() const final { return false; }
void setScrollbarsVisible(bool) final { }
bool scrollbarsVisible() const final { return false; }
void setMenubarVisible(bool) final { }
bool menubarVisible() const final { return false; }
void setResizable(bool) final { }
void addMessageToConsole(MessageSource, MessageLevel, const String&, unsigned, unsigned, const String&) final { }
void addMessageWithArgumentsToConsole(MessageSource, MessageLevel, const String&, std::span<const String>, unsigned, unsigned, const String&) final { }
bool canRunBeforeUnloadConfirmPanel() final { return false; }
bool runBeforeUnloadConfirmPanel(const String&, LocalFrame&) final { return true; }
void closeWindow() final { }
void rootFrameAdded(const LocalFrame&) final { }
void rootFrameRemoved(const LocalFrame&) final { }
void runJavaScriptAlert(LocalFrame&, const String&) final { }
bool runJavaScriptConfirm(LocalFrame&, const String&) final { return false; }
bool runJavaScriptPrompt(LocalFrame&, const String&, const String&, String&) final { return false; }
bool selectItemWritingDirectionIsNatural() final { return false; }
bool selectItemAlignmentFollowsMenuWritingDirection() final { return false; }
RefPtr<PopupMenu> createPopupMenu(PopupMenuClient&) const final;
RefPtr<SearchPopupMenu> createSearchPopupMenu(PopupMenuClient&) const final;
KeyboardUIMode keyboardUIMode() final { return KeyboardAccessDefault; }
bool hoverSupportedByPrimaryPointingDevice() const final { return false; };
bool hoverSupportedByAnyAvailablePointingDevice() const final { return false; }
std::optional<PointerCharacteristics> pointerCharacteristicsOfPrimaryPointingDevice() const final { return std::nullopt; };
OptionSet<PointerCharacteristics> pointerCharacteristicsOfAllAvailablePointingDevices() const final { return { }; }
void invalidateRootView(const IntRect&) final { }
void invalidateContentsAndRootView(const IntRect&) override { }
void invalidateContentsForSlowScroll(const IntRect&) final { }
void scroll(const IntSize&, const IntRect&, const IntRect&) final { }
IntPoint screenToRootView(const IntPoint& p) const final { return p; }
IntPoint rootViewToScreen(const IntPoint& p) const final { return p; }
IntRect rootViewToScreen(const IntRect& r) const final { return r; }
IntPoint accessibilityScreenToRootView(const IntPoint& p) const final { return p; };
IntRect rootViewToAccessibilityScreen(const IntRect& r) const final { return r; };
#if PLATFORM(IOS_FAMILY)
void relayAccessibilityNotification(const String&, const RetainPtr<NSData>&) const final { };
#endif
void didFinishLoadingImageForElement(HTMLImageElement&) final { }
PlatformPageClient platformPageClient() const final { return 0; }
void contentsSizeChanged(LocalFrame&, const IntSize&) const final { }
void intrinsicContentsSizeChanged(const IntSize&) const final { }
void mouseDidMoveOverElement(const HitTestResult&, OptionSet<PlatformEventModifier>, const String&, TextDirection) final { }
void print(LocalFrame&, const StringWithDirection&) final { }
void exceededDatabaseQuota(LocalFrame&, const String&, DatabaseDetails) final { }
void reachedMaxAppCacheSize(int64_t) final { }
void reachedApplicationCacheOriginQuota(SecurityOrigin&, int64_t) final { }
RefPtr<ColorChooser> createColorChooser(ColorChooserClient&, const Color&) final;
RefPtr<DataListSuggestionPicker> createDataListSuggestionPicker(DataListSuggestionsClient&) final;
bool canShowDataListSuggestionLabels() const final { return false; }
RefPtr<DateTimeChooser> createDateTimeChooser(DateTimeChooserClient&) final;
void setTextIndicator(const TextIndicatorData&) const final;
DisplayRefreshMonitorFactory* displayRefreshMonitorFactory() const final;
void runOpenPanel(LocalFrame&, FileChooser&) final;
void showShareSheet(ShareDataWithParsedURL&, CompletionHandler<void(bool)>&&) final;
void loadIconForFiles(const Vector<String>&, FileIconLoader&) final { }
void elementDidFocus(Element&, const FocusOptions&) final { }
void elementDidBlur(Element&) final { }
void setCursor(const Cursor&) final { }
void setCursorHiddenUntilMouseMoves(bool) final { }
void scrollContainingScrollViewsToRevealRect(const IntRect&) const final { }
void scrollMainFrameToRevealRect(const IntRect&) const final { }
void attachRootGraphicsLayer(LocalFrame&, GraphicsLayer*) final { }
void attachViewOverlayGraphicsLayer(GraphicsLayer*) final { }
void setNeedsOneShotDrawingSynchronization() final { }
void triggerRenderingUpdate() final { }
#if PLATFORM(WIN)
void AXStartFrameLoad() final { }
void AXFinishFrameLoad() final { }
#endif
#if PLATFORM(PLAYSTATION)
void postAccessibilityNotification(AccessibilityObject&, AXNotification) final { }
void postAccessibilityNodeTextChangeNotification(AccessibilityObject*, AXTextChange, unsigned, const String&) final { }
void postAccessibilityFrameLoadingEventNotification(AccessibilityObject*, AXLoadingEvent) final { }
#endif
#if ENABLE(IOS_TOUCH_EVENTS)
void didPreventDefaultForEvent() final { }
#endif
#if PLATFORM(IOS_FAMILY)
void didReceiveMobileDocType(bool) final { }
void setNeedsScrollNotifications(LocalFrame&, bool) final { }
void didFinishContentChangeObserving(LocalFrame&, WKContentChange) final { }
void notifyRevealedSelectionByScrollingFrame(LocalFrame&) final { }
void didLayout(LayoutType) final { }
void didStartOverflowScroll() final { }
void didEndOverflowScroll() final { }
void suppressFormNotifications() final { }
void restoreFormNotifications() final { }
void addOrUpdateScrollingLayer(Node*, PlatformLayer*, PlatformLayer*, const IntSize&, bool, bool) final { }
void removeScrollingLayer(Node*, PlatformLayer*, PlatformLayer*) final { }
void webAppOrientationsUpdated() final { }
void showPlaybackTargetPicker(bool, RouteSharingPolicy, const String&) final { }
bool showDataDetectorsUIForElement(const Element&, const Event&) final { return false; }
#endif // PLATFORM(IOS_FAMILY)
#if ENABLE(ORIENTATION_EVENTS)
IntDegrees deviceOrientation() const final { return 0; }
#endif
#if PLATFORM(IOS_FAMILY)
bool isStopping() final { return false; }
#endif
void wheelEventHandlersChanged(bool) final { }
bool isEmptyChromeClient() const final { return true; }
void didAssociateFormControls(const Vector<RefPtr<Element>>&, LocalFrame&) final { }
bool shouldNotifyOnFormChanges() final { return false; }
RefPtr<Icon> createIconForFiles(const Vector<String>& /* filenames */) final;
void requestCookieConsent(CompletionHandler<void(CookieConsentDecisionResult)>&&) final;
};
DiagnosticLoggingClient& emptyDiagnosticLoggingClient();
WEBCORE_EXPORT PageConfiguration pageConfigurationWithEmptyClients(std::optional<PageIdentifier>, PAL::SessionID);
class EmptyCryptoClient: public CryptoClient {
WTF_MAKE_TZONE_ALLOCATED(EmptyCryptoClient);
public:
EmptyCryptoClient() = default;
~EmptyCryptoClient() = default;
};
}
|