WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
Bug 44221
Add ability to get all the keys from a WKDictionaryRef
https://bugs.webkit.org/show_bug.cgi?id=44221
Summary
Add ability to get all the keys from a WKDictionaryRef
Sam Weinig
Reported
2010-08-18 17:07:06 PDT
Add ability to get all the keys from a WKDictionaryRef
Attachments
Patch
(3.72 KB, patch)
2010-08-18 17:07 PDT
,
Sam Weinig
aroben
: review+
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Sam Weinig
Comment 1
2010-08-18 17:07:53 PDT
Created
attachment 64790
[details]
Patch
Adam Roben (:aroben)
Comment 2
2010-08-18 21:41:19 PDT
Comment on
attachment 64790
[details]
Patch
> +PassRefPtr<ImmutableArray> ImmutableDictionary::keys()
Can this be a const member function?
> + size_t size = m_map.size(); > + if (!size)
I thought we used isEmpty() for things like this.
> + APIObject** array = new APIObject*[size];
I think using OwnArrayPtr would be better. Or, if not, why not make the type APIObject*[]?
> + return ImmutableArray::adopt(array, size);
And this should take a PassOwnPtr! r=me
Sam Weinig
Comment 3
2010-08-19 08:48:24 PDT
Landed in
r65675
.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug