Bug 124384 - Replace calls to deprecated CFPropertyList functions in WebKit2
Summary: Replace calls to deprecated CFPropertyList functions in WebKit2
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: New Bugs (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Andy Estes
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-11-14 15:49 PST by Andy Estes
Modified: 2013-11-14 16:09 PST (History)
0 users

See Also:


Attachments
Replace calls to deprecated CFPropertyList functions in WebKit2 (2.49 KB, patch)
2013-11-14 15:59 PST, Andy Estes
andersca: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Andy Estes 2013-11-14 15:49:36 PST
Replace calls to deprecated CFPropertyList functions in WebKit2
Comment 1 Andy Estes 2013-11-14 15:59:01 PST
Created attachment 216992 [details]
Replace calls to deprecated CFPropertyList functions in WebKit2
Comment 2 Anders Carlsson 2013-11-14 16:02:39 PST
Comment on attachment 216992 [details]
Replace calls to deprecated CFPropertyList functions in WebKit2

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

> Source/WebKit2/UIProcess/cf/WebPageProxyCF.cpp:123
> +    RetainPtr<CFPropertyListRef> propertyList = adoptCF(CFPropertyListCreateWithData(0, data.get(), kCFPropertyListImmutable, 0, &propertyListError));

Can change this to 

auto propertyList =
Comment 3 Andy Estes 2013-11-14 16:09:36 PST
Committed r159319: <http://trac.webkit.org/changeset/159319>