WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
129508
Make UIViews for compositing layers in the UI process on iOS
https://bugs.webkit.org/show_bug.cgi?id=129508
Summary
Make UIViews for compositing layers in the UI process on iOS
Simon Fraser (smfr)
Reported
2014-02-28 14:43:43 PST
Make UIViews for compositing layers in the UI process on iOS
Attachments
Patch
(61.48 KB, patch)
2014-02-28 14:47 PST
,
Simon Fraser (smfr)
sam
: review+
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Simon Fraser (smfr)
Comment 1
2014-02-28 14:47:41 PST
Created
attachment 225492
[details]
Patch
Sam Weinig
Comment 2
2014-02-28 14:56:26 PST
Comment on
attachment 225492
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=225492&action=review
> Source/WebKit2/Shared/mac/RemoteLayerTreePropertyApplier.mm:41 > +- (void)setSubviews:(NSArray *)subviews;
This should be _web_setSubviews: (Says the council of 2).
> Source/WebKit2/Shared/mac/RemoteLayerTreePropertyApplier.mm:54 > +@implementation UIView (WKUIViewUtilities) > +- (void)setSubviews:(NSArray *)subviews > +{ > + for (UIView* subview in self.subviews) > + [subview removeFromSuperview]; > + > + for (UIView* view in subviews) > + [self addSubview:view]; > +} > +@end > +#endif
Please add leading/trailing newlines.
> Source/WebKit2/UIProcess/ios/RemoteLayerTreeHostIOS.mm:109 > + // FIXME: do through the view. > + [[layerOrView layer] web_disableAllActions];
Capital D in do!
> Source/WebKit2/UIProcess/ios/RemoteScrollingCoordinatorProxyIOS.mm:48 > + for (auto& it : stateTree.nodeMap()) { > + ScrollingStateNode* currNode = it.value;
You can do for (auto& currentNode : stateTree.nodeMap().values())
> Source/WebKit2/UIProcess/ios/WebVideoFullscreenManagerProxy.mm:117 > +} > + > + > +} // namespace WebKit
Too many lines!!!!!!!
Simon Fraser (smfr)
Comment 3
2014-03-08 21:01:19 PST
http://trac.webkit.org/changeset/164890
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