Bug 137736 - Use std::unique_ptr for CachedResource
Summary: Use std::unique_ptr for CachedResource
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebCore Misc. (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Gyuyoung Kim
URL:
Keywords:
Depends on:
Blocks: 128007
  Show dependency treegraph
 
Reported: 2014-10-15 01:38 PDT by Gyuyoung Kim
Modified: 2014-11-23 18:25 PST (History)
2 users (show)

See Also:


Attachments
Patch (3.21 KB, patch)
2014-10-15 01:39 PDT, Gyuyoung Kim
no flags Details | Formatted Diff | Diff
Patch for landing (3.35 KB, patch)
2014-10-15 18:26 PDT, Gyuyoung Kim
no flags Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Gyuyoung Kim 2014-10-15 01:38:47 PDT
SSIA
Comment 1 Gyuyoung Kim 2014-10-15 01:39:56 PDT
Created attachment 239858 [details]
Patch
Comment 2 Darin Adler 2014-10-15 09:38:21 PDT
Comment on attachment 239858 [details]
Patch

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

OK to do this, but please use make_unique.

> Source/WebCore/loader/cache/CachedResource.cpp:517
> +    std::unique_ptr<CachedResourceCallback> callback = m_clientsAwaitingCallback.take(client);

I’d suggest using auto here instead of writing out the type.

> Source/WebCore/loader/cache/CachedResource.h:271
> +        static std::unique_ptr<CachedResourceCallback> schedule(CachedResource* resource, CachedResourceClient* client) { return std::unique_ptr<CachedResourceCallback>(new CachedResourceCallback(resource, client)); }

This should use make_unique, not an explicit constructor and new.
Comment 3 Gyuyoung Kim 2014-10-15 18:26:26 PDT
Created attachment 239913 [details]
Patch for landing
Comment 4 Gyuyoung Kim 2014-10-15 18:27:05 PDT
(In reply to comment #2)
> (From update of attachment 239858 [details])
> View in context: https://bugs.webkit.org/attachment.cgi?id=239858&action=review
> 
> OK to do this, but please use make_unique.
> 
> > Source/WebCore/loader/cache/CachedResource.cpp:517
> > +    std::unique_ptr<CachedResourceCallback> callback = m_clientsAwaitingCallback.take(client);
> 
> I’d suggest using auto here instead of writing out the type.
> 
> > Source/WebCore/loader/cache/CachedResource.h:271
> > +        static std::unique_ptr<CachedResourceCallback> schedule(CachedResource* resource, CachedResourceClient* client) { return std::unique_ptr<CachedResourceCallback>(new CachedResourceCallback(resource, client)); }
> 
> This should use make_unique, not an explicit constructor and new.

Ok, Fixed.
Comment 5 WebKit Commit Bot 2014-10-15 20:57:29 PDT
Comment on attachment 239913 [details]
Patch for landing

Clearing flags on attachment: 239913

Committed r174758: <http://trac.webkit.org/changeset/174758>
Comment 6 WebKit Commit Bot 2014-10-15 20:57:32 PDT
All reviewed patches have been landed.  Closing bug.