RESOLVED FIXED 70654
Rename WKProcessCluster to WKProcessGroup
https://bugs.webkit.org/show_bug.cgi?id=70654
Summary Rename WKProcessCluster to WKProcessGroup
Sam Weinig
Reported 2011-10-21 15:16:13 PDT
Rename WKProcessCluster to WKProcessGroup
Attachments
Patch (24.68 KB, patch)
2011-10-21 15:17 PDT, Sam Weinig
simon.fraser: review+
Sam Weinig
Comment 1 2011-10-21 15:17:21 PDT
WebKit Review Bot
Comment 2 2011-10-21 15:19:43 PDT
Attachment 112030 [details] did not pass style-queue: Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'Source/WebKit2/ChangeLog', u'Source/WebKit..." exit_code: 1 Source/WebKit2/UIProcess/API/mac/WKProcessGroup.h:33: This { should be at the end of the previous line [whitespace/braces] [4] Source/WebKit2/UIProcess/API/mac/WKProcessGroupInternal.h:28: Extra space before ( in function call [whitespace/parens] [4] Total errors found: 2 in 7 files If any of these errors are false positives, please file a bug against check-webkit-style.
Simon Fraser (smfr)
Comment 3 2011-10-21 15:20:17 PDT
Comment on attachment 112030 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=112030&action=review > Source/WebKit2/UIProcess/API/mac/WKProcessGroup.h:37 > +- (id)init; You don't need to declare -init in the header. > Source/WebKit2/UIProcess/API/mac/WKProcessGroup.mm:56 > + _data = [[WKProcessClusterData alloc] init]; Can't we use 'retain' properties for this?
Sam Weinig
Comment 4 2011-10-21 15:25:00 PDT
(In reply to comment #3) > (From update of attachment 112030 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=112030&action=review > > > Source/WebKit2/UIProcess/API/mac/WKProcessGroup.h:37 > > +- (id)init; > > You don't need to declare -init in the header. Will remove. > > Source/WebKit2/UIProcess/API/mac/WKProcessGroup.mm:56 > > + _data = [[WKProcessClusterData alloc] init]; > > Can't we use 'retain' properties for this? Since _data is meant to be @private (will fix this too), I don't think I can use an @property. Once we don't compile the API in the fragile Objective-C ABI, I can use a class extension with a @property though.
Sam Weinig
Comment 5 2011-10-21 15:25:23 PDT
Note You need to log in before you can comment on or make changes to this bug.