Bug 38549

Summary: [WebKit2] The web process doesn't need to paint when the web view is hidden.
Product: WebKit Reporter: Anders Carlsson <andersca>
Component: New BugsAssignee: Nobody <webkit-unassigned>
Status: RESOLVED FIXED    
Severity: Normal    
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Other   
OS: OS X 10.5   
Attachments:
Description Flags
Patch mitz: review+

Anders Carlsson
Reported 2010-05-04 14:19:53 PDT
[WebKit2] The web process doesn't need to paint when the web view is hidden.
Attachments
Patch (6.40 KB, patch)
2010-05-04 14:26 PDT, Anders Carlsson
mitz: review+
Anders Carlsson
Comment 1 2010-05-04 14:26:47 PDT
mitz
Comment 2 2010-05-04 14:46:23 PDT
Comment on attachment 55050 [details] Patch > +void DrawingAreaUpdateChunk::suspendPainting() > +{ > + ASSERT(m_shouldPaint); Do you really want to assert this? > +void DrawingAreaUpdateChunk::resumePainting() > +{ > + ASSERT(!m_shouldPaint); Do you really want to assert this? r=me if you change “paint” to “update” and “painting” to “updating”.
Anders Carlsson
Comment 3 2010-05-04 14:56:57 PDT
(In reply to comment #2) > (From update of attachment 55050 [details]) > > +void DrawingAreaUpdateChunk::suspendPainting() > > +{ > > + ASSERT(m_shouldPaint); > > Do you really want to assert this? > I figured it wouldn't hurt! If it's a problem we can always remove it later. > > +void DrawingAreaUpdateChunk::resumePainting() > > +{ > > + ASSERT(!m_shouldPaint); > > Do you really want to assert this? > I figured it wouldn't hurt! If it's a problem we can always remove it later. > r=me if you change “paint” to “update” and “painting” to “updating”. Will do, thanks!
Anders Carlsson
Comment 4 2010-05-04 15:24:25 PDT
Note You need to log in before you can comment on or make changes to this bug.