Bug 54510 - Implement WKPluginSiteDataManagerGetSitesWithData
Summary: Implement WKPluginSiteDataManagerGetSitesWithData
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: New Bugs (show other bugs)
Version: 528+ (Nightly build)
Hardware: Other OS X 10.5
: P2 Normal
Assignee: Anders Carlsson
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-02-15 16:41 PST by Anders Carlsson
Modified: 2011-02-15 16:50 PST (History)
0 users

See Also:


Attachments
Patch (26.54 KB, patch)
2011-02-15 16:45 PST, Anders Carlsson
jhoneycutt: 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 2011-02-15 16:41:20 PST
Implement WKPluginSiteDataManagerGetSitesWithData
Comment 1 Anders Carlsson 2011-02-15 16:45:42 PST
Created attachment 82550 [details]
Patch
Comment 2 Jon Honeycutt 2011-02-15 16:48:45 PST
Comment on attachment 82550 [details]
Patch

r=me
Comment 3 Anders Carlsson 2011-02-15 16:49:31 PST
Committed r78647: <http://trac.webkit.org/changeset/78647>
Comment 4 Darin Adler 2011-02-15 16:50:01 PST
Comment on attachment 82550 [details]
Patch

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

> Source/WebKit2/UIProcess/Plugins/WebPluginSiteDataManager.cpp:96
> +    RefPtr<ImmutableArray> resultArray = ImmutableArray::adopt(sitesWK);
> +    callback->performCallbackWithReturnValue(resultArray.get());

The local variable here doesn’t seem to do any good.

> Source/WebKit2/UIProcess/Plugins/WebPluginSiteDataManager.h:33
> +#include <wtf/PassRefPtr.h>

Should only need Forward.h since you don’t do anything with PassRefPtr in this header.

> Source/WebKit2/UIProcess/Plugins/WebPluginSiteDataManager.h:39
> +namespace CoreIPC {
> +class ArgumentDecoder;
> +class Connection;
> +class MessageID;
> +}

Yuck, I guess the script is telling you do do this.

> Source/WebKit2/WebProcess/WebProcess.cpp:658
> +    Vector<String> sites;
> +    copyToVector(sitesSet, sites);

Would be nice to sort this. I hate to have an API that returns a vector in a random order.