Bug 50791

Summary: Add CoreIPC coders for CF types
Product: WebKit Reporter: Anders Carlsson <andersca>
Component: New BugsAssignee: Anders Carlsson <andersca>
Status: RESOLVED FIXED    
Severity: Normal    
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Other   
OS: OS X 10.5   
Attachments:
Description Flags
Patch sam: review+

Description Anders Carlsson 2010-12-09 17:10:53 PST
Add CoreIPC coders for CF types
Comment 1 Anders Carlsson 2010-12-09 17:12:59 PST
Created attachment 76139 [details]
Patch
Comment 2 Sam Weinig 2010-12-09 17:21:25 PST
Comment on attachment 76139 [details]
Patch

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

> WebKit2/Platform/CoreIPC/ArgumentDecoder.h:66
> +        COMPILE_ASSERT(sizeof(T) <= sizeof(uint64_t), enum_type_must_not_be_larger_than_64_bits);

You could use COMPILE_ASSERT __is_enum(), in Clang only code.
Comment 3 Anders Carlsson 2010-12-09 17:32:54 PST
Committed r73662: <http://trac.webkit.org/changeset/73662>