| Summary: | WebKit2 View Gestures: Use a single struct for the snapshot, and pass it around | ||||||
|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Tim Horton <thorton> | ||||
| Component: | WebKit2 | Assignee: | Tim Horton <thorton> | ||||
| Status: | RESOLVED FIXED | ||||||
| Severity: | Normal | CC: | simon.fraser | ||||
| Priority: | P2 | ||||||
| Version: | 528+ (Nightly build) | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| Attachments: |
|
||||||
|
Description
Tim Horton
2014-04-24 01:35:02 PDT
Created attachment 230100 [details]
patch
Comment on attachment 230100 [details] patch View in context: https://bugs.webkit.org/attachment.cgi?id=230100&action=review > Source/WebKit2/UIProcess/mac/ViewSnapshotStore.mm:89 > +#if USE(IOSURFACE) > + if (!snapshot->value.surface) > + continue; > +#else > + if (!snapshot->value.image) > + continue; > +#endif Put in a member function on Snapshot? > Source/WebKit2/UIProcess/mac/ViewSnapshotStore.mm:101 > +#if USE(IOSURFACE) > + snapshot->value.surface = nullptr; > +#else > + snapshot->value.image = nullptr; > +#endif Put in a member function on Snapshot? > Source/WebKit2/UIProcess/mac/ViewSnapshotStore.mm:122 > +#if USE(IOSURFACE) > + snapshot->value.surface = nullptr; > +#else > + snapshot->value.image = nullptr; > +#endif Call said member function? |