WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
211527
Use CocoaColor in more places instead of platform defines
https://bugs.webkit.org/show_bug.cgi?id=211527
Summary
Use CocoaColor in more places instead of platform defines
Wenson Hsieh
Reported
2020-05-06 12:46:34 PDT
SSIA
Attachments
Patch
(17.22 KB, patch)
2020-05-06 14:54 PDT
,
Wenson Hsieh
no flags
Details
Formatted Diff
Diff
Fix bug title
(17.22 KB, patch)
2020-05-06 14:56 PDT
,
Wenson Hsieh
darin
: review+
Details
Formatted Diff
Diff
Patch for landing
(18.67 KB, patch)
2020-05-06 15:48 PDT
,
Wenson Hsieh
ews-feeder
: commit-queue-
Details
Formatted Diff
Diff
Patch for landing
(18.67 KB, patch)
2020-05-06 16:26 PDT
,
Wenson Hsieh
no flags
Details
Formatted Diff
Diff
Show Obsolete
(2)
View All
Add attachment
proposed patch, testcase, etc.
Wenson Hsieh
Comment 1
2020-05-06 14:54:10 PDT
Comment hidden (obsolete)
Created
attachment 398664
[details]
Patch
Wenson Hsieh
Comment 2
2020-05-06 14:56:42 PDT
Created
attachment 398665
[details]
Fix bug title
Darin Adler
Comment 3
2020-05-06 15:05:48 PDT
Comment on
attachment 398665
[details]
Fix bug title View in context:
https://bugs.webkit.org/attachment.cgi?id=398665&action=review
Nice clean up. This is the kind of abstraction I really like. Not sure each of these (CocoaColor, CocoaFont/Descriptor, CocoaImage) should have its own header. Seems like they could share.
> Source/WebKit/Platform/cocoa/CocoaFont.h:29 > +@class NSFont, NSFontDescriptor;
Didn’t even know you could use commas in these! Not sure I would have.
> Source/WebKit/Shared/Cocoa/ArgumentCodersCocoa.mm:103 > + if ([object isKindOfClass:[CocoaColor class]])
I’m tempted in new code to write ".class" instead.
> Source/WebKit/Shared/Cocoa/ArgumentCodersCocoa.mm:434 > + encodeColorInternal(encoder, static_cast<CocoaColor *>(object));
Seems like for the future we need a Objective-C pointer cast that, at least in debug builds, checks the class.
> Source/WebKit/UIProcess/Cocoa/WKSafeBrowsingWarning.h:48 > using ViewType = NSView; > using RectType = NSRect;
Other candidates.
> Source/WebKit/UIProcess/Cocoa/WKSafeBrowsingWarning.mm:57 > using TextViewType = NSTextView; > using ButtonType = NSButton; > using AlignmentType = NSLayoutAttribute; > using SizeType = NSSize;
Other candidates.
Tim Horton
Comment 4
2020-05-06 15:06:13 PDT
Comment on
attachment 398665
[details]
Fix bug title View in context:
https://bugs.webkit.org/attachment.cgi?id=398665&action=review
> Source/WebKit/Platform/cocoa/CocoaFont.h:29 > +@class NSFont, NSFontDescriptor;
1) I know these aren't variable declarations but the multi-line thing still looks surprising. 2) Why not OBJC_CLASS in case these get included in C++ code? (which seems ... likely)
Wenson Hsieh
Comment 5
2020-05-06 15:15:15 PDT
Comment on
attachment 398665
[details]
Fix bug title View in context:
https://bugs.webkit.org/attachment.cgi?id=398665&action=review
>>> Source/WebKit/Platform/cocoa/CocoaFont.h:29 >>> +@class NSFont, NSFontDescriptor; >> >> Didn’t even know you could use commas in these! Not sure I would have. > > 1) I know these aren't variable declarations but the multi-line thing still looks surprising. > 2) Why not OBJC_CLASS in case these get included in C++ code? (which seems ... likely)
(1) We use it in a few public headers! (JSContext.h, WKDOMRange.h) (2) Good point! I’ll change these to be OBJC_CLASS instead.
>> Source/WebKit/Shared/Cocoa/ArgumentCodersCocoa.mm:103 >> + if ([object isKindOfClass:[CocoaColor class]]) > > I’m tempted in new code to write ".class" instead.
👍🏻 Will make that change here, and below (CocoaFont.class).
Wenson Hsieh
Comment 6
2020-05-06 15:22:02 PDT
(In reply to Wenson Hsieh from
comment #5
)
> Comment on
attachment 398665
[details]
> Fix bug title > > View in context: >
https://bugs.webkit.org/attachment.cgi?id=398665&action=review
> > >>> Source/WebKit/Platform/cocoa/CocoaFont.h:29 > >>> +@class NSFont, NSFontDescriptor; > >> > >> Didn’t even know you could use commas in these! Not sure I would have. > > > > 1) I know these aren't variable declarations but the multi-line thing still looks surprising. > > 2) Why not OBJC_CLASS in case these get included in C++ code? (which seems ... likely) > > (1) We use it in a few public headers! (JSContext.h, WKDOMRange.h) > (2) Good point! I’ll change these to be OBJC_CLASS instead.
I’m also going to change existing `@class`s in CocoaImage.h to be OBJC_CLASS as well, for consistency.
> > >> Source/WebKit/Shared/Cocoa/ArgumentCodersCocoa.mm:103 > >> + if ([object isKindOfClass:[CocoaColor class]]) > > > > I’m tempted in new code to write ".class" instead. > > 👍🏻 Will make that change here, and below (CocoaFont.class).
Wenson Hsieh
Comment 7
2020-05-06 15:46:12 PDT
Comment on
attachment 398665
[details]
Fix bug title View in context:
https://bugs.webkit.org/attachment.cgi?id=398665&action=review
>>>> Source/WebKit/Shared/Cocoa/ArgumentCodersCocoa.mm:103 >>>> + if ([object isKindOfClass:[CocoaColor class]]) >>> >>> I’m tempted in new code to write ".class" instead. >> >> 👍🏻 Will make that change here, and below (CocoaFont.class). > >
Unfortunately, I can’t make this change since CocoaColor is a “using" declaration :( I put together this simple snippet in a standalone test case: @class NSString; using MyString = NSString; static Class foo() { return MyString.class; } …attempting to compile this results in: /Volumes/…/foo.mm:16:12: error: expected identifier or '(' return MyString.class; ^ 1 error generated.
Wenson Hsieh
Comment 8
2020-05-06 15:48:19 PDT
Comment hidden (obsolete)
Created
attachment 398677
[details]
Patch for landing
EWS
Comment 9
2020-05-06 16:25:50 PDT
Comment hidden (obsolete)
Patch 398677 does not build
Wenson Hsieh
Comment 10
2020-05-06 16:26:56 PDT
Created
attachment 398681
[details]
Patch for landing
EWS
Comment 11
2020-05-06 16:50:23 PDT
Committed
r261259
: <
https://trac.webkit.org/changeset/261259
> All reviewed patches have been landed. Closing bug and clearing flags on
attachment 398681
[details]
.
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