Bug 145818 - Add code to keep track of plug-in data host names in website data records
Summary: Add code to keep track of plug-in data host names in website data records
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: Anders Carlsson
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-06-09 15:00 PDT by Anders Carlsson
Modified: 2015-06-09 16:41 PDT (History)
0 users

See Also:


Attachments
Patch (6.62 KB, patch)
2015-06-09 15:01 PDT, Anders Carlsson
kling: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Anders Carlsson 2015-06-09 15:00:45 PDT
Add code to keep track of plug-in data host names in website data records
Comment 1 Anders Carlsson 2015-06-09 15:01:32 PDT
Created attachment 254606 [details]
Patch
Comment 2 Andreas Kling 2015-06-09 15:03:20 PDT
Comment on attachment 254606 [details]
Patch

r=me
Comment 3 Anders Carlsson 2015-06-09 15:13:12 PDT
Committed r185386: <http://trac.webkit.org/changeset/185386>
Comment 4 Darin Adler 2015-06-09 16:41:25 PDT
Comment on attachment 254606 [details]
Patch

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

> Source/WebKit2/UIProcess/WebsiteData/WebsiteDataRecord.cpp:65
> +#if ENABLE(PUBLIC_SUFFIX_LIST)
> +    return WebCore::topPrivatelyControlledDomain(hostName);
> +#endif
> +
> +    return String();

How about #else here instead of return, return?