Bug 124948

Summary: Make WKBrowsingContextGroup work with WKObject wrapping
Product: WebKit Reporter: Sam Weinig <sam>
Component: New BugsAssignee: Sam Weinig <sam>
Status: RESOLVED FIXED    
Severity: Normal CC: commit-queue
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch mitz: review+

Description Sam Weinig 2013-11-27 13:24:26 PST
Make WKBrowsingContextGroup work with WKObject wrapping
Comment 1 Sam Weinig 2013-11-27 13:32:10 PST
Created attachment 217966 [details]
Patch
Comment 2 WebKit Commit Bot 2013-11-27 13:33:58 PST
Attachment 217966 [details] did not pass style-queue:

Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'Source/WebKit2/ChangeLog', u'Source/WebKit2/Shared/APIObject.h', u'Source/WebKit2/Shared/Cocoa/APIObject.mm', u'Source/WebKit2/UIProcess/API/mac/WKBrowsingContextGroup.mm', u'Source/WebKit2/UIProcess/API/mac/WKBrowsingContextGroupInternal.h', u'Source/WebKit2/UIProcess/WebPageGroup.cpp', u'Source/WebKit2/UIProcess/WebPageGroup.h', u'Source/WebKit2/WebKit2.xcodeproj/project.pbxproj']" exit_code: 1
Source/WebKit2/Shared/APIObject.h:173:  Missing spaces around &&  [whitespace/operators] [3]
Total errors found: 1 in 8 files


If any of these errors are false positives, please file a bug against check-webkit-style.
Comment 3 mitz 2013-11-27 13:39:51 PST
Comment on attachment 217966 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=217966&action=review

> Source/WebKit2/UIProcess/API/mac/WKBrowsingContextGroup.mm:30
>  #if WK_API_ENABLED

Can we remove some of the following imports, now that we don’t use C SPI here?

> Source/WebKit2/UIProcess/API/mac/WKBrowsingContextGroup.mm:56
> +#pragma mark WKObject protocol implementation
> +
> +- (API::Object&)_apiObject
> +{
> +    return *reinterpret_cast<API::Object*>(&_pageGroup);
> +}
> +

I’d stick this at the bottom (then it’s also clear that the following methods aren’t part of WKObject conformance. Or use “#pragma mark -” to separate the rest.
Comment 4 Sam Weinig 2013-11-27 14:45:52 PST
Committed r159824: <http://trac.webkit.org/changeset/159824>