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 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126
|
/*
* Copyright (C) 2022-2024 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 INC. 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 INC. 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
#if ENABLE(WK_WEB_EXTENSIONS)
#include "APIHTTPCookieStore.h"
#include "APIObject.h"
#include "APIUserScript.h"
#include "APIUserStyleSheet.h"
#include "MessageReceiver.h"
#include "WebExtension.h"
#include "WebExtensionAction.h"
#include "WebExtensionAlarm.h"
#include "WebExtensionCommand.h"
#include "WebExtensionContextIdentifier.h"
#include "WebExtensionController.h"
#include "WebExtensionDataType.h"
#include "WebExtensionDynamicScripts.h"
#include "WebExtensionEventListenerType.h"
#include "WebExtensionFrameIdentifier.h"
#include "WebExtensionFrameParameters.h"
#include "WebExtensionLocalization.h"
#include "WebExtensionMatchPattern.h"
#include "WebExtensionMatchedRuleParameters.h"
#include "WebExtensionMenuItem.h"
#include "WebExtensionMessagePort.h"
#include "WebExtensionPortChannelIdentifier.h"
#include "WebExtensionStorageSQLiteStore.h"
#include "WebExtensionTab.h"
#include "WebExtensionTabIdentifier.h"
#include "WebExtensionUtilities.h"
#include "WebExtensionWindow.h"
#include "WebExtensionWindowIdentifier.h"
#include "WebExtensionWindowParameters.h"
#include "WebFrameProxy.h"
#include "WebPageProxyIdentifier.h"
#include "WebProcessProxy.h"
#include <WebCore/ContentRuleListResults.h>
#include <wtf/CompletionHandler.h>
#include <wtf/Deque.h>
#include <wtf/Forward.h>
#include <wtf/HashCountedSet.h>
#include <wtf/HashMap.h>
#include <wtf/HashSet.h>
#include <wtf/Identified.h>
#include <wtf/ListHashSet.h>
#include <wtf/RefPtr.h>
#include <wtf/RetainPtr.h>
#include <wtf/RunLoop.h>
#include <wtf/URLHash.h>
#include <wtf/UUID.h>
#include <wtf/WeakHashCountedSet.h>
#include <wtf/WeakHashMap.h>
#include <wtf/WeakPtr.h>
#if ENABLE(INSPECTOR_EXTENSIONS)
#include "APIInspectorExtension.h"
#include "APIInspectorExtensionClient.h"
#include "InspectorExtensionTypes.h"
#include "WebInspectorUIProxy.h"
#endif
#if ENABLE(WK_WEB_EXTENSIONS_SIDEBAR)
#include "WebExtensionActionClickBehavior.h"
#include "WebExtensionSidebar.h"
#include "WebExtensionSidebarParameters.h"
#endif
OBJC_CLASS NSArray;
OBJC_CLASS NSDate;
OBJC_CLASS NSDictionary;
OBJC_CLASS NSMapTable;
OBJC_CLASS NSMutableArray;
OBJC_CLASS NSMutableDictionary;
OBJC_CLASS NSNumber;
OBJC_CLASS NSString;
OBJC_CLASS NSURL;
OBJC_CLASS NSUUID;
OBJC_CLASS WKContentRuleListStore;
OBJC_CLASS WKNavigation;
OBJC_CLASS WKNavigationAction;
OBJC_CLASS WKWebExtensionContext;
OBJC_CLASS WKWebView;
OBJC_CLASS WKWebViewConfiguration;
OBJC_CLASS _WKWebExtensionContextDelegate;
OBJC_CLASS _WKWebExtensionDeclarativeNetRequestSQLiteStore;
OBJC_CLASS _WKWebExtensionRegisteredScriptsSQLiteStore;
OBJC_PROTOCOL(WKWebExtensionTab);
OBJC_PROTOCOL(WKWebExtensionWindow);
#if PLATFORM(MAC)
OBJC_CLASS NSEvent;
OBJC_CLASS NSMenu;
OBJC_CLASS WKOpenPanelParameters;
#endif
namespace PAL {
class SessionID;
}
namespace WebKit {
class ContextMenuContextData;
class ProcessThrottlerActivity;
class WebExtension;
class WebUserContentControllerProxy;
struct WebExtensionContextParameters;
struct WebExtensionCookieFilterParameters;
struct WebExtensionCookieParameters;
struct WebExtensionCookieStoreParameters;
struct WebExtensionMenuItemContextParameters;
struct WebExtensionMessageTargetParameters;
enum class WebExtensionContextInstallReason : uint8_t {
None,
ExtensionInstall,
ExtensionUpdate,
BrowserUpdate,
};
class WebExtensionContext : public API::ObjectImpl<API::Object::Type::WebExtensionContext>, public IPC::MessageReceiver, public Identified<WebExtensionContextIdentifier> {
WTF_MAKE_NONCOPYABLE(WebExtensionContext);
public:
template<typename... Args>
static Ref<WebExtensionContext> create(Args&&... args)
{
return adoptRef(*new WebExtensionContext(std::forward<Args>(args)...));
}
void ref() const final { API::ObjectImpl<API::Object::Type::WebExtensionContext>::ref(); }
void deref() const final { API::ObjectImpl<API::Object::Type::WebExtensionContext>::deref(); }
static String plistFileName() { return "State.plist"_s; };
static NSMutableDictionary *readStateFromPath(const String&);
static bool readLastBaseURLFromState(const String& filePath, URL& outLastBaseURL);
static bool readDisplayNameFromState(const String& filePath, String& outDisplayName);
static bool isURLForAnyExtension(const URL&);
static WebExtensionContext* get(WebExtensionContextIdentifier);
explicit WebExtensionContext(Ref<WebExtension>&&);
using PermissionsMap = HashMap<String, WallTime>;
using PermissionMatchPatternsMap = HashMap<Ref<WebExtensionMatchPattern>, WallTime>;
using UserScriptVector = Vector<Ref<API::UserScript>>;
using UserStyleSheetVector = Vector<Ref<API::UserStyleSheet>>;
using AlarmInfoMap = HashMap<String, double>;
using DynamicInjectedContentsMap = HashMap<String, WebExtension::InjectedContentData>;
using PermissionsSet = WebExtension::PermissionsSet;
using MatchPatternSet = WebExtension::MatchPatternSet;
using InjectedContentData = WebExtension::InjectedContentData;
using InjectedContentVector = WebExtension::InjectedContentVector;
using URLSet = HashSet<URL>;
using URLVector = Vector<URL>;
using WeakFrameCountedSet = WeakHashCountedSet<WebFrameProxy>;
using EventListenerTypeCountedSet = HashCountedSet<WebExtensionEventListenerType>;
using EventListenerTypeFrameMap = HashMap<WebExtensionEventListenerTypeWorldPair, WeakFrameCountedSet>;
using EventListenerTypeSet = HashSet<WebExtensionEventListenerType>;
using ContentWorldTypeSet = HashSet<WebExtensionContentWorldType>;
using VoidFunctionVector = Vector<Function<void()>>;
using WindowIdentifierMap = HashMap<WebExtensionWindowIdentifier, Ref<WebExtensionWindow>>;
using WindowIdentifierVector = Vector<WebExtensionWindowIdentifier>;
using TabIdentifierMap = HashMap<WebExtensionTabIdentifier, Ref<WebExtensionTab>>;
using PageTabIdentifierMap = WeakHashMap<WebPageProxy, WebExtensionTabIdentifier>;
using PopupPageActionMap = WeakHashMap<WebPageProxy, Ref<WebExtensionAction>>;
using WindowVector = Vector<Ref<WebExtensionWindow>>;
using TabVector = Vector<Ref<WebExtensionTab>>;
using TabSet = HashSet<Ref<WebExtensionTab>>;
using PopulateTabs = WebExtensionWindow::PopulateTabs;
using WindowTypeFilter = WebExtensionWindow::TypeFilter;
using WebProcessProxySet = HashSet<Ref<WebProcessProxy>>;
using PortWorldTuple = std::tuple<WebExtensionContentWorldType, WebExtensionContentWorldType, WebExtensionPortChannelIdentifier>;
using PortWorldPair = std::pair<WebExtensionContentWorldType, WebExtensionPortChannelIdentifier>;
using MessagePageProxyIdentifierPair = std::pair<String, std::optional<WebPageProxyIdentifier>>;
using PortCountedSet = HashCountedSet<PortWorldPair>;
using PortTupleCountedSet = HashCountedSet<PortWorldTuple>;
using PageProxyIdentifierPortMap = HashMap<WebPageProxyIdentifier, PortTupleCountedSet>;
using PortQueuedMessageMap = HashMap<PortWorldPair, Vector<MessagePageProxyIdentifierPair>>;
using NativePortMap = HashMap<WebExtensionPortChannelIdentifier, Ref<WebExtensionMessagePort>>;
using PageIdentifierTuple = std::tuple<WebCore::PageIdentifier, std::optional<WebExtensionTabIdentifier>, std::optional<WebExtensionWindowIdentifier>>;
using CommandsVector = Vector<Ref<WebExtensionCommand>>;
using MenuItemVector = Vector<Ref<WebExtensionMenuItem>>;
using MenuItemMap = HashMap<String, Ref<WebExtensionMenuItem>>;
using DeclarativeNetRequestValidatedRulesets = Expected<WebExtension::DeclarativeNetRequestRulesetVector, WebExtensionError>;
using DeclarativeNetRequestMatchedRuleVector = Vector<WebExtensionMatchedRuleParameters>;
using UserContentControllerProxySet = WeakHashSet<WebUserContentControllerProxy>;
#if ENABLE(INSPECTOR_EXTENSIONS)
using InspectorTabVector = Vector<std::pair<Ref<WebInspectorUIProxy>, RefPtr<WebExtensionTab>>>;
#endif
using ReloadFromOrigin = WebExtensionTab::ReloadFromOrigin;
enum class EqualityOnly : bool { No, Yes };
enum class WindowIsClosing : bool { No, Yes };
enum class UserTriggered : bool { No, Yes };
enum class SuppressEvents : bool { No, Yes };
enum class UpdateWindowOrder : bool { No, Yes };
enum class IgnoreExtensionAccess : bool { No, Yes };
enum class IncludeExtensionViews : bool { No, Yes };
enum class GrantOnCompletion : bool { No, Yes };
enum class Error : uint8_t {
Unknown = 1,
AlreadyLoaded,
NotLoaded,
BaseURLAlreadyInUse,
NoBackgroundContent,
BackgroundContentFailedToLoad,
};
enum class PermissionState : int8_t {
DeniedExplicitly = -3,
DeniedImplicitly = -2,
RequestedImplicitly = -1,
Unknown = 0,
RequestedExplicitly = 1,
GrantedImplicitly = 2,
GrantedExplicitly = 3,
};
enum class PermissionStateOptions : uint8_t {
RequestedWithTabsPermission = 1 << 0, // Request access to a URL if the extension also has the "tabs" permission.
SkipRequestedPermissions = 1 << 1, // Don't check requested permissions.
IncludeOptionalPermissions = 1 << 2, // Check the optional permissions, and count them as RequestedImplicitly.
};
using InstallReason = WebExtensionContextInstallReason;
enum class WebViewPurpose : uint8_t {
Any,
Background,
Inspector,
Popup,
Sidebar,
Tab,
};
#if ENABLE(INSPECTOR_EXTENSIONS)
struct InspectorContext {
std::optional<WebExtensionTabIdentifier> tabIdentifier;
RefPtr<API::InspectorExtension> extension;
RetainPtr<WKWebView> backgroundWebView;
RefPtr<ProcessThrottlerActivity> activity;
};
#endif
WebExtensionContextParameters parameters() const;
bool operator==(const WebExtensionContext& other) const { return (this == &other); }
#if PLATFORM(COCOA)
NSError *createError(Error, NSString *customLocalizedDescription = nil, NSError *underlyingError = nil);
void recordErrorIfNeeded(NSError *error) { if (error) recordError(error); }
void recordError(NSError *);
void clearError(Error);
NSArray *errors();
#endif
bool storageIsPersistent() const { return !m_storageDirectory.isEmpty(); }
const String& storageDirectory() const { return m_storageDirectory; }
void invalidateStorage();
Ref<WebExtensionStorageSQLiteStore> storageForType(WebExtensionDataType);
bool load(WebExtensionController&, String storageDirectory, NSError ** = nullptr);
bool unload(NSError ** = nullptr);
bool reload(NSError ** = nullptr);
bool isLoaded() const { return !!m_extensionController; }
WebExtension& extension() const { return *m_extension; }
Ref<WebExtension> protectedExtension() const { return extension(); }
WebExtensionController* extensionController() const { return m_extensionController.get(); }
RefPtr<WebExtensionController> protectedExtensionController() const { return m_extensionController.get(); }
const URL& baseURL() const { return m_baseURL; }
void setBaseURL(URL&&);
bool isURLForThisExtension(const URL&) const;
bool hasCustomUniqueIdentifier() const { return m_customUniqueIdentifier; }
const String& uniqueIdentifier() const { return m_uniqueIdentifier; }
void setUniqueIdentifier(String&&);
RefPtr<WebExtensionLocalization> localization();
RefPtr<API::Data> localizedResourceData(const RefPtr<API::Data>&, const String& mimeType);
String localizedResourceString(const String&, const String& mimeType);
bool isInspectable() const { return m_inspectable; }
void setInspectable(bool);
HashSet<String> unsupportedAPIs() const { return m_unsupportedAPIs; }
void setUnsupportedAPIs(HashSet<String>&&);
InjectedContentVector injectedContents() const;
bool hasInjectedContentForURL(const URL&);
bool hasInjectedContent();
bool hasContentModificationRules();
URL optionsPageURL() const;
URL overrideNewTabPageURL() const;
const PermissionsMap& grantedPermissions();
void setGrantedPermissions(PermissionsMap&&);
const PermissionsMap& deniedPermissions();
void setDeniedPermissions(PermissionsMap&&);
const PermissionMatchPatternsMap& grantedPermissionMatchPatterns();
void setGrantedPermissionMatchPatterns(PermissionMatchPatternsMap&&, EqualityOnly = EqualityOnly::Yes);
const PermissionMatchPatternsMap& deniedPermissionMatchPatterns();
void setDeniedPermissionMatchPatterns(PermissionMatchPatternsMap&&, EqualityOnly = EqualityOnly::Yes);
bool requestedOptionalAccessToAllHosts() const { return m_requestedOptionalAccessToAllHosts; }
void setRequestedOptionalAccessToAllHosts(bool requested) { m_requestedOptionalAccessToAllHosts = requested; }
bool hasAccessToPrivateData() const { return m_hasAccessToPrivateData; }
void setHasAccessToPrivateData(bool);
void grantPermissions(PermissionsSet&&, WallTime expirationDate = WallTime::infinity());
void denyPermissions(PermissionsSet&&, WallTime expirationDate = WallTime::infinity());
void grantPermissionMatchPatterns(MatchPatternSet&&, WallTime expirationDate = WallTime::infinity(), EqualityOnly = EqualityOnly::Yes);
void denyPermissionMatchPatterns(MatchPatternSet&&, WallTime expirationDate = WallTime::infinity(), EqualityOnly = EqualityOnly::Yes);
bool removeGrantedPermissions(PermissionsSet&);
bool removeGrantedPermissionMatchPatterns(MatchPatternSet&, EqualityOnly = EqualityOnly::Yes);
bool removeDeniedPermissions(PermissionsSet&);
bool removeDeniedPermissionMatchPatterns(MatchPatternSet&, EqualityOnly = EqualityOnly::Yes);
void requestPermissionMatchPatterns(const MatchPatternSet&, RefPtr<WebExtensionTab> = nullptr, CompletionHandler<void(MatchPatternSet&& neededMatchPatterns, MatchPatternSet&& allowedMatchPatterns, WallTime expirationDate)>&& = nullptr, GrantOnCompletion = GrantOnCompletion::Yes, OptionSet<PermissionStateOptions> = { });
void requestPermissionToAccessURLs(const URLVector&, RefPtr<WebExtensionTab> = nullptr, CompletionHandler<void(URLSet&& neededURLs, URLSet&& allowedURLs, WallTime expirationDate)>&& = nullptr, GrantOnCompletion = GrantOnCompletion::Yes, OptionSet<PermissionStateOptions> = { PermissionStateOptions::RequestedWithTabsPermission });
void requestPermissions(const PermissionsSet&, RefPtr<WebExtensionTab> = nullptr, CompletionHandler<void(PermissionsSet&& neededPermissions, PermissionsSet&& allowedPermissions, WallTime expirationDate)>&& = nullptr, GrantOnCompletion = GrantOnCompletion::Yes, OptionSet<PermissionStateOptions> = { PermissionStateOptions::RequestedWithTabsPermission });
PermissionsMap::KeysConstIteratorRange currentPermissions() { return grantedPermissions().keys(); }
PermissionMatchPatternsMap::KeysConstIteratorRange currentPermissionMatchPatterns() { return grantedPermissionMatchPatterns().keys(); }
bool hasAccessToAllURLs();
bool hasAccessToAllHosts();
bool needsPermission(const String&, WebExtensionTab* = nullptr, OptionSet<PermissionStateOptions> = { });
bool needsPermission(const URL&, WebExtensionTab* = nullptr, OptionSet<PermissionStateOptions> = { PermissionStateOptions::RequestedWithTabsPermission });
bool needsPermission(const WebExtensionMatchPattern&, WebExtensionTab* = nullptr, OptionSet<PermissionStateOptions> = { PermissionStateOptions::RequestedWithTabsPermission });
bool hasPermission(const String& permission, WebExtensionTab* = nullptr, OptionSet<PermissionStateOptions> = { });
bool hasPermission(const URL&, WebExtensionTab* = nullptr, OptionSet<PermissionStateOptions> = { PermissionStateOptions::RequestedWithTabsPermission });
bool hasPermission(const WebExtensionMatchPattern&, WebExtensionTab* = nullptr, OptionSet<PermissionStateOptions> = { PermissionStateOptions::RequestedWithTabsPermission });
bool hasPermissions(PermissionsSet, MatchPatternSet);
PermissionState permissionState(const String& permission, WebExtensionTab* = nullptr, OptionSet<PermissionStateOptions> = { });
void setPermissionState(PermissionState, const String& permission, WallTime expirationDate = WallTime::infinity());
PermissionState permissionState(const URL&, WebExtensionTab* = nullptr, OptionSet<PermissionStateOptions> = { PermissionStateOptions::RequestedWithTabsPermission });
void setPermissionState(PermissionState, const URL&, WallTime expirationDate = WallTime::infinity());
PermissionState permissionState(const WebExtensionMatchPattern&, WebExtensionTab* = nullptr, OptionSet<PermissionStateOptions> = { PermissionStateOptions::RequestedWithTabsPermission });
void setPermissionState(PermissionState, const WebExtensionMatchPattern&, WallTime expirationDate = WallTime::infinity());
void clearCachedPermissionStates();
void removePage(WebPageProxy&);
Ref<WebExtensionWindow> getOrCreateWindow(WKWebExtensionWindow *) const;
RefPtr<WebExtensionWindow> getWindow(WebExtensionWindowIdentifier, std::optional<WebPageProxyIdentifier> = std::nullopt, IgnoreExtensionAccess = IgnoreExtensionAccess::No) const;
void forgetWindow(WebExtensionWindowIdentifier) const;
Ref<WebExtensionTab> getOrCreateTab(WKWebExtensionTab *) const;
RefPtr<WebExtensionTab> getTab(WebExtensionTabIdentifier, IgnoreExtensionAccess = IgnoreExtensionAccess::No) const;
RefPtr<WebExtensionTab> getTab(WebPageProxyIdentifier, std::optional<WebExtensionTabIdentifier> = std::nullopt, IncludeExtensionViews = IncludeExtensionViews::No, IgnoreExtensionAccess = IgnoreExtensionAccess::No) const;
RefPtr<WebExtensionTab> getCurrentTab(WebPageProxyIdentifier, IncludeExtensionViews = IncludeExtensionViews::Yes, IgnoreExtensionAccess = IgnoreExtensionAccess::No) const;
void forgetTab(WebExtensionTabIdentifier) const;
bool canOpenNewWindow() const;
void openNewWindow(const WebExtensionWindowParameters&, CompletionHandler<void(RefPtr<WebExtensionWindow>)>&&);
void openNewTab(const WebExtensionTabParameters&, CompletionHandler<void(RefPtr<WebExtensionTab>)>&&);
WindowVector openWindows(IgnoreExtensionAccess = IgnoreExtensionAccess::No) const;
TabVector openTabs(IgnoreExtensionAccess = IgnoreExtensionAccess::No) const;
RefPtr<WebExtensionWindow> focusedWindow(IgnoreExtensionAccess = IgnoreExtensionAccess::No) const;
RefPtr<WebExtensionWindow> frontmostWindow(IgnoreExtensionAccess = IgnoreExtensionAccess::No) const;
bool isValidWindow(const WebExtensionWindow&);
bool isValidTab(const WebExtensionTab&);
void didOpenWindow(WebExtensionWindow&, UpdateWindowOrder = UpdateWindowOrder::Yes, SuppressEvents = SuppressEvents::No);
void didCloseWindow(WebExtensionWindow&);
void didFocusWindow(const WebExtensionWindow*, SuppressEvents = SuppressEvents::No);
void didOpenTab(WebExtensionTab&, SuppressEvents = SuppressEvents::No);
void didCloseTab(WebExtensionTab&, WindowIsClosing = WindowIsClosing::No, SuppressEvents = SuppressEvents::No);
void didActivateTab(const WebExtensionTab&, const WebExtensionTab* previousTab = nullptr);
void didSelectOrDeselectTabs(const TabSet&);
void didMoveTab(WebExtensionTab&, size_t oldIndex, const WebExtensionWindow* oldWindow = nullptr);
void didReplaceTab(WebExtensionTab& oldTab, WebExtensionTab& newTab, SuppressEvents = SuppressEvents::No);
void didChangeTabProperties(WebExtensionTab&, OptionSet<WebExtensionTab::ChangedProperties> = { });
void didStartProvisionalLoadForFrame(WebPageProxyIdentifier, const WebExtensionFrameParameters&, WallTime);
void didCommitLoadForFrame(WebPageProxyIdentifier, const WebExtensionFrameParameters&, WallTime);
void didFinishLoadForFrame(WebPageProxyIdentifier, const WebExtensionFrameParameters&, WallTime);
void didFailLoadForFrame(WebPageProxyIdentifier, const WebExtensionFrameParameters&, WallTime);
void resourceLoadDidSendRequest(WebPageProxyIdentifier, const ResourceLoadInfo&, const WebCore::ResourceRequest&);
void resourceLoadDidPerformHTTPRedirection(WebPageProxyIdentifier, const ResourceLoadInfo&, const WebCore::ResourceResponse&, const WebCore::ResourceRequest&);
void resourceLoadDidReceiveChallenge(WebPageProxyIdentifier, const ResourceLoadInfo&, const WebCore::AuthenticationChallenge&);
void resourceLoadDidReceiveResponse(WebPageProxyIdentifier, const ResourceLoadInfo&, const WebCore::ResourceResponse&);
void resourceLoadDidCompleteWithError(WebPageProxyIdentifier, const ResourceLoadInfo&, const WebCore::ResourceResponse&, const WebCore::ResourceError&);
#if ENABLE(INSPECTOR_EXTENSIONS)
void inspectorWillOpen(WebInspectorUIProxy&, WebPageProxy&);
void inspectorWillClose(WebInspectorUIProxy&, WebPageProxy&);
void didShowInspectorExtensionPanel(API::InspectorExtension&, const Inspector::ExtensionTabID&, WebCore::FrameIdentifier) const;
void didHideInspectorExtensionPanel(API::InspectorExtension&, const Inspector::ExtensionTabID&) const;
void inspectedPageDidNavigate(API::InspectorExtension&, const URL&);
void inspectorEffectiveAppearanceDidChange(API::InspectorExtension&, Inspector::ExtensionAppearance);
#endif
WebExtensionAction& defaultAction();
Ref<WebExtensionAction> protectedDefaultAction() { return defaultAction(); }
Ref<WebExtensionAction> getAction(WebExtensionWindow*);
Ref<WebExtensionAction> getAction(WebExtensionTab*);
Ref<WebExtensionAction> getOrCreateAction(WebExtensionWindow*);
Ref<WebExtensionAction> getOrCreateAction(WebExtensionTab*);
void performAction(WebExtensionTab*, UserTriggered = UserTriggered::No);
#if ENABLE(WK_WEB_EXTENSIONS_SIDEBAR)
WebExtensionSidebar& defaultSidebar();
std::optional<Ref<WebExtensionSidebar>> getSidebar(WebExtensionWindow const&);
std::optional<Ref<WebExtensionSidebar>> getSidebar(WebExtensionTab const&);
std::optional<Ref<WebExtensionSidebar>> getOrCreateSidebar(WebExtensionWindow&);
std::optional<Ref<WebExtensionSidebar>> getOrCreateSidebar(WebExtensionTab&);
RefPtr<WebExtensionSidebar> getOrCreateSidebar(RefPtr<WebExtensionTab>);
void openSidebar(WebExtensionSidebar&);
void closeSidebar(WebExtensionSidebar&);
bool canProgrammaticallyOpenSidebar();
bool canProgrammaticallyCloseSidebar();
#endif // ENABLE(WK_WEB_EXTENSIONS_SIDEBAR)
const CommandsVector& commands();
WebExtensionCommand* command(const String& identifier);
void performCommand(WebExtensionCommand&, UserTriggered = UserTriggered::No);
#if TARGET_OS_IPHONE
WebExtensionCommand* commandMatchingKeyCommand(UIKeyCommand *);
bool performCommand(UIKeyCommand *);
#endif
#if USE(APPKIT)
WebExtensionCommand* command(NSEvent *);
bool performCommand(NSEvent *);
#endif
NSArray *platformMenuItems(const WebExtensionTab&) const;
const MenuItemVector& mainMenuItems() const { return m_mainMenuItems; }
WebExtensionMenuItem* menuItem(const String& identifier) const;
void performMenuItem(WebExtensionMenuItem&, const WebExtensionMenuItemContextParameters&, UserTriggered = UserTriggered::No);
CocoaMenuItem *singleMenuItemOrExtensionItemWithSubmenu(const WebExtensionMenuItemContextParameters&, const bool allowTopLevelImages) const;
#if PLATFORM(MAC)
void addItemsToContextMenu(WebPageProxy&, const ContextMenuContextData&, NSMenu *);
#endif
void userGesturePerformed(WebExtensionTab&);
bool hasActiveUserGesture(WebExtensionTab&) const;
void clearUserGesture(WebExtensionTab&);
bool inTestingMode() const;
#if PLATFORM(COCOA)
void sendTestMessage(const String& message, id argument);
#endif
#if PLATFORM(COCOA)
URL backgroundContentURL();
WKWebView *backgroundWebView() const { return m_backgroundWebView.get(); }
bool safeToLoadBackgroundContent() const { return m_safeToLoadBackgroundContent; }
NSError *backgroundContentLoadError() const { return m_backgroundContentLoadError.get(); }
#endif
NSString *backgroundWebViewInspectionName();
void setBackgroundWebViewInspectionName(const String&);
bool decidePolicyForNavigationAction(WKWebView *, WKNavigationAction *);
void didFinishDocumentLoad(WKWebView *, WKNavigation *);
void didFailNavigation(WKWebView *, WKNavigation *, NSError *);
void webViewWebContentProcessDidTerminate(WKWebView *);
#if PLATFORM(MAC)
void runOpenPanel(WKWebView *, WKOpenPanelParameters *, void (^)(NSArray *));
#endif
#if PLATFORM(COCOA)
void sendNativeMessage(const String& applicationID, id message, CompletionHandler<void(Expected<RetainPtr<id>, WebExtensionError>&&)>&&);
#endif
void addInjectedContent(WebUserContentControllerProxy&);
void removeInjectedContent(WebUserContentControllerProxy&);
bool handleContentRuleListNotificationForTab(WebExtensionTab&, const URL&, WebCore::ContentRuleListResults::Result);
void incrementActionCountForTab(WebExtensionTab&, ssize_t incrementAmount);
// Returns whether or not there are any matched rules after the purge.
bool purgeMatchedRulesFromBefore(const WallTime&);
UserStyleSheetVector& dynamicallyInjectedUserStyleSheets() { return m_dynamicallyInjectedUserStyleSheets; };
std::optional<WebCore::PageIdentifier> backgroundPageIdentifier() const;
#if ENABLE(INSPECTOR_EXTENSIONS)
Vector<PageIdentifierTuple> inspectorBackgroundPageIdentifiers() const;
Vector<PageIdentifierTuple> inspectorPageIdentifiers() const;
#endif
Vector<PageIdentifierTuple> popupPageIdentifiers() const;
Vector<PageIdentifierTuple> tabPageIdentifiers() const;
void addExtensionTabPage(WebPageProxy&, WebExtensionTab&);
void addPopupPage(WebPageProxy&, WebExtensionAction&);
void enumerateExtensionPages(NOESCAPE Function<void(WebPageProxy&, bool& stop)>&&);
WKWebView *relatedWebView();
NSString *processDisplayName();
NSArray *corsDisablingPatterns();
void updateCORSDisablingPatternsOnAllExtensionPages();
WKWebViewConfiguration *webViewConfiguration(WebViewPurpose = WebViewPurpose::Any);
WebsiteDataStore* websiteDataStore(std::optional<PAL::SessionID> = std::nullopt) const;
void cookiesDidChange(API::HTTPCookieStore&);
void loadBackgroundContent(CompletionHandler<void(NSError *)>&&);
void wakeUpBackgroundContentIfNecessary(Function<void()>&&);
void wakeUpBackgroundContentIfNecessaryToFireEvents(EventListenerTypeSet&&, Function<void()>&&);
HashSet<Ref<WebProcessProxy>> processes(WebExtensionEventListenerType type, WebExtensionContentWorldType contentWorldType) const
{
return processes(EventListenerTypeSet { type }, contentWorldType);
}
HashSet<Ref<WebProcessProxy>> processes(EventListenerTypeSet&& typeSet, WebExtensionContentWorldType contentWorldType) const
{
return processes(WTFMove(typeSet), ContentWorldTypeSet { contentWorldType });
}
HashSet<Ref<WebProcessProxy>> processes(EventListenerTypeSet&&, ContentWorldTypeSet&&, Function<bool(WebPageProxy&, WebFrameProxy&)>&& predicate = nullptr) const;
const UserContentControllerProxySet& userContentControllers() const;
template<typename T>
void sendToProcesses(const WebProcessProxySet&, const T& message) const;
template<typename T>
void sendToProcessesForEvent(WebExtensionEventListenerType, const T& message) const;
template<typename T>
void sendToProcessesForEvents(EventListenerTypeSet&&, const T& message) const;
template<typename T>
void sendToContentScriptProcessesForEvent(WebExtensionEventListenerType, const T& message) const;
#ifdef __OBJC__
WKWebExtensionContext *wrapper() const { return (WKWebExtensionContext *)API::ObjectImpl<API::Object::Type::WebExtensionContext>::wrapper(); }
#endif
private:
friend class WebExtensionCommand;
friend class WebExtensionMessagePort;
explicit WebExtensionContext();
String stateFilePath() const;
NSDictionary *currentState() const;
NSDictionary *readStateFromStorage();
void writeStateToStorage() const;
void determineInstallReasonDuringLoad();
void moveLocalStorageIfNeeded(const URL& previousBaseURL, CompletionHandler<void()>&&);
void permissionsDidChange(NSString *notificationName, const PermissionsSet&);
void permissionsDidChange(NSString *notificationName, const MatchPatternSet&);
bool removePermissions(PermissionsMap&, PermissionsSet&, WallTime& nextExpirationDate, NSString *notificationName);
bool removePermissionMatchPatterns(PermissionMatchPatternsMap&, MatchPatternSet&, EqualityOnly, WallTime& nextExpirationDate, NSString *notificationName);
#if PLATFORM(COCOA)
PermissionsMap& removeExpired(PermissionsMap&, WallTime& nextExpirationDate, NSString *notificationName = nil);
PermissionMatchPatternsMap& removeExpired(PermissionMatchPatternsMap&, WallTime& nextExpirationDate, NSString *notificationName = nil);
#endif
void populateWindowsAndTabs();
bool isBackgroundPage(WebCore::FrameIdentifier) const;
bool isBackgroundPage(WebPageProxyIdentifier) const;
bool backgroundContentIsLoaded() const;
void loadBackgroundWebViewDuringLoad();
void loadBackgroundWebViewIfNeeded();
void loadBackgroundWebView();
void unloadBackgroundWebView();
void scheduleBackgroundContentToUnload();
void unloadBackgroundContentIfPossible();
uint64_t loadBackgroundPageListenersVersionNumberFromStorage();
void loadBackgroundPageListenersFromStorage();
void saveBackgroundPageListenersToStorage();
void performTasksAfterBackgroundContentLoads();
#ifdef NDEBUG
// This is method is a no-op in release builds since it has a performance impact with little benefit to release builds.
void reportWebViewConfigurationErrorIfNeeded(const WebExtensionTab&) const { };
#else
void reportWebViewConfigurationErrorIfNeeded(const WebExtensionTab&) const;
#endif
#if ENABLE(INSPECTOR_EXTENSIONS)
URL inspectorBackgroundPageURL() const;
InspectorTabVector openInspectors(Function<bool(WebExtensionTab&, WebInspectorUIProxy&)>&& = nullptr) const;
InspectorTabVector loadedInspectors() const;
bool isInspectorBackgroundPage(WKWebView *) const;
void loadInspectorBackgroundPagesDuringLoad();
void unloadInspectorBackgroundPages();
void loadInspectorBackgroundPagesForPrivateBrowsing();
void unloadInspectorBackgroundPagesForPrivateBrowsing();
void loadInspectorBackgroundPage(WebInspectorUIProxy&, WebExtensionTab&);
void unloadInspectorBackgroundPage(WebInspectorUIProxy&);
RefPtr<API::InspectorExtension> inspectorExtension(WebPageProxyIdentifier) const;
RefPtr<WebInspectorUIProxy> inspector(const API::InspectorExtension&) const;
HashSet<Ref<WebProcessProxy>> processes(const API::InspectorExtension&) const;
#endif // ENABLE(INSPECTOR_EXTENSIONS)
API::ContentWorld& toContentWorld(WebExtensionContentWorldType) const;
void addInjectedContent() { addInjectedContent(injectedContents()); }
void addInjectedContent(const InjectedContentVector&);
void addInjectedContent(const InjectedContentVector&, const MatchPatternSet&);
void addInjectedContent(const InjectedContentVector&, WebExtensionMatchPattern&);
void updateInjectedContent() { removeInjectedContent(); addInjectedContent(); }
void removeInjectedContent();
void removeInjectedContent(const MatchPatternSet&);
void removeInjectedContent(WebExtensionMatchPattern&);
// DeclarativeNetRequest methods.
// Loading/unloading static rules
void loadDeclarativeNetRequestRules(CompletionHandler<void(bool)>&&);
void compileDeclarativeNetRequestRules(NSArray *, CompletionHandler<void(bool)>&&);
void unloadDeclarativeNetRequestState();
String declarativeNetRequestContentRuleListFilePath();
// Updating user content controllers with new rules.
void addDeclarativeNetRequestRulesToPrivateUserContentControllers();
void removeDeclarativeNetRequestRules();
// Customizing static rulesets.
void saveDeclarativeNetRequestRulesetStateToStorage(NSDictionary *rulesetState);
void loadDeclarativeNetRequestRulesetStateFromStorage();
void clearDeclarativeNetRequestRulesetState();
// Displaying action count as badge text.
bool shouldDisplayBlockedResourceCountAsBadgeText();
void saveShouldDisplayBlockedResourceCountAsBadgeText(bool);
// Session and dynamic rules.
_WKWebExtensionDeclarativeNetRequestSQLiteStore *declarativeNetRequestDynamicRulesStore();
_WKWebExtensionDeclarativeNetRequestSQLiteStore *declarativeNetRequestSessionRulesStore();
void updateDeclarativeNetRequestRulesInStorage(_WKWebExtensionDeclarativeNetRequestSQLiteStore *, NSString *storageType, NSString *apiName, NSArray *rulesToAdd, NSArray *ruleIDsToRemove, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
DeclarativeNetRequestMatchedRuleVector matchedRules() { return m_matchedRules; }
// Registered content scripts methods.
void loadRegisteredContentScripts();
void clearRegisteredContentScripts();
_WKWebExtensionRegisteredScriptsSQLiteStore *registeredContentScriptsStore();
// Storage
void setSessionStorageAllowedInContentScripts(bool);
bool isSessionStorageAllowedInContentScripts() const { return m_isSessionStorageAllowedInContentScripts; }
size_t quotaForStorageType(WebExtensionDataType);
Ref<WebExtensionStorageSQLiteStore> localStorageStore();
Ref<WebExtensionStorageSQLiteStore> sessionStorageStore();
Ref<WebExtensionStorageSQLiteStore> syncStorageStore();
void fetchCookies(WebsiteDataStore&, const URL&, const WebExtensionCookieFilterParameters&, CompletionHandler<void(Expected<Vector<WebExtensionCookieParameters>, WebExtensionError>&&)>&&);
// Action APIs
bool isActionMessageAllowed();
void actionGetTitle(std::optional<WebExtensionWindowIdentifier>, std::optional<WebExtensionTabIdentifier>, CompletionHandler<void(Expected<String, WebExtensionError>&&)>&&);
void actionSetTitle(std::optional<WebExtensionWindowIdentifier>, std::optional<WebExtensionTabIdentifier>, const String& title, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void actionSetIcon(std::optional<WebExtensionWindowIdentifier>, std::optional<WebExtensionTabIdentifier>, const String& iconsJSON, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void actionGetPopup(std::optional<WebExtensionWindowIdentifier>, std::optional<WebExtensionTabIdentifier>, CompletionHandler<void(Expected<String, WebExtensionError>&&)>&&);
void actionSetPopup(std::optional<WebExtensionWindowIdentifier>, std::optional<WebExtensionTabIdentifier>, const String& popupPath, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void actionOpenPopup(WebPageProxyIdentifier, std::optional<WebExtensionWindowIdentifier>, std::optional<WebExtensionTabIdentifier>, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void actionGetBadgeText(std::optional<WebExtensionWindowIdentifier>, std::optional<WebExtensionTabIdentifier>, CompletionHandler<void(Expected<String, WebExtensionError>&&)>&&);
void actionSetBadgeText(std::optional<WebExtensionWindowIdentifier>, std::optional<WebExtensionTabIdentifier>, const String& text, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void actionGetEnabled(std::optional<WebExtensionWindowIdentifier>, std::optional<WebExtensionTabIdentifier>, CompletionHandler<void(Expected<bool, WebExtensionError>&&)>&&);
void actionSetEnabled(std::optional<WebExtensionTabIdentifier>, bool enabled, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void fireActionClickedEventIfNeeded(WebExtensionTab*);
// Alarms APIs
bool isAlarmsMessageAllowed();
void alarmsCreate(const String& name, Seconds initialInterval, Seconds repeatInterval);
void alarmsGet(const String& name, CompletionHandler<void(std::optional<WebExtensionAlarmParameters>&&)>&&);
void alarmsClear(const String& name, CompletionHandler<void()>&&);
void alarmsGetAll(CompletionHandler<void(Vector<WebExtensionAlarmParameters>&&)>&&);
void alarmsClearAll(CompletionHandler<void()>&&);
void fireAlarmsEventIfNeeded(const WebExtensionAlarm&);
// Commands APIs
bool isCommandsMessageAllowed();
void commandsGetAll(CompletionHandler<void(Vector<WebExtensionCommandParameters>)>&&);
void fireCommandEventIfNeeded(const WebExtensionCommand&, WebExtensionTab*);
void fireCommandChangedEventIfNeeded(const WebExtensionCommand&, const String& oldShortcut);
// Cookies APIs
bool isCookiesMessageAllowed();
void cookiesGet(std::optional<PAL::SessionID>, const String& name, const URL&, CompletionHandler<void(Expected<std::optional<WebExtensionCookieParameters>, WebExtensionError>&&)>&&);
void cookiesGetAll(std::optional<PAL::SessionID>, const URL&, const WebExtensionCookieFilterParameters&, CompletionHandler<void(Expected<Vector<WebExtensionCookieParameters>, WebExtensionError>&&)>&&);
void cookiesSet(std::optional<PAL::SessionID>, const WebExtensionCookieParameters&, CompletionHandler<void(Expected<std::optional<WebExtensionCookieParameters>, WebExtensionError>&&)>&&);
void cookiesRemove(std::optional<PAL::SessionID>, const String& name, const URL&, CompletionHandler<void(Expected<std::optional<WebExtensionCookieParameters>, WebExtensionError>&&)>&&);
void cookiesGetAllCookieStores(CompletionHandler<void(Expected<HashMap<PAL::SessionID, Vector<WebExtensionTabIdentifier>>, WebExtensionError>&&)>&&);
void fireCookiesChangedEventIfNeeded();
// DeclarativeNetRequest APIs
bool isDeclarativeNetRequestMessageAllowed();
void declarativeNetRequestGetEnabledRulesets(CompletionHandler<void(Vector<String>&&)>&&);
void declarativeNetRequestUpdateEnabledRulesets(const Vector<String>& rulesetIdentifiersToEnable, const Vector<String>& rulesetIdentifiersToDisable, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void declarativeNetRequestDisplayActionCountAsBadgeText(bool displayActionCountAsBadgeText, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void declarativeNetRequestIncrementActionCount(WebExtensionTabIdentifier, double increment, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
DeclarativeNetRequestValidatedRulesets declarativeNetRequestValidateRulesetIdentifiers(const Vector<String>&);
size_t declarativeNetRequestEnabledRulesetCount() { return m_enabledStaticRulesetIDs.size(); }
void declarativeNetRequestToggleRulesets(const Vector<String>& rulesetIdentifiers, bool newValue, NSMutableDictionary *rulesetIdentifiersToEnabledState);
void declarativeNetRequestGetMatchedRules(std::optional<WebExtensionTabIdentifier>, std::optional<WallTime> minTimeStamp, CompletionHandler<void(Expected<Vector<WebExtensionMatchedRuleParameters>, WebExtensionError>&&)>&&);
void declarativeNetRequestGetDynamicRules(CompletionHandler<void(Expected<String, WebExtensionError>&&)>&&);
void declarativeNetRequestUpdateDynamicRules(String&& rulesToAddJSON, Vector<double>&& ruleIDsToDelete, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void declarativeNetRequestGetSessionRules(CompletionHandler<void(Expected<String, WebExtensionError>&&)>&&);
void declarativeNetRequestUpdateSessionRules(String&& rulesToAddJSON, Vector<double>&& ruleIDsToDelete, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
#if ENABLE(INSPECTOR_EXTENSIONS)
// DevTools APIs
bool isDevToolsMessageAllowed();
void devToolsPanelsCreate(WebPageProxyIdentifier, const String& title, const String& iconPath, const String& pagePath, CompletionHandler<void(Expected<Inspector::ExtensionTabID, WebExtensionError>&&)>&&);
void devToolsInspectedWindowEval(WebPageProxyIdentifier, const String& scriptSource, const std::optional<URL>& frameURL, CompletionHandler<void(Expected<Expected<std::span<const uint8_t>, WebCore::ExceptionDetails>, WebExtensionError>&&)>&&);
void devToolsInspectedWindowReload(WebPageProxyIdentifier, const std::optional<bool>& ignoreCache);
#endif
// Event APIs
void addListener(WebCore::FrameIdentifier, WebExtensionEventListenerType, WebExtensionContentWorldType);
void removeListener(WebCore::FrameIdentifier, WebExtensionEventListenerType, WebExtensionContentWorldType, size_t removedCount);
// Extension APIs
void extensionIsAllowedIncognitoAccess(CompletionHandler<void(bool)>&&);
// Menus APIs
bool isMenusMessageAllowed();
void menusCreate(const WebExtensionMenuItemParameters&, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void menusUpdate(const String& identifier, const WebExtensionMenuItemParameters&, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void menusRemove(const String& identifier, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void menusRemoveAll(CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void fireMenusClickedEventIfNeeded(const WebExtensionMenuItem&, bool wasChecked, const WebExtensionMenuItemContextParameters&);
// Permissions APIs
void permissionsGetAll(CompletionHandler<void(Vector<String>&& permissions, Vector<String>&& origins)>&&);
void permissionsContains(HashSet<String> permissions, HashSet<String> origins, CompletionHandler<void(bool)>&&);
void permissionsRequest(HashSet<String> permissions, HashSet<String> origins, CompletionHandler<void(bool)>&&);
void permissionsRemove(HashSet<String> permissions, HashSet<String> origins, CompletionHandler<void(bool)>&&);
void firePermissionsEventListenerIfNecessary(WebExtensionEventListenerType, const PermissionsSet&, const MatchPatternSet&);
// Port APIs
void portPostMessage(WebExtensionContentWorldType sourceContentWorldType, WebExtensionContentWorldType targetContentWorldType, std::optional<WebKit::WebPageProxyIdentifier>, WebExtensionPortChannelIdentifier, const String& messageJSON);
void portRemoved(WebExtensionContentWorldType sourceContentWorldType, WebExtensionContentWorldType targetContentWorldType, WebPageProxyIdentifier, WebExtensionPortChannelIdentifier);
bool pageHasOpenPorts(WebPageProxy&);
void disconnectPortsForPage(WebPageProxy&);
void addPorts(WebExtensionContentWorldType sourceContentWorldType, WebExtensionContentWorldType targetContentWorldType, WebExtensionPortChannelIdentifier, HashCountedSet<WebPageProxyIdentifier>&&);
void removePort(WebExtensionContentWorldType sourceContentWorldType, WebExtensionContentWorldType targetContentWorldType, WebExtensionPortChannelIdentifier, WebPageProxyIdentifier);
void addNativePort(WebExtensionMessagePort&);
void removeNativePort(WebExtensionMessagePort&);
unsigned openPortCount(WebExtensionContentWorldType, WebExtensionPortChannelIdentifier);
bool isPortConnected(WebExtensionContentWorldType sourceContentWorldType, WebExtensionContentWorldType targetContentWorldType, WebExtensionPortChannelIdentifier);
void clearQueuedPortMessages(WebExtensionContentWorldType, WebExtensionPortChannelIdentifier);
Vector<MessagePageProxyIdentifierPair> portQueuedMessages(WebExtensionContentWorldType, WebExtensionPortChannelIdentifier);
void firePortMessageEventsIfNeeded(WebExtensionContentWorldType, std::optional<WebPageProxyIdentifier>, WebExtensionPortChannelIdentifier, const String& messageJSON);
void fireQueuedPortMessageEventsIfNeeded(WebExtensionContentWorldType, WebExtensionPortChannelIdentifier);
void sendQueuedNativePortMessagesIfNeeded(WebExtensionPortChannelIdentifier);
void firePortDisconnectEventIfNeeded(WebExtensionContentWorldType sourceContentWorldType, WebExtensionContentWorldType targetContentWorldType, WebExtensionPortChannelIdentifier);
// Runtime APIs
void runtimeGetBackgroundPage(CompletionHandler<void(Expected<std::optional<WebCore::PageIdentifier>, WebExtensionError>&&)>&&);
void runtimeOpenOptionsPage(CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void runtimeReload();
void runtimeSendMessage(const String& extensionID, const String& messageJSON, const WebExtensionMessageSenderParameters&, CompletionHandler<void(Expected<String, WebExtensionError>&&)>&&);
void runtimeConnect(const String& extensionID, WebExtensionPortChannelIdentifier, const String& name, const WebExtensionMessageSenderParameters&, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void runtimeSendNativeMessage(const String& applicationID, const String& messageJSON, CompletionHandler<void(Expected<String, WebExtensionError>&&)>&&);
void runtimeConnectNative(const String& applicationID, WebExtensionPortChannelIdentifier, WebPageProxyIdentifier, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void runtimeWebPageSendMessage(const String& extensionID, const String& messageJSON, const WebExtensionMessageSenderParameters&, CompletionHandler<void(Expected<String, WebExtensionError>&&)>&&);
void runtimeWebPageConnect(const String& extensionID, WebExtensionPortChannelIdentifier, const String& name, const WebExtensionMessageSenderParameters&, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void fireRuntimeStartupEventIfNeeded();
void fireRuntimeInstalledEventIfNeeded();
// Scripting APIs
bool isScriptingMessageAllowed();
void scriptingExecuteScript(const WebExtensionScriptInjectionParameters&, CompletionHandler<void(Expected<Vector<WebExtensionScriptInjectionResultParameters>, WebExtensionError>&&)>&&);
void scriptingInsertCSS(const WebExtensionScriptInjectionParameters&, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void scriptingRemoveCSS(const WebExtensionScriptInjectionParameters&, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void scriptingRegisterContentScripts(const Vector<WebExtensionRegisteredScriptParameters>& scripts, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void scriptingUpdateRegisteredScripts(const Vector<WebExtensionRegisteredScriptParameters>& scripts, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void scriptingGetRegisteredScripts(const Vector<String>&, CompletionHandler<void(Expected<Vector<WebExtensionRegisteredScriptParameters>, WebExtensionError>&&)>&&);
void scriptingUnregisterContentScripts(const Vector<String>&, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
bool createInjectedContentForScripts(const Vector<WebExtensionRegisteredScriptParameters>&, WebExtensionDynamicScripts::WebExtensionRegisteredScript::FirstTimeRegistration, DynamicInjectedContentsMap&, NSString *callingAPIName, NSString **errorMessage);
// Sidebar APIs
#if ENABLE(WK_WEB_EXTENSIONS_SIDEBAR)
bool isSidebarMessageAllowed();
void sidebarOpen(const std::optional<WebExtensionWindowIdentifier>, const std::optional<WebExtensionTabIdentifier>, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void sidebarIsOpen(const std::optional<WebExtensionWindowIdentifier>, CompletionHandler<void(Expected<bool, WebExtensionError>&&)>&&);
void sidebarClose(CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void sidebarToggle(CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void sidebarGetOptions(const std::optional<WebExtensionWindowIdentifier>, const std::optional<WebExtensionTabIdentifier>, CompletionHandler<void(Expected<WebExtensionSidebarParameters, WebExtensionError>&&)>&&);
void sidebarSetOptions(const std::optional<WebExtensionWindowIdentifier>, const std::optional<WebExtensionTabIdentifier>, const std::optional<String>& panelSourcePath, const std::optional<bool> enabled, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void sidebarGetTitle(const std::optional<WebExtensionWindowIdentifier>, const std::optional<WebExtensionTabIdentifier>, CompletionHandler<void(Expected<String, WebExtensionError>&&)>&&);
void sidebarSetTitle(const std::optional<WebExtensionWindowIdentifier>, const std::optional<WebExtensionTabIdentifier>, const std::optional<String>& title, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void sidebarSetIcon(const std::optional<WebExtensionWindowIdentifier>, const std::optional<WebExtensionTabIdentifier>, const String& iconJSON, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void sidebarSetActionClickBehavior(WebExtensionActionClickBehavior, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void sidebarGetActionClickBehavior(CompletionHandler<void(Expected<WebExtensionActionClickBehavior, WebExtensionError>&&)>&&);
#endif
// Storage APIs
bool isStorageMessageAllowed();
void storageGet(WebPageProxyIdentifier, WebExtensionDataType, const Vector<String>& keys, CompletionHandler<void(Expected<String, WebExtensionError>&&)>&&);
void storageGetKeys(WebPageProxyIdentifier, WebExtensionDataType, CompletionHandler<void(Expected<Vector<String>, WebExtensionError>&&)>&&);
void storageGetBytesInUse(WebPageProxyIdentifier, WebExtensionDataType, const Vector<String>& keys, CompletionHandler<void(Expected<size_t, WebExtensionError>&&)>&&);
void storageSet(WebPageProxyIdentifier, WebExtensionDataType, const String& dataJSON, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void storageRemove(WebPageProxyIdentifier, WebExtensionDataType, const Vector<String>& keys, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void storageClear(WebPageProxyIdentifier, WebExtensionDataType, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void storageSetAccessLevel(WebPageProxyIdentifier, WebExtensionDataType, WebExtensionStorageAccessLevel, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void fireStorageChangedEventIfNeeded(HashMap<String, String> oldKeysAndValues, HashMap<String, String> newKeysAndValues, WebExtensionDataType);
// Tabs APIs
void tabsCreate(std::optional<WebPageProxyIdentifier>, const WebExtensionTabParameters&, CompletionHandler<void(Expected<std::optional<WebExtensionTabParameters>, WebExtensionError>&&)>&&);
void tabsUpdate(WebPageProxyIdentifier, std::optional<WebExtensionTabIdentifier>, const WebExtensionTabParameters&, CompletionHandler<void(Expected<std::optional<WebExtensionTabParameters>, WebExtensionError>&&)>&&);
void tabsDuplicate(WebExtensionTabIdentifier, const WebExtensionTabParameters&, CompletionHandler<void(Expected<std::optional<WebExtensionTabParameters>, WebExtensionError>&&)>&&);
void tabsGet(WebExtensionTabIdentifier, CompletionHandler<void(Expected<std::optional<WebExtensionTabParameters>, WebExtensionError>&&)>&&);
void tabsGetCurrent(WebPageProxyIdentifier, CompletionHandler<void(Expected<std::optional<WebExtensionTabParameters>, WebExtensionError>&&)>&&);
void tabsQuery(WebPageProxyIdentifier, const WebExtensionTabQueryParameters&, CompletionHandler<void(Expected<Vector<WebExtensionTabParameters>, WebExtensionError>&&)>&&);
void tabsReload(WebPageProxyIdentifier, std::optional<WebExtensionTabIdentifier>, ReloadFromOrigin, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void tabsGoBack(WebPageProxyIdentifier, std::optional<WebExtensionTabIdentifier>, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void tabsGoForward(WebPageProxyIdentifier, std::optional<WebExtensionTabIdentifier>, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void tabsDetectLanguage(WebPageProxyIdentifier, std::optional<WebExtensionTabIdentifier>, CompletionHandler<void(Expected<String, WebExtensionError>&&)>&&);
void tabsCaptureVisibleTab(WebPageProxyIdentifier, std::optional<WebExtensionWindowIdentifier>, WebExtensionTab::ImageFormat, uint8_t imageQuality, CompletionHandler<void(Expected<URL, WebExtensionError>&&)>&&);
void tabsToggleReaderMode(WebPageProxyIdentifier, std::optional<WebExtensionTabIdentifier>, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void tabsSendMessage(WebExtensionTabIdentifier, const String& messageJSON, const WebExtensionMessageTargetParameters&, const WebExtensionMessageSenderParameters&, CompletionHandler<void(Expected<String, WebExtensionError>&&)>&&);
void tabsConnect(WebExtensionTabIdentifier, WebExtensionPortChannelIdentifier, String name, const WebExtensionMessageTargetParameters&, const WebExtensionMessageSenderParameters&, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void tabsGetZoom(WebPageProxyIdentifier, std::optional<WebExtensionTabIdentifier>, CompletionHandler<void(Expected<double, WebExtensionError>&&)>&&);
void tabsSetZoom(WebPageProxyIdentifier, std::optional<WebExtensionTabIdentifier>, double, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void tabsRemove(Vector<WebExtensionTabIdentifier>, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void tabsExecuteScript(WebPageProxyIdentifier, std::optional<WebExtensionTabIdentifier>, const WebExtensionScriptInjectionParameters&, CompletionHandler<void(Expected<Vector<WebExtensionScriptInjectionResultParameters>, WebExtensionError>&&)>&&);
void tabsInsertCSS(WebPageProxyIdentifier, std::optional<WebExtensionTabIdentifier>, const WebExtensionScriptInjectionParameters&, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void tabsRemoveCSS(WebPageProxyIdentifier, std::optional<WebExtensionTabIdentifier>, const WebExtensionScriptInjectionParameters&, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void fireTabsCreatedEventIfNeeded(const WebExtensionTabParameters&);
void fireTabsUpdatedEventIfNeeded(const WebExtensionTabParameters&, const WebExtensionTabParameters& changedParameters);
void fireTabsReplacedEventIfNeeded(WebExtensionTabIdentifier replacedTabIdentifier, WebExtensionTabIdentifier newTabIdentifier);
void fireTabsDetachedEventIfNeeded(WebExtensionTabIdentifier, WebExtensionWindowIdentifier oldWindowIdentifier, size_t oldIndex);
void fireTabsMovedEventIfNeeded(WebExtensionTabIdentifier, WebExtensionWindowIdentifier, size_t oldIndex, size_t newIndex);
void fireTabsAttachedEventIfNeeded(WebExtensionTabIdentifier, WebExtensionWindowIdentifier newWindowIdentifier, size_t newIndex);
void fireTabsActivatedEventIfNeeded(WebExtensionTabIdentifier previousActiveTabIdentifier, WebExtensionTabIdentifier newActiveTabIdentifier, WebExtensionWindowIdentifier);
void fireTabsHighlightedEventIfNeeded(Vector<WebExtensionTabIdentifier>, WebExtensionWindowIdentifier);
void fireTabsRemovedEventIfNeeded(WebExtensionTabIdentifier, WebExtensionWindowIdentifier, WindowIsClosing);
// WebNavigation APIs
bool isWebNavigationMessageAllowed();
void webNavigationGetFrame(WebExtensionTabIdentifier, WebExtensionFrameIdentifier, CompletionHandler<void(Expected<std::optional<WebExtensionFrameParameters>, WebExtensionError>&&)>&&);
void webNavigationGetAllFrames(WebExtensionTabIdentifier, CompletionHandler<void(Expected<Vector<WebExtensionFrameParameters>, WebExtensionError>&&)>&&);
void webNavigationTraverseFrameTreeForFrame(_WKFrameTreeNode *, _WKFrameTreeNode *parentFrame, WebExtensionTab*, Vector<WebExtensionFrameParameters>&);
std::optional<WebExtensionFrameParameters> webNavigationFindFrameIdentifierInFrameTree(_WKFrameTreeNode *, _WKFrameTreeNode *parentFrame, WebExtensionTab*, WebExtensionFrameIdentifier);
// Windows APIs
void windowsCreate(const WebExtensionWindowParameters&, CompletionHandler<void(Expected<std::optional<WebExtensionWindowParameters>, WebExtensionError>&&)>&&);
void windowsGet(WebPageProxyIdentifier, WebExtensionWindowIdentifier, OptionSet<WindowTypeFilter>, PopulateTabs, CompletionHandler<void(Expected<WebExtensionWindowParameters, WebExtensionError>&&)>&&);
void windowsGetLastFocused(OptionSet<WindowTypeFilter>, PopulateTabs, CompletionHandler<void(Expected<WebExtensionWindowParameters, WebExtensionError>&&)>&&);
void windowsGetAll(OptionSet<WindowTypeFilter>, PopulateTabs, CompletionHandler<void(Expected<Vector<WebExtensionWindowParameters>, WebExtensionError>&&)>&&);
void windowsUpdate(WebExtensionWindowIdentifier, WebExtensionWindowParameters, CompletionHandler<void(Expected<WebExtensionWindowParameters, WebExtensionError>&&)>&&);
void windowsRemove(WebExtensionWindowIdentifier, CompletionHandler<void(Expected<void, WebExtensionError>&&)>&&);
void fireWindowsEventIfNeeded(WebExtensionEventListenerType, std::optional<WebExtensionWindowParameters>);
// webRequest support.
bool hasPermissionToSendWebRequestEvent(WebExtensionTab*, const URL& resourceURL, const ResourceLoadInfo&);
// IPC::MessageReceiver.
void didReceiveMessage(IPC::Connection&, IPC::Decoder&) override;
String m_storageDirectory;
#if PLATFORM(COCOA)
RetainPtr<NSMutableDictionary> m_state;
RetainPtr<NSMutableArray> m_errors;
#endif
RefPtr<WebExtension> m_extension;
WeakPtr<WebExtensionController> m_extensionController;
URL m_baseURL;
String m_uniqueIdentifier = WTF::UUID::createVersion4().toString();
bool m_customUniqueIdentifier { false };
RefPtr<WebExtensionLocalization> m_localization;
bool m_inspectable { false };
HashSet<String> m_unsupportedAPIs;
RefPtr<API::ContentWorld> m_contentScriptWorld;
PermissionsMap m_grantedPermissions;
PermissionsMap m_deniedPermissions;
WallTime m_nextGrantedPermissionsExpirationDate { WallTime::nan() };
WallTime m_nextDeniedPermissionsExpirationDate { WallTime::nan() };
PermissionMatchPatternsMap m_grantedPermissionMatchPatterns;
PermissionMatchPatternsMap m_deniedPermissionMatchPatterns;
WallTime m_nextGrantedPermissionMatchPatternsExpirationDate { WallTime::nan() };
WallTime m_nextDeniedPermissionMatchPatternsExpirationDate { WallTime::nan() };
ListHashSet<URL> m_cachedPermissionURLs;
HashMap<URL, PermissionState> m_cachedPermissionStates;
size_t m_pendingPermissionRequests { 0 };
bool m_requestedOptionalAccessToAllHosts { false };
bool m_hasAccessToPrivateData { false };
VoidFunctionVector m_actionsToPerformAfterBackgroundContentLoads;
EventListenerTypeCountedSet m_backgroundContentEventListeners;
EventListenerTypeFrameMap m_eventListenerFrames;
bool m_shouldFireStartupEvent { false };
InstallReason m_installReason { InstallReason::None };
String m_previousVersion;
#if PLATFORM(COCOA)
RetainPtr<WKWebView> m_backgroundWebView;
RefPtr<ProcessThrottlerActivity> m_backgroundWebViewActivity;
RetainPtr<NSError> m_backgroundContentLoadError;
RetainPtr<_WKWebExtensionContextDelegate> m_delegate;
#endif
String m_backgroundWebViewInspectionName;
std::unique_ptr<RunLoop::Timer> m_unloadBackgroundWebViewTimer;
MonotonicTime m_lastBackgroundPortActivityTime;
bool m_backgroundContentIsLoaded { false };
bool m_safeToLoadBackgroundContent { false };
#if ENABLE(INSPECTOR_EXTENSIONS)
WeakHashMap<WebInspectorUIProxy, InspectorContext> m_inspectorContextMap;
#endif
HashMap<Ref<WebExtensionMatchPattern>, UserScriptVector> m_injectedScriptsPerPatternMap;
HashMap<Ref<WebExtensionMatchPattern>, UserStyleSheetVector> m_injectedStyleSheetsPerPatternMap;
#if PLATFORM(COCOA)
HashMap<String, Ref<WebExtensionDynamicScripts::WebExtensionRegisteredScript>> m_registeredScriptsMap;
RetainPtr<_WKWebExtensionRegisteredScriptsSQLiteStore> m_registeredContentScriptsStorage;
#endif
UserStyleSheetVector m_dynamicallyInjectedUserStyleSheets;
HashMap<String, Ref<WebExtensionAlarm>> m_alarmMap;
WeakHashMap<WebExtensionWindow, Ref<WebExtensionAction>> m_actionWindowMap;
WeakHashMap<WebExtensionTab, Ref<WebExtensionAction>> m_actionTabMap;
RefPtr<WebExtensionAction> m_defaultAction;
#if ENABLE(WK_WEB_EXTENSIONS_SIDEBAR)
WeakHashMap<WebExtensionWindow, Ref<WebExtensionSidebar>> m_sidebarWindowMap;
WeakHashMap<WebExtensionTab, Ref<WebExtensionSidebar>> m_sidebarTabMap;
RefPtr<WebExtensionSidebar> m_defaultSidebar;
WebExtensionActionClickBehavior m_actionClickBehavior { WebExtensionActionClickBehavior::OpenPopup };
#endif // ENABLE(WK_WEB_EXTENSIONS_SIDEBAR)
PortCountedSet m_ports;
PageProxyIdentifierPortMap m_pagePortMap;
PortQueuedMessageMap m_portQueuedMessages;
NativePortMap m_nativePortMap;
mutable WindowIdentifierMap m_windowMap;
mutable WindowIdentifierVector m_windowOrderVector;
mutable std::optional<WebExtensionWindowIdentifier> m_focusedWindowIdentifier;
mutable TabIdentifierMap m_tabMap;
PageTabIdentifierMap m_extensionPageTabMap;
PopupPageActionMap m_popupPageActionMap;
#if PLATFORM(COCOA)
RetainPtr<NSMapTable> m_tabDelegateToIdentifierMap;
#endif
CommandsVector m_commands;
bool m_populatedCommands { false };
String m_declarativeNetRequestContentRuleListFilePath;
DeclarativeNetRequestMatchedRuleVector m_matchedRules;
#if PLATFORM(COCOA)
RetainPtr<_WKWebExtensionDeclarativeNetRequestSQLiteStore> m_declarativeNetRequestDynamicRulesStore;
RetainPtr<_WKWebExtensionDeclarativeNetRequestSQLiteStore> m_declarativeNetRequestSessionRulesStore;
#endif
HashSet<String> m_enabledStaticRulesetIDs;
HashSet<double> m_sessionRulesIDs;
HashSet<double> m_dynamicRulesIDs;
MenuItemMap m_menuItems;
MenuItemVector m_mainMenuItems;
bool m_isSessionStorageAllowedInContentScripts { false };
RefPtr<WebExtensionStorageSQLiteStore> m_localStorageStore;
RefPtr<WebExtensionStorageSQLiteStore> m_sessionStorageStore;
RefPtr<WebExtensionStorageSQLiteStore> m_syncStorageStore;
struct TestMessage {
String message;
#if PLATFORM(COCOA)
RetainPtr<id> argument;
#endif
};
size_t m_testMessageListenersCount { 0 };
Deque<TestMessage> m_testMessageQueue;
bool hasTestMessageEventListeners() { return m_testMessageListenersCount; }
void flushTestMessageQueueIfNeeded();
};
template<typename T>
void WebExtensionContext::sendToProcesses(const WebProcessProxySet& processes, const T& message) const
{
if (!isLoaded())
return;
for (auto& process : processes)
process->send(T(message), identifier());
}
template<typename T>
void WebExtensionContext::sendToProcessesForEvent(WebExtensionEventListenerType type, const T& message) const
{
sendToProcesses(processes(type, WebExtensionContentWorldType::Main), message);
}
template<typename T>
void WebExtensionContext::sendToProcessesForEvents(EventListenerTypeSet&& typeSet, const T& message) const
{
sendToProcesses(processes(WTFMove(typeSet), WebExtensionContentWorldType::Main), message);
}
template<typename T>
void WebExtensionContext::sendToContentScriptProcessesForEvent(WebExtensionEventListenerType type, const T& message) const
{
sendToProcesses(processes(type, WebExtensionContentWorldType::ContentScript), message);
}
} // namespace WebKit
#endif // ENABLE(WK_WEB_EXTENSIONS)
|