WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
201864
Remove the "Show Link Previews" and "Hide Link Previews" action menus in the preview platter
https://bugs.webkit.org/show_bug.cgi?id=201864
Summary
Remove the "Show Link Previews" and "Hide Link Previews" action menus in the ...
Dean Jackson
Reported
2019-09-17 01:03:34 PDT
Remove the "Show Link Previews" and "Hide Link Previews" action menus in the preview platter
Attachments
Patch
(7.67 KB, patch)
2019-09-17 01:09 PDT
,
Dean Jackson
no flags
Details
Formatted Diff
Diff
Patch
(9.25 KB, patch)
2019-09-17 01:31 PDT
,
Dean Jackson
simon.fraser
: review+
Details
Formatted Diff
Diff
Show Obsolete
(1)
View All
Add attachment
proposed patch, testcase, etc.
Dean Jackson
Comment 1
2019-09-17 01:05:07 PDT
<
rdar://55190038
>
Dean Jackson
Comment 2
2019-09-17 01:09:26 PDT
Created
attachment 378948
[details]
Patch
Dean Jackson
Comment 3
2019-09-17 01:31:21 PDT
Created
attachment 378949
[details]
Patch
Simon Fraser (smfr)
Comment 4
2019-09-17 01:51:10 PDT
Comment on
attachment 378949
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=378949&action=review
> Source/WebKit/ChangeLog:5 > +
https://bugs.webkit.org/show_bug.cgi?id=201864
> +
Missing radar number.
> Tools/TestWebKitAPI/Tests/WebKitCocoa/ContextMenus.mm:262 > + return [UIViewController new];
autorelease?
Dean Jackson
Comment 5
2019-09-17 02:04:30 PDT
Committed
r249950
: <
https://trac.webkit.org/changeset/249950
>
Aakash Jain
Comment 6
2019-09-17 08:27:24 PDT
(In reply to Dean Jackson from
comment #5
)
> Committed
r249950
: <
https://trac.webkit.org/changeset/249950
>
This seems to have broken the iOS build, as also indicated the EWS.
Aakash Jain
Comment 7
2019-09-17 08:27:33 PDT
This seems to be the relevant build error: /Volumes/Data/worker/iOS-12-Build-EWS/build/Source/WebKit/UIProcess/API/Cocoa/_WKElementAction.mm:167:10: error: variable 'handler' is used uninitialized whenever switch case is taken [-Werror,-Wsometimes-uninitialized] case _WKElementActionToggleShowLinkPreviews: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /Volumes/Data/worker/iOS-12-Build-EWS/build/Source/WebKit/UIProcess/API/Cocoa/_WKElementAction.mm:175:92: note: uninitialized use occurs here return [[[self alloc] _initWithTitle:(customTitle ? customTitle : title) actionHandler:handler type:type assistant:assistant] autorelease]; ^~~~~~~ /Volumes/Data/worker/iOS-12-Build-EWS/build/Source/WebKit/UIProcess/API/Cocoa/_WKElementAction.mm:125:36: note: did you mean to use __block 'handler'? WKElementActionHandlerInternal handler; ^ __block 1 error generated.
Truitt Savell
Comment 8
2019-09-17 09:03:13 PDT
Reverted
r249950
for reason: Broke the iOS build. Committed
r249956
: <
https://trac.webkit.org/changeset/249956
>
Dean Jackson
Comment 9
2019-09-17 18:21:01 PDT
Committed
r250015
: <
https://trac.webkit.org/changeset/250015
>
David Kilzer (:ddkilzer)
Comment 10
2019-09-30 18:03:18 PDT
(In reply to Dean Jackson from
comment #9
)
> Committed
r250015
: <
https://trac.webkit.org/changeset/250015
>
The build fix was this: diff --git a/Source/WebKit/UIProcess/API/Cocoa/_WKElementAction.mm b/Source/WebKit/UIProcess/API/Cocoa/_WKElementAction. mm index 4b5ff1bec28..31ec821c9b7 100644 --- a/Source/WebKit/UIProcess/API/Cocoa/_WKElementAction.mm +++ b/Source/WebKit/UIProcess/API/Cocoa/_WKElementAction.mm @@ -121,8 +121,8 @@ + (instancetype)_elementActionWithType:(_WKElementActionType)type title:(NSStrin + (instancetype)_elementActionWithType:(_WKElementActionType)type customTitle:(NSString *)customTitle assistant:(WKActionSheetAssistant *)assistant { - NSString *title; - WKElementActionHandlerInternal handler; + NSString *title = @""; + WKElementActionHandlerInternal handler = nil; switch (type) { case _WKElementActionTypeCopy: title = WEB_UI_STRING_KEY("Copy", "Copy (ActionSheet)", "Title for Copy Link or Image action button"); @@ -164,17 +164,9 @@ + (instancetype)_elementActionWithType:(_WKElementActionType)type customTitle:(N [assistant.delegate actionSheetAssistant:assistant shareElementWithURL:actionInfo.URL ?: actionInfo.imageURL rect:actionInfo.boundingRect]; }; break; - case _WKElementActionToggleShowLinkPreviews: { - bool showingLinkPreviews = true; - if (NSNumber *value = [[NSUserDefaults standardUserDefaults] objectForKey:webkitShowLinkPreviewsPreferenceKey]) - showingLinkPreviews = value.boolValue; - - title = showingLinkPreviews ? WEB_UI_STRING("Hide Link Previews", "Title for Hide Link Previews action button") : WEB_UI_STRING("Show Link Previews", "Title for Show Link Previews action button"); - handler = ^(WKActionSheetAssistant *, _WKActivatedElementInfo *) { - [[NSUserDefaults standardUserDefaults] setBool:!showingLinkPreviews forKey:webkitShowLinkPreviewsPreferenceKey]; - }; + case _WKElementActionToggleShowLinkPreviews: + // This action must still exist for compatibility, but doesn't do anything. break; - } default: [NSException raise:NSInvalidArgumentException format:@"There is no standard web element action of type %ld.", (long)type]; return nil; Wouldn't it be better to do this instead so `handler` is not nil (which would cause a crash if `handler` was invoked without a nullptr check--as it is in this class), and future case statements that don't set these variables get a warning/build failure? diff --git a/Source/WebKit/UIProcess/API/Cocoa/_WKElementAction.mm b/Source/WebKit/UIProcess/API/Cocoa/_WKElementAction.mm index 31ec821c9b7..b4b701408f5 100644 --- a/Source/WebKit/UIProcess/API/Cocoa/_WKElementAction.mm +++ b/Source/WebKit/UIProcess/API/Cocoa/_WKElementAction.mm @@ -121,8 +121,8 @@ + (instancetype)_elementActionWithType:(_WKElementActionType)type title:(NSStrin + (instancetype)_elementActionWithType:(_WKElementActionType)type customTitle:(NSString *)customTitle assistant:(WKActionSheetAssistant *)assistant { - NSString *title = @""; - WKElementActionHandlerInternal handler = nil; + NSString *title; + WKElementActionHandlerInternal handler; switch (type) { case _WKElementActionTypeCopy: title = WEB_UI_STRING_KEY("Copy", "Copy (ActionSheet)", "Title for Copy Link or Image action button"); @@ -166,6 +166,8 @@ + (instancetype)_elementActionWithType:(_WKElementActionType)type customTitle:(N break; case _WKElementActionToggleShowLinkPreviews: // This action must still exist for compatibility, but doesn't do anything. + title = @""; + handler = ^(WKActionSheetAssistant *assistant, _WKActivatedElementInfo *actionInfo) { }; break; default: [NSException raise:NSInvalidArgumentException format:@"There is no standard web element action of type %ld.", (long)type];
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug