Bug 59361 - Fix strict OwnPtr violations in Render*.cpp
Summary: Fix strict OwnPtr violations in Render*.cpp
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: James Robinson
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-04-25 15:42 PDT by James Robinson
Modified: 2011-04-25 15:54 PDT (History)
0 users

See Also:


Attachments
Patch (11.74 KB, patch)
2011-04-25 15:43 PDT, James Robinson
abarth: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description James Robinson 2011-04-25 15:42:25 PDT
Fix strict OwnPtr violations in Render*.cpp
Comment 1 James Robinson 2011-04-25 15:43:04 PDT
Created attachment 90966 [details]
Patch
Comment 2 James Robinson 2011-04-25 15:43:26 PDT
RenderStyle.cpp still doesn't compile in strict mode with this patch, but that issue seems more involved.
Comment 3 Adam Barth 2011-04-25 15:44:28 PDT
Comment on attachment 90966 [details]
Patch

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

> Source/WebCore/rendering/RenderBlock.cpp:1092
> -        OwnPtr<DelayedUpdateScrollInfoSet> infoSet(gDelayedUpdateScrollInfoSet);
> +        OwnPtr<DelayedUpdateScrollInfoSet> infoSet(adoptPtr(gDelayedUpdateScrollInfoSet));

Wah?
Comment 4 James Robinson 2011-04-25 15:54:20 PDT
Committed r84815: <http://trac.webkit.org/changeset/84815>