Changeset 221465 in webkit
- Timestamp:
- Aug 31, 2017, 6:46:26 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 21 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r221464 r221465 1 2017-08-31 Alex Christensen <achristensen@webkit.org> 2 3 Add ObjC SPI corresponding to WKPageLoaderClient's webGLLoadPolicy and resolveWebGLLoadPolicy 4 https://bugs.webkit.org/show_bug.cgi?id=175779 5 <rdar://problem/22367975> 6 7 Reviewed by Tim Horton. 8 9 Covered by new API tests. 10 11 * loader/FrameLoaderClient.h: 12 1 13 2017-08-31 Andreas Kling <akling@apple.com> 2 14 -
trunk/Source/WebCore/loader/FrameLoaderClient.h
r221444 r221465 332 332 // notification with the given GL_ARB_robustness guilt/innocence code (see Extensions3D.h). 333 333 virtual void didLoseWebGLContext(int) { } 334 virtual WebGLLoadPolicy webGLPolicyForURL(const String&) const { return WebGLAllowCreation; }335 virtual WebGLLoadPolicy resolveWebGLPolicyForURL(const String&) const { return WebGLAllowCreation; }334 virtual WebGLLoadPolicy webGLPolicyForURL(const URL&) const { return WebGLAllowCreation; } 335 virtual WebGLLoadPolicy resolveWebGLPolicyForURL(const URL&) const { return WebGLAllowCreation; } 336 336 #endif 337 337 -
trunk/Source/WebKit/ChangeLog
r221461 r221465 1 2017-08-31 Alex Christensen <achristensen@webkit.org> 2 3 Add ObjC SPI corresponding to WKPageLoaderClient's webGLLoadPolicy and resolveWebGLLoadPolicy 4 https://bugs.webkit.org/show_bug.cgi?id=175779 5 <rdar://problem/22367975> 6 7 Reviewed by Tim Horton. 8 9 * UIProcess/API/APINavigationClient.h: 10 (API::NavigationClient::webGLLoadPolicy const): 11 (API::NavigationClient::resolveWebGLLoadPolicy const): 12 * UIProcess/API/Cocoa/WKNavigationDelegatePrivate.h: 13 * UIProcess/Cocoa/NavigationState.h: 14 * UIProcess/Cocoa/NavigationState.mm: 15 (WebKit::NavigationState::setNavigationDelegate): 16 (WebKit::toWebCoreWebGLLoadPolicy): 17 (WebKit::NavigationState::NavigationClient::webGLLoadPolicy const): 18 (WebKit::NavigationState::NavigationClient::resolveWebGLLoadPolicy const): 19 * UIProcess/WebPageProxy.cpp: 20 (WebKit::WebPageProxy::webGLPolicyForURL): 21 (WebKit::WebPageProxy::resolveWebGLPolicyForURL): 22 * UIProcess/WebPageProxy.h: 23 * UIProcess/WebPageProxy.messages.in: 24 * WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp: 25 (WebKit::WebFrameLoaderClient::webGLPolicyForURL const): 26 (WebKit::WebFrameLoaderClient::resolveWebGLPolicyForURL const): 27 * WebProcess/WebCoreSupport/WebFrameLoaderClient.h: 28 * WebProcess/WebPage/WebPage.cpp: 29 (WebKit::WebPage::webGLPolicyForURL): 30 (WebKit::WebPage::resolveWebGLPolicyForURL): 31 * WebProcess/WebPage/WebPage.h: 32 * WebProcess/WebPage/ios/WebPageIOS.mm: 33 (WebKit::WebPage::webGLPolicyForURL): 34 (WebKit::WebPage::resolveWebGLPolicyForURL): 35 * WebProcess/WebPage/mac/WebPageMac.mm: 36 (WebKit::WebPage::webGLPolicyForURL): 37 (WebKit::WebPage::resolveWebGLPolicyForURL): 38 1 39 2017-08-31 Brady Eidson <beidson@apple.com> 2 40 -
trunk/Source/WebKit/UIProcess/API/APINavigationClient.h
r221444 r221465 114 114 #endif 115 115 116 #if ENABLE(WEBGL) 117 virtual void webGLLoadPolicy(WebKit::WebPageProxy&, const WebCore::URL&, WTF::Function<void(WebCore::WebGLLoadPolicy)>&& completionHandler) const { completionHandler(WebCore::WebGLLoadPolicy::WebGLAllowCreation); } 118 virtual void resolveWebGLLoadPolicy(WebKit::WebPageProxy&, const WebCore::URL&, WTF::Function<void(WebCore::WebGLLoadPolicy)>&& completionHandler) const { completionHandler(WebCore::WebGLLoadPolicy::WebGLAllowCreation); } 119 #endif 120 116 121 virtual void didBeginNavigationGesture(WebKit::WebPageProxy&) { } 117 122 virtual void willEndNavigationGesture(WebKit::WebPageProxy&, bool willNavigate, WebKit::WebBackForwardListItem&) { } -
trunk/Source/WebKit/UIProcess/API/Cocoa/WKNavigationDelegatePrivate.h
r221444 r221465 33 33 34 34 @class _WKWebsitePolicies; 35 36 typedef NS_ENUM(NSInteger, _WKWebGLLoadPolicy) { 37 _WKWebGLLoadPolicyBlockCreation, 38 _WKWebGLLoadPolicyAllowCreation, 39 _WKWebGLLoadPolicyPendingCreation, 40 } WK_API_AVAILABLE(macosx(WK_MAC_TBA), ios(WK_IOS_TBA)); 35 41 36 42 static const WKNavigationActionPolicy _WKNavigationActionPolicyDownload = (WKNavigationActionPolicy)(WKNavigationActionPolicyAllow + 1); … … 77 83 #endif 78 84 85 - (void)_webView:(WKWebView *)webView webGLLoadPolicyForURL:(NSURL *)url decisionHandler:(void (^)(_WKWebGLLoadPolicy))decisionHandler WK_API_AVAILABLE(macosx(WK_MAC_TBA), ios(WK_IOS_TBA)); 86 - (void)_webView:(WKWebView *)webView resolveWebGLLoadPolicyForURL:(NSURL *)url decisionHandler:(void (^)(_WKWebGLLoadPolicy))decisionHandler WK_API_AVAILABLE(macosx(WK_MAC_TBA), ios(WK_IOS_TBA)); 87 79 88 @end 80 89 -
trunk/Source/WebKit/UIProcess/Cocoa/NavigationState.h
r221444 r221465 117 117 #endif 118 118 119 #if ENABLE(WEBGL) 120 void webGLLoadPolicy(WebPageProxy&, const WebCore::URL&, WTF::Function<void(WebCore::WebGLLoadPolicy)>&& completionHandler) const final; 121 void resolveWebGLLoadPolicy(WebPageProxy&, const WebCore::URL&, WTF::Function<void(WebCore::WebGLLoadPolicy)>&& completionHandler) const final; 122 #endif 123 119 124 void decidePolicyForNavigationAction(WebPageProxy&, Ref<API::NavigationAction>&&, Ref<WebFramePolicyListenerProxy>&&, API::Object* userData) override; 120 125 void decidePolicyForNavigationResponse(WebPageProxy&, API::NavigationResponse&, Ref<WebFramePolicyListenerProxy>&&, API::Object* userData) override; … … 202 207 bool webViewDidRequestPasswordForQuickLookDocument : 1; 203 208 #endif 209 210 #if ENABLE(WEBGL) 211 bool webViewWebGLLoadPolicyForURL : 1; 212 bool webViewResolveWebGLLoadPolicyForURL : 1; 213 #endif 204 214 } m_navigationDelegateMethods; 205 215 -
trunk/Source/WebKit/UIProcess/Cocoa/NavigationState.mm
r221444 r221465 174 174 m_navigationDelegateMethods.webViewDidRequestPasswordForQuickLookDocument = [delegate respondsToSelector:@selector(_webViewDidRequestPasswordForQuickLookDocument:)]; 175 175 #endif 176 #if ENABLE(WEBGL) 177 m_navigationDelegateMethods.webViewWebGLLoadPolicyForURL = [delegate respondsToSelector:@selector(_webView:webGLLoadPolicyForURL:decisionHandler:)]; 178 m_navigationDelegateMethods.webViewResolveWebGLLoadPolicyForURL = [delegate respondsToSelector:@selector(_webView:resolveWebGLLoadPolicyForURL:decisionHandler:)]; 179 #endif 176 180 } 177 181 … … 284 288 NavigationState::NavigationClient::~NavigationClient() 285 289 { 290 } 291 292 inline WebCore::WebGLLoadPolicy toWebCoreWebGLLoadPolicy(_WKWebGLLoadPolicy policy) 293 { 294 switch (policy) { 295 case _WKWebGLLoadPolicyAllowCreation: 296 return WebCore::WebGLAllowCreation; 297 case _WKWebGLLoadPolicyBlockCreation: 298 return WebCore::WebGLBlockCreation; 299 case _WKWebGLLoadPolicyPendingCreation: 300 return WebCore::WebGLPendingCreation; 301 } 302 303 ASSERT_NOT_REACHED(); 304 return WebCore::WebGLAllowCreation; 305 } 306 307 void NavigationState::NavigationClient::webGLLoadPolicy(WebPageProxy&, const WebCore::URL& url, WTF::Function<void(WebCore::WebGLLoadPolicy)>&& completionHandler) const 308 { 309 if (!m_navigationState.m_navigationDelegateMethods.webViewWebGLLoadPolicyForURL) 310 completionHandler(WebGLAllowCreation); 311 312 auto navigationDelegate = m_navigationState.m_navigationDelegate.get(); 313 Ref<CompletionHandlerCallChecker> checker = CompletionHandlerCallChecker::create(navigationDelegate.get(), @selector(_webView:webGLLoadPolicyForURL:decisionHandler:)); 314 [(id <WKNavigationDelegatePrivate>)navigationDelegate _webView:m_navigationState.m_webView webGLLoadPolicyForURL:(NSURL *)url decisionHandler:BlockPtr<void(_WKWebGLLoadPolicy)>::fromCallable([completionHandler = WTFMove(completionHandler), checker = WTFMove(checker)](_WKWebGLLoadPolicy policy) { 315 if (checker->completionHandlerHasBeenCalled()) 316 return; 317 checker->didCallCompletionHandler(); 318 completionHandler(toWebCoreWebGLLoadPolicy(policy)); 319 }).get()]; 320 } 321 322 void NavigationState::NavigationClient::resolveWebGLLoadPolicy(WebPageProxy&, const WebCore::URL& url, WTF::Function<void(WebCore::WebGLLoadPolicy)>&& completionHandler) const 323 { 324 if (!m_navigationState.m_navigationDelegateMethods.webViewResolveWebGLLoadPolicyForURL) 325 completionHandler(WebGLAllowCreation); 326 327 auto navigationDelegate = m_navigationState.m_navigationDelegate.get(); 328 Ref<CompletionHandlerCallChecker> checker = CompletionHandlerCallChecker::create(navigationDelegate.get(), @selector(_webView:resolveWebGLLoadPolicyForURL:decisionHandler:)); 329 [(id <WKNavigationDelegatePrivate>)navigationDelegate _webView:m_navigationState.m_webView resolveWebGLLoadPolicyForURL:(NSURL *)url decisionHandler:BlockPtr<void(_WKWebGLLoadPolicy)>::fromCallable([completionHandler = WTFMove(completionHandler), checker = WTFMove(checker)](_WKWebGLLoadPolicy policy) { 330 if (checker->completionHandlerHasBeenCalled()) 331 return; 332 checker->didCallCompletionHandler(); 333 completionHandler(toWebCoreWebGLLoadPolicy(policy)); 334 }).get()]; 286 335 } 287 336 -
trunk/Source/WebKit/UIProcess/WebPageProxy.cpp
r221444 r221465 4041 4041 4042 4042 #if ENABLE(WEBGL) 4043 void WebPageProxy::webGLPolicyForURL(const String& url, uint32_t& loadPolicy) 4044 { 4045 loadPolicy = static_cast<uint32_t>(m_loaderClient->webGLLoadPolicy(*this, url)); 4046 } 4047 4048 void WebPageProxy::resolveWebGLPolicyForURL(const String& url, uint32_t& loadPolicy) 4049 { 4050 loadPolicy = static_cast<uint32_t>(m_loaderClient->resolveWebGLLoadPolicy(*this, url)); 4043 void WebPageProxy::webGLPolicyForURL(URL&& url, Ref<Messages::WebPageProxy::WebGLPolicyForURL::DelayedReply>&& reply) 4044 { 4045 if (m_navigationClient) { 4046 m_navigationClient->webGLLoadPolicy(*this, url, [reply = WTFMove(reply)](WebGLLoadPolicy policy) { 4047 reply->send(static_cast<uint32_t>(policy)); 4048 }); 4049 } else 4050 reply->send(static_cast<uint32_t>(m_loaderClient->webGLLoadPolicy(*this, url))); 4051 } 4052 4053 void WebPageProxy::resolveWebGLPolicyForURL(URL&& url, Ref<Messages::WebPageProxy::ResolveWebGLPolicyForURL::DelayedReply>&& reply) 4054 { 4055 if (m_navigationClient) { 4056 m_navigationClient->resolveWebGLLoadPolicy(*this, url, [reply = WTFMove(reply)](WebGLLoadPolicy policy) { 4057 reply->send(static_cast<uint32_t>(policy)); 4058 }); 4059 } else 4060 reply->send(static_cast<uint32_t>(m_loaderClient->resolveWebGLLoadPolicy(*this, url))); 4051 4061 } 4052 4062 #endif // ENABLE(WEBGL) -
trunk/Source/WebKit/UIProcess/WebPageProxy.h
r221444 r221465 1303 1303 #endif // ENABLE(NETSCAPE_PLUGIN_API) 1304 1304 #if ENABLE(WEBGL) 1305 void webGLPolicyForURL( const String& url, uint32_t& loadPolicy);1306 void resolveWebGLPolicyForURL( const String& url, uint32_t& loadPolicy);1305 void webGLPolicyForURL(WebCore::URL&&, Ref<Messages::WebPageProxy::WebGLPolicyForURL::DelayedReply>&&); 1306 void resolveWebGLPolicyForURL(WebCore::URL&&, Ref<Messages::WebPageProxy::ResolveWebGLPolicyForURL::DelayedReply>&&); 1307 1307 #endif // ENABLE(WEBGL) 1308 1308 void setToolbarsAreVisible(bool toolbarsAreVisible); -
trunk/Source/WebKit/UIProcess/WebPageProxy.messages.in
r221444 r221465 35 35 #endif // ENABLE(NETSCAPE_PLUGIN_API) 36 36 #if ENABLE(WEBGL) 37 WebGLPolicyForURL( String url) -> (uint32_t loadPolicy)38 ResolveWebGLPolicyForURL( String url) -> (uint32_t loadPolicy)37 WebGLPolicyForURL(WebCore::URL url) -> (uint32_t loadPolicy) Delayed 38 ResolveWebGLPolicyForURL(WebCore::URL url) -> (uint32_t loadPolicy) Delayed 39 39 #endif // ENABLE(WEBGL) 40 40 DidChangeViewportProperties(struct WebCore::ViewportAttributes attributes) -
trunk/Source/WebKit/WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp
r221444 r221465 1518 1518 #if ENABLE(WEBGL) 1519 1519 1520 WebCore::WebGLLoadPolicy WebFrameLoaderClient::webGLPolicyForURL(const String& url) const1520 WebCore::WebGLLoadPolicy WebFrameLoaderClient::webGLPolicyForURL(const URL& url) const 1521 1521 { 1522 1522 if (auto* webPage = m_frame->page()) … … 1526 1526 } 1527 1527 1528 WebCore::WebGLLoadPolicy WebFrameLoaderClient::resolveWebGLPolicyForURL(const String& url) const1528 WebCore::WebGLLoadPolicy WebFrameLoaderClient::resolveWebGLPolicyForURL(const URL& url) const 1529 1529 { 1530 1530 if (auto* webPage = m_frame->page()) -
trunk/Source/WebKit/WebProcess/WebCoreSupport/WebFrameLoaderClient.h
r221444 r221465 205 205 206 206 #if ENABLE(WEBGL) 207 WebCore::WebGLLoadPolicy webGLPolicyForURL(const String&) const final;208 WebCore::WebGLLoadPolicy resolveWebGLPolicyForURL(const String&) const final;207 WebCore::WebGLLoadPolicy webGLPolicyForURL(const WebCore::URL&) const final; 208 WebCore::WebGLLoadPolicy resolveWebGLPolicyForURL(const WebCore::URL&) const final; 209 209 #endif // ENABLE(WEBGL) 210 210 -
trunk/Source/WebKit/WebProcess/WebPage/WebPage.cpp
r221456 r221465 820 820 821 821 #if ENABLE(WEBGL) && !PLATFORM(COCOA) 822 WebCore::WebGLLoadPolicy WebPage::webGLPolicyForURL(WebFrame*, const String& /* url */)822 WebCore::WebGLLoadPolicy WebPage::webGLPolicyForURL(WebFrame*, const URL&) 823 823 { 824 824 return WebGLAllowCreation; 825 825 } 826 826 827 WebCore::WebGLLoadPolicy WebPage::resolveWebGLPolicyForURL(WebFrame*, const String& /* url */)827 WebCore::WebGLLoadPolicy WebPage::resolveWebGLPolicyForURL(WebFrame*, const URL&) 828 828 { 829 829 return WebGLAllowCreation; -
trunk/Source/WebKit/WebProcess/WebPage/WebPage.h
r221216 r221465 368 368 369 369 #if ENABLE(WEBGL) 370 WebCore::WebGLLoadPolicy webGLPolicyForURL(WebFrame*, const String&);371 WebCore::WebGLLoadPolicy resolveWebGLPolicyForURL(WebFrame*, const String&);370 WebCore::WebGLLoadPolicy webGLPolicyForURL(WebFrame*, const WebCore::URL&); 371 WebCore::WebGLLoadPolicy resolveWebGLPolicyForURL(WebFrame*, const WebCore::URL&); 372 372 #endif 373 373 -
trunk/Source/WebKit/WebProcess/WebPage/ios/WebPageIOS.mm
r221443 r221465 3285 3285 3286 3286 #if ENABLE(WEBGL) 3287 WebCore::WebGLLoadPolicy WebPage::webGLPolicyForURL(WebFrame*, const String&)3287 WebCore::WebGLLoadPolicy WebPage::webGLPolicyForURL(WebFrame*, const URL&) 3288 3288 { 3289 3289 return WebGLAllowCreation; 3290 3290 } 3291 3291 3292 WebCore::WebGLLoadPolicy WebPage::resolveWebGLPolicyForURL(WebFrame*, const String&)3292 WebCore::WebGLLoadPolicy WebPage::resolveWebGLPolicyForURL(WebFrame*, const URL&) 3293 3293 { 3294 3294 return WebGLAllowCreation; -
trunk/Source/WebKit/WebProcess/WebPage/mac/WebPageMac.mm
r221381 r221465 925 925 926 926 #if ENABLE(WEBGL) 927 WebCore::WebGLLoadPolicy WebPage::webGLPolicyForURL(WebFrame* frame, const String& url)927 WebCore::WebGLLoadPolicy WebPage::webGLPolicyForURL(WebFrame* frame, const URL& url) 928 928 { 929 929 uint32_t policyResult = 0; … … 935 935 } 936 936 937 WebCore::WebGLLoadPolicy WebPage::resolveWebGLPolicyForURL(WebFrame* frame, const String& url)937 WebCore::WebGLLoadPolicy WebPage::resolveWebGLPolicyForURL(WebFrame* frame, const URL& url) 938 938 { 939 939 uint32_t policyResult = 0; -
trunk/Source/WebKitLegacy/mac/ChangeLog
r221381 r221465 1 2017-08-31 Alex Christensen <achristensen@webkit.org> 2 3 Add ObjC SPI corresponding to WKPageLoaderClient's webGLLoadPolicy and resolveWebGLLoadPolicy 4 https://bugs.webkit.org/show_bug.cgi?id=175779 5 <rdar://problem/22367975> 6 7 Reviewed by Tim Horton. 8 9 * WebCoreSupport/WebFrameLoaderClient.h: 10 * WebCoreSupport/WebFrameLoaderClient.mm: 11 (WebFrameLoaderClient::webGLPolicyForURL const): 12 (WebFrameLoaderClient::resolveWebGLPolicyForURL const): 13 1 14 2017-08-30 Andy Estes <aestes@apple.com> 2 15 -
trunk/Source/WebKitLegacy/mac/WebCoreSupport/WebFrameLoaderClient.h
r220857 r221465 212 212 213 213 #if ENABLE(WEBGL) 214 WebCore::WebGLLoadPolicy webGLPolicyForURL(const String&) const final;215 WebCore::WebGLLoadPolicy resolveWebGLPolicyForURL(const String&) const final;214 WebCore::WebGLLoadPolicy webGLPolicyForURL(const WebCore::URL&) const final; 215 WebCore::WebGLLoadPolicy resolveWebGLPolicyForURL(const WebCore::URL&) const final; 216 216 #endif 217 217 -
trunk/Source/WebKitLegacy/mac/WebCoreSupport/WebFrameLoaderClient.mm
r220857 r221465 2147 2147 } 2148 2148 2149 WebCore::WebGLLoadPolicy WebFrameLoaderClient::webGLPolicyForURL(const String&) const2149 WebCore::WebGLLoadPolicy WebFrameLoaderClient::webGLPolicyForURL(const URL&) const 2150 2150 { 2151 2151 return shouldBlockWebGL() ? WebGLBlockCreation : WebGLAllowCreation; 2152 2152 } 2153 2153 2154 WebCore::WebGLLoadPolicy WebFrameLoaderClient::resolveWebGLPolicyForURL(const String&) const2154 WebCore::WebGLLoadPolicy WebFrameLoaderClient::resolveWebGLPolicyForURL(const URL&) const 2155 2155 { 2156 2156 return shouldBlockWebGL() ? WebGLBlockCreation : WebGLAllowCreation; -
trunk/Tools/ChangeLog
r221463 r221465 1 2017-08-31 Alex Christensen <achristensen@webkit.org> 2 3 Add ObjC SPI corresponding to WKPageLoaderClient's webGLLoadPolicy and resolveWebGLLoadPolicy 4 https://bugs.webkit.org/show_bug.cgi?id=175779 5 <rdar://problem/22367975> 6 7 Reviewed by Tim Horton. 8 9 * TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj: 10 * TestWebKitAPI/Tests/WebKitCocoa/WebGLPolicy.mm: Added. 11 (-[WebGLTestDelegate webView:startURLSchemeTask:]): 12 (-[WebGLTestDelegate webView:stopURLSchemeTask:]): 13 (-[WebGLTestDelegate _webView:webGLLoadPolicyForURL:decisionHandler:]): 14 (-[WebGLTestDelegate _webView:resolveWebGLLoadPolicyForURL:decisionHandler:]): 15 (-[WebGLTestDelegate webView:runJavaScriptAlertPanelWithMessage:initiatedByFrame:completionHandler:]): 16 (urlsEqual): 17 (runTest): 18 (TEST): 19 1 20 2017-08-31 Don Olmstead <don.olmstead@sony.com> 2 21 -
trunk/Tools/TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj
r221433 r221465 230 230 5C7964101EB0278D0075D74C /* EventModifiers.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C79640F1EB0269B0075D74C /* EventModifiers.cpp */; }; 231 231 5C838F7F1DB04F900082858F /* LoadInvalidURLRequest.mm in Sources */ = {isa = PBXBuildFile; fileRef = 57901FAE1CAF137100ED64F9 /* LoadInvalidURLRequest.mm */; }; 232 5C973F5C1F58EF8B00359C27 /* WebGLPolicy.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5C973F5B1F58EF0A00359C27 /* WebGLPolicy.mm */; }; 232 233 5C9E56851DF9145400C9EE33 /* WebsitePolicies.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5C9E56841DF9143D00C9EE33 /* WebsitePolicies.mm */; }; 233 234 5C9E56871DF914AE00C9EE33 /* contentBlockerCheck.html in Copy Resources */ = {isa = PBXBuildFile; fileRef = 5C9E56861DF9148E00C9EE33 /* contentBlockerCheck.html */; }; … … 1309 1310 5C726D6E1D3EE06800C5E1A1 /* InstanceMethodSwizzler.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = InstanceMethodSwizzler.mm; path = cocoa/InstanceMethodSwizzler.mm; sourceTree = "<group>"; }; 1310 1311 5C79640F1EB0269B0075D74C /* EventModifiers.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = EventModifiers.cpp; sourceTree = "<group>"; }; 1312 5C973F5B1F58EF0A00359C27 /* WebGLPolicy.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = WebGLPolicy.mm; sourceTree = "<group>"; }; 1311 1313 5C9E56841DF9143D00C9EE33 /* WebsitePolicies.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = WebsitePolicies.mm; sourceTree = "<group>"; }; 1312 1314 5C9E56861DF9148E00C9EE33 /* contentBlockerCheck.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = contentBlockerCheck.html; sourceTree = "<group>"; }; … … 1971 1973 93E943F11CD3E87E00AC08C2 /* VideoControlsManager.mm */, 1972 1974 6356FB211EC4E0BA0044BF18 /* VisibleContentRect.mm */, 1975 5C973F5B1F58EF0A00359C27 /* WebGLPolicy.mm */, 1973 1976 51714EB61CF8C7A4004723C4 /* WebProcessKillIDBCleanup.mm */, 1974 1977 5120C83C1E6750790025B250 /* WebsiteDataStoreCustomPaths.mm */, … … 3360 3363 7C83E04C1D0A641800FEBCF3 /* WebCoreNSURLSession.mm in Sources */, 3361 3364 7CCE7F1A1A411AE600447C4C /* WebCoreStatisticsWithNoWebProcess.cpp in Sources */, 3365 5C973F5C1F58EF8B00359C27 /* WebGLPolicy.mm in Sources */, 3362 3366 7CCE7EAB1A411A2400447C4C /* WebKitAgnosticTest.mm in Sources */, 3363 3367 51714EB81CF8CA17004723C4 /* WebProcessKillIDBCleanup.mm in Sources */,
Note:
See TracChangeset
for help on using the changeset viewer.