RESOLVED FIXED 193049
Move WKEditCommandObjC and WKEditorUndoTargetObjC into a separate file
https://bugs.webkit.org/show_bug.cgi?id=193049
Summary Move WKEditCommandObjC and WKEditorUndoTargetObjC into a separate file
Wenson Hsieh
Reported 2018-12-28 12:12:08 PST
The interfaces and implementations for these two Objective-C objects are currently in both PageClientIOS and WebViewImpl, with nearly identical code. We should de-duplicate this logic.
Attachments
Patch (19.98 KB, patch)
2018-12-28 13:03 PST, Wenson Hsieh
sam: review+
Patch for EWS (20.36 KB, patch)
2018-12-28 19:59 PST, Wenson Hsieh
no flags
Patch for EWS (20.37 KB, patch)
2018-12-28 20:26 PST, Wenson Hsieh
no flags
Wenson Hsieh
Comment 1 2018-12-28 13:03:20 PST
Sam Weinig
Comment 2 2018-12-28 17:12:04 PST
Comment on attachment 358121 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=358121&action=review > Source/WebKit/ChangeLog:15 > + Rename WKEditCommandObjC to WKEditCommand, and WKEditorUndoTarget to WKEditorUndoTargetObjC. The ObjC suffix in Looks like you have this phrase backwards: "WKEditorUndoTarget to WKEditorUndoTargetObjC". > Source/WebKit/UIProcess/Cocoa/WKEditCommand.h:36 > + RefPtr<WebKit::WebEditCommandProxy> m_command; This member should go in the implementation file. > Source/WebKit/UIProcess/Cocoa/WKEditCommand.h:38 > +- (instancetype)initWithWebEditCommandProxy:(Ref<WebKit::WebEditCommandProxy>&&)command; I think you probably also want something like: - (instancetype)init NS_UNAVAILABLE; > Source/WebKit/UIProcess/Cocoa/WKEditCommand.h:39 > +- (WebKit::WebEditCommandProxy*)command; Can this ever be null? If not, return a reference? > Source/WebKit/UIProcess/Cocoa/WKEditCommand.h:45 > +@interface WKEditorUndoTarget : NSObject > +- (void)undoEditing:(id)sender; > +- (void)redoEditing:(id)sender; > +@end My instinct is that this should have it's own file, but it is very closely tied to WKEditCommand. Perhaps a comment explaining why it's here would help.
Wenson Hsieh
Comment 3 2018-12-28 19:43:27 PST
Comment on attachment 358121 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=358121&action=review >> Source/WebKit/ChangeLog:15 >> + Rename WKEditCommandObjC to WKEditCommand, and WKEditorUndoTarget to WKEditorUndoTargetObjC. The ObjC suffix in > > Looks like you have this phrase backwards: "WKEditorUndoTarget to WKEditorUndoTargetObjC". Oops, that's right. Fixed! >> Source/WebKit/UIProcess/Cocoa/WKEditCommand.h:36 >> + RefPtr<WebKit::WebEditCommandProxy> m_command; > > This member should go in the implementation file. Moved to the @implementation. >> Source/WebKit/UIProcess/Cocoa/WKEditCommand.h:38 >> +- (instancetype)initWithWebEditCommandProxy:(Ref<WebKit::WebEditCommandProxy>&&)command; > > I think you probably also want something like: > - (instancetype)init NS_UNAVAILABLE; Marked -init as unavailable. >> Source/WebKit/UIProcess/Cocoa/WKEditCommand.h:39 >> +- (WebKit::WebEditCommandProxy*)command; > > Can this ever be null? If not, return a reference? Good catch, this should always be nonnull. Made this a WebEditCommandProxy&, and updated the call sites. >> Source/WebKit/UIProcess/Cocoa/WKEditCommand.h:45 >> +@end > > My instinct is that this should have it's own file, but it is very closely tied to WKEditCommand. Perhaps a comment explaining why it's here would help. Sounds good, I'll clarify this with a comment.
Wenson Hsieh
Comment 4 2018-12-28 19:59:04 PST
Created attachment 358130 [details] Patch for EWS
Wenson Hsieh
Comment 5 2018-12-28 20:21:42 PST
Comment on attachment 358121 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=358121&action=review >>> Source/WebKit/UIProcess/Cocoa/WKEditCommand.h:36 >>> + RefPtr<WebKit::WebEditCommandProxy> m_command; >> >> This member should go in the implementation file. > > Moved to the @implementation. On second thought, this seems to break the 32-bit build :( I'll move it back to the @interface { } for now, but at least added a @private so that nothing can access the ivar directly using ->.
Wenson Hsieh
Comment 6 2018-12-28 20:26:01 PST
Created attachment 358131 [details] Patch for EWS
WebKit Commit Bot
Comment 7 2018-12-28 21:50:13 PST
Comment on attachment 358131 [details] Patch for EWS Clearing flags on attachment: 358131 Committed r239558: <https://trac.webkit.org/changeset/239558>
Radar WebKit Bug Importer
Comment 8 2018-12-28 22:25:23 PST
Note You need to log in before you can comment on or make changes to this bug.