Changeset 239134 in webkit
- Timestamp:
- Dec 12, 2018, 4:41:21 PM (6 years ago)
- Location:
- trunk
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WTF/ChangeLog
r239093 r239134 1 2018-12-12 Alex Christensen <achristensen@webkit.org> 2 3 Implement safe browsing in WebKit on WatchOS 4 https://bugs.webkit.org/show_bug.cgi?id=192641 5 <rdar://problem/46376188> 6 7 Reviewed by Geoff Garen. 8 9 * wtf/Platform.h: 10 WatchOS has safe browsing, too! 11 1 12 2018-12-11 Fujii Hironori <Hironori.Fujii@sony.com> 2 13 -
trunk/Source/WTF/wtf/Platform.h
r239068 r239134 1438 1438 #endif 1439 1439 1440 #if ( (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101300) || PLATFORM(IOS)) && !defined(__i386__)1440 #if (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101300 && !defined(__i386__)) || PLATFORM(IOS) || PLATFORM(WATCHOS) 1441 1441 #define HAVE_SAFE_BROWSING 1 1442 1442 #endif -
trunk/Source/WebKit/ChangeLog
r239133 r239134 1 2018-12-12 Alex Christensen <achristensen@webkit.org> 2 3 Implement safe browsing in WebKit on WatchOS 4 https://bugs.webkit.org/show_bug.cgi?id=192641 5 <rdar://problem/46376188> 6 7 Reviewed by Geoff Garen. 8 9 WatchOS has a few special requirements: 10 1. The margin size needs to be smaller and the title font smaller to fit on the screen. 11 2. The exclamation point cannot be beside the title or it won't fit on the screen. I put it above the title. 12 3. The application must be told when the safe browsing warning has been shown. I added a new delegate callback. 13 4. The UIScrollView's contentSize must be set even before the details are shown to be able to scroll down to the buttons. 14 This was already an issue on small WKWebViews on iOS, so this fixes both operating systems. 15 16 * Configurations/WebKit.xcconfig: 17 * UIProcess/API/APIUIClient.h: 18 (API::UIClient::didShowSafeBrowsingWarning): 19 * UIProcess/API/Cocoa/WKUIDelegatePrivate.h: 20 * UIProcess/Cocoa/UIDelegate.h: 21 * UIProcess/Cocoa/UIDelegate.mm: 22 (WebKit::UIDelegate::setDelegate): 23 (WebKit::UIDelegate::UIClient::didShowSafeBrowsingWarning): 24 * UIProcess/Cocoa/WKSafeBrowsingWarning.mm: 25 (fontOfSize): 26 (buttonSize): 27 (-[WKSafeBrowsingWarning addContent]): 28 (-[WKSafeBrowsingWarning showDetailsClicked]): 29 (-[WKSafeBrowsingWarning updateContentSize]): 30 (buttonWidth): Deleted. 31 * UIProcess/WebPageProxy.cpp: 32 (WebKit::WebPageProxy::decidePolicyForNavigationAction): 33 1 34 2018-12-12 Commit Queue <commit-queue@webkit.org> 2 35 -
trunk/Source/WebKit/Configurations/WebKit.xcconfig
r238849 r239134 112 112 WK_SAFE_BROWSING_LDFLAGS_iphoneos = -framework SafariSafeBrowsing; 113 113 WK_SAFE_BROWSING_LDFLAGS_iphonesimulator = -framework SafariSafeBrowsing; 114 WK_SAFE_BROWSING_LDFLAGS_watchos = -framework SafariSafeBrowsing; 115 WK_SAFE_BROWSING_LDFLAGS_watchsimulator = -framework SafariSafeBrowsing; 114 116 WK_SAFE_BROWSING_LDFLAGS_iphoneos[sdk=iphone*10.*] = ; 115 117 WK_SAFE_BROWSING_LDFLAGS_iphonesimulator[sdk=iphone*10.*] = ; -
trunk/Source/WebKit/UIProcess/API/APIUIClient.h
r238771 r239134 181 181 182 182 virtual void didExceedBackgroundResourceLimitWhileInForeground(WebKit::WebPageProxy&, WKResourceLimit) { } 183 184 virtual void didShowSafeBrowsingWarning() { } 183 185 }; 184 186 -
trunk/Source/WebKit/UIProcess/API/Cocoa/WKUIDelegatePrivate.h
r239049 r239134 100 100 - (void)_webViewRequestPointerLock:(WKWebView *)webView WK_API_AVAILABLE(macosx(10.12.3)); 101 101 - (void)_webViewDidRequestPointerLock:(WKWebView *)webView completionHandler:(void (^)(BOOL))completionHandler WK_API_AVAILABLE(macosx(WK_MAC_TBA), ios(WK_IOS_TBA)); 102 - (void)_webViewDidShowSafeBrowsingWarning:(WKWebView *)webView WK_API_AVAILABLE(macosx(WK_MAC_TBA), ios(WK_IOS_TBA)); 102 103 - (void)_webViewDidLosePointerLock:(WKWebView *)webView WK_API_AVAILABLE(macosx(10.12.3)); 103 104 - (void)_webView:(WKWebView *)webView hasVideoInPictureInPictureDidChange:(BOOL)hasVideoInPictureInPicture WK_API_AVAILABLE(macosx(10.13), ios(11.0)); -
trunk/Source/WebKit/UIProcess/Cocoa/UIDelegate.h
r238771 r239134 147 147 148 148 void imageOrMediaDocumentSizeChanged(const WebCore::IntSize&) final; 149 void didShowSafeBrowsingWarning() final; 149 150 150 151 UIDelegate& m_uiDelegate; … … 223 224 #endif 224 225 bool webViewHasVideoInPictureInPictureDidChange : 1; 226 bool webViewDidShowSafeBrowsingWarning : 1; 225 227 } m_delegateMethods; 226 228 }; -
trunk/Source/WebKit/UIProcess/Cocoa/UIDelegate.mm
r239078 r239134 170 170 171 171 m_delegateMethods.webViewHasVideoInPictureInPictureDidChange = [delegate respondsToSelector:@selector(_webView:hasVideoInPictureInPictureDidChange:)]; 172 m_delegateMethods.webViewDidShowSafeBrowsingWarning = [delegate respondsToSelector:@selector(_webViewDidShowSafeBrowsingWarning:)]; 172 173 } 173 174 … … 1218 1219 #endif 1219 1220 1221 void UIDelegate::UIClient::didShowSafeBrowsingWarning() 1222 { 1223 if (!m_uiDelegate.m_delegateMethods.webViewDidShowSafeBrowsingWarning) 1224 return; 1225 1226 auto delegate = m_uiDelegate.m_delegate.get(); 1227 if (!delegate) 1228 return; 1229 1230 [static_cast<id <WKUIDelegatePrivate>>(delegate) _webViewDidShowSafeBrowsingWarning:m_uiDelegate.m_webView]; 1231 } 1232 1220 1233 void UIDelegate::UIClient::hasVideoInPictureInPictureDidChange(WebPageProxy*, bool hasVideoInPictureInPicture) 1221 1234 { -
trunk/Source/WebKit/UIProcess/Cocoa/WKSafeBrowsingWarning.mm
r239078 r239134 37 37 constexpr CGFloat boxCornerRadius = 6; 38 38 #if HAVE(SAFE_BROWSING) 39 #if PLATFORM(WATCHOS) 40 constexpr CGFloat marginSize = 10; 41 #else 39 42 constexpr CGFloat marginSize = 20; 43 #endif 40 44 constexpr CGFloat maxWidth = 675; 41 45 #endif … … 86 90 switch (size) { 87 91 case WarningTextSize::Title: 92 #if PLATFORM(WATCHOS) 93 return [UIFont preferredFontForTextStyle:UIFontTextStyleHeadline]; 94 #else 88 95 return [UIFont preferredFontForTextStyle:UIFontTextStyleLargeTitle]; 96 #endif 89 97 case WarningTextSize::Body: 90 98 return [UIFont preferredFontForTextStyle:UIFontTextStyleBody]; … … 221 229 222 230 #if HAVE(SAFE_BROWSING) 223 static CG Float buttonWidth(ButtonType *button)224 { 225 #if PLATFORM(MAC) 226 return button.frame.size .width;227 #else 228 return button.titleLabel.intrinsicContentSize .width;231 static CGSize buttonSize(ButtonType *button) 232 { 233 #if PLATFORM(MAC) 234 return button.frame.size; 235 #else 236 return button.titleLabel.intrinsicContentSize; 229 237 #endif 230 238 } … … 302 310 [self addSubview:box]; 303 311 312 #if PLATFORM(WATCHOS) 313 [NSLayoutConstraint activateConstraints:@[ 314 [[box.leadingAnchor anchorWithOffsetToAnchor:exclamationPoint.leadingAnchor] constraintEqualToAnchor:[exclamationPoint.trailingAnchor anchorWithOffsetToAnchor:box.trailingAnchor]], 315 [[box.leadingAnchor anchorWithOffsetToAnchor:title.leadingAnchor] constraintEqualToConstant:marginSize], 316 [[title.bottomAnchor anchorWithOffsetToAnchor:warning.topAnchor] constraintEqualToConstant:marginSize], 317 [[exclamationPoint.bottomAnchor anchorWithOffsetToAnchor:title.topAnchor] constraintEqualToConstant:marginSize], 318 [[box.topAnchor anchorWithOffsetToAnchor:exclamationPoint.topAnchor] constraintEqualToConstant:marginSize + self.frame.size.height / 2], 319 [[self.topAnchor anchorWithOffsetToAnchor:box.topAnchor] constraintEqualToAnchor:[box.bottomAnchor anchorWithOffsetToAnchor:self.bottomAnchor] multiplier:0.2], 320 ]]; 321 #elif HAVE(SAFE_BROWSING) 322 [NSLayoutConstraint activateConstraints:@[ 323 [[box.leadingAnchor anchorWithOffsetToAnchor:exclamationPoint.leadingAnchor] constraintEqualToConstant:marginSize], 324 [[box.leadingAnchor anchorWithOffsetToAnchor:title.leadingAnchor] constraintEqualToConstant:marginSize * 1.5 + exclamationPointSize], 325 [[title.topAnchor anchorWithOffsetToAnchor:exclamationPoint.topAnchor] constraintEqualToAnchor:[exclamationPoint.bottomAnchor anchorWithOffsetToAnchor:title.bottomAnchor]], 326 [[title.bottomAnchor anchorWithOffsetToAnchor:warning.topAnchor] constraintEqualToConstant:marginSize], 327 [[box.topAnchor anchorWithOffsetToAnchor:title.topAnchor] constraintEqualToConstant:marginSize], 328 [[self.topAnchor anchorWithOffsetToAnchor:box.topAnchor] constraintEqualToAnchor:[box.bottomAnchor anchorWithOffsetToAnchor:self.bottomAnchor] multiplier:0.5], 329 ]]; 330 #endif 331 304 332 #if HAVE(SAFE_BROWSING) 305 333 [NSLayoutConstraint activateConstraints:@[ 306 [[self.topAnchor anchorWithOffsetToAnchor:box.topAnchor] constraintEqualToAnchor:[box.bottomAnchor anchorWithOffsetToAnchor:self.bottomAnchor] multiplier:0.5],307 334 [[self.leftAnchor anchorWithOffsetToAnchor:box.leftAnchor] constraintEqualToAnchor:[box.rightAnchor anchorWithOffsetToAnchor:self.rightAnchor]], 308 335 … … 310 337 [box.widthAnchor constraintLessThanOrEqualToAnchor:self.widthAnchor], 311 338 312 [[box.leadingAnchor anchorWithOffsetToAnchor:exclamationPoint.leadingAnchor] constraintEqualToConstant:marginSize],313 [[box.leadingAnchor anchorWithOffsetToAnchor:title.leadingAnchor] constraintEqualToConstant:marginSize * 1.5 + exclamationPointSize],314 339 [[box.leadingAnchor anchorWithOffsetToAnchor:warning.leadingAnchor] constraintEqualToConstant:marginSize], 315 340 … … 318 343 [[goBack.trailingAnchor anchorWithOffsetToAnchor:box.trailingAnchor] constraintEqualToConstant:marginSize], 319 344 320 [[title.topAnchor anchorWithOffsetToAnchor:exclamationPoint.topAnchor] constraintEqualToAnchor:[exclamationPoint.bottomAnchor anchorWithOffsetToAnchor:title.bottomAnchor]],321 322 [[box.topAnchor anchorWithOffsetToAnchor:title.topAnchor] constraintEqualToConstant:marginSize],323 [[title.bottomAnchor anchorWithOffsetToAnchor:warning.topAnchor] constraintEqualToConstant:marginSize],324 345 [[warning.bottomAnchor anchorWithOffsetToAnchor:goBack.topAnchor] constraintEqualToConstant:marginSize], 325 346 ]]; 326 347 327 bool needsVerticalButtonLayout = button Width(showDetails) + buttonWidth(goBack)+ 3 * marginSize > self.frame.size.width;348 bool needsVerticalButtonLayout = buttonSize(showDetails).width + buttonSize(goBack).width + 3 * marginSize > self.frame.size.width; 328 349 if (needsVerticalButtonLayout) { 329 350 [NSLayoutConstraint activateConstraints:@[ 330 351 [[showDetails.trailingAnchor anchorWithOffsetToAnchor:box.trailingAnchor] constraintEqualToConstant:marginSize], 331 352 [[goBack.bottomAnchor anchorWithOffsetToAnchor:showDetails.topAnchor] constraintEqualToConstant:marginSize], 332 [[goBack.bottomAnchor anchorWithOffsetToAnchor:box.bottomAnchor] constraintEqualToConstant:marginSize * 2 + showDetails.frame.size.height],353 [[goBack.bottomAnchor anchorWithOffsetToAnchor:box.bottomAnchor] constraintEqualToConstant:marginSize * 2 + buttonSize(showDetails).height], 333 354 ]]; 334 355 } else { … … 339 360 ]]; 340 361 } 362 #if !PLATFORM(MAC) 363 [self updateContentSize]; 364 #endif 341 365 #endif 342 366 } … … 393 417 [self layoutText]; 394 418 #if !PLATFORM(MAC) 419 [self updateContentSize]; 420 #endif 421 } 422 423 #if !PLATFORM(MAC) 424 - (void)updateContentSize 425 { 395 426 [self layoutIfNeeded]; 396 427 CGFloat height = 0; … … 398 429 height += subview.frame.size.height; 399 430 [self setContentSize: { self.frame.size.width, self.frame.size.height / 2 + height }]; 400 #endif 401 } 431 } 432 #endif 402 433 403 434 - (void)layoutText -
trunk/Source/WebKit/UIProcess/WebPageProxy.cpp
r239133 r239134 4324 4324 }); 4325 4325 }); 4326 m_uiClient->didShowSafeBrowsingWarning(); 4326 4327 return; 4327 4328 } -
trunk/Tools/ChangeLog
r239123 r239134 1 2018-12-12 Alex Christensen <achristensen@webkit.org> 2 3 Implement safe browsing in WebKit on WatchOS 4 https://bugs.webkit.org/show_bug.cgi?id=192641 5 <rdar://problem/46376188> 6 7 Reviewed by Geoff Garen. 8 9 * TestWebKitAPI/Tests/WebKitCocoa/SafeBrowsing.mm: 10 (-[SafeBrowsingNavigationDelegate _webViewDidShowSafeBrowsingWarning:]): 11 (safeBrowsingView): 12 Add a test that the new delegate callback is called. 13 1 14 2018-12-12 Michael Catanzaro <mcatanzaro@igalia.com> 2 15 -
trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/SafeBrowsing.mm
r238921 r239134 33 33 #import "TestWKWebView.h" 34 34 #import <WebKit/WKNavigationDelegate.h> 35 #import <WebKit/WKUIDelegatePrivate.h> 35 36 #import <WebKit/WKWebViewPrivate.h> 36 37 #import <wtf/RetainPtr.h> 37 38 38 39 static bool committedNavigation; 39 40 @interface SafeBrowsingNavigationDelegate : NSObject <WKNavigationDelegate> 40 static bool warningShown; 41 42 @interface SafeBrowsingNavigationDelegate : NSObject <WKNavigationDelegate, WKUIDelegatePrivate> 41 43 @end 42 44 … … 46 48 { 47 49 committedNavigation = true; 50 } 51 52 - (void)_webViewDidShowSafeBrowsingWarning:(WKWebView *)webView 53 { 54 warningShown = true; 48 55 } 49 56 … … 174 181 auto webView = adoptNS([WKWebView new]); 175 182 [webView setNavigationDelegate:delegate.get()]; 183 [webView setUIDelegate:delegate.get()]; 176 184 [webView loadRequest:[NSURLRequest requestWithURL:resourceURL(@"simple")]]; 185 EXPECT_FALSE(warningShown); 177 186 while (![webView _safeBrowsingWarning]) 178 187 TestWebKitAPI::Util::spinRunLoop(); 188 EXPECT_TRUE(warningShown); 179 189 #if !PLATFORM(MAC) 180 190 [[webView _safeBrowsingWarning] didMoveToWindow];
Note:
See TracChangeset
for help on using the changeset viewer.