[Webkit-unassigned] [Bug 81954] [Chromium] Using WebViewPlugins with --force-compositing-mode causes an ASSERT to fail

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Mar 22 16:01:26 PDT 2012


https://bugs.webkit.org/show_bug.cgi?id=81954


Dana Jansens <danakj at chromium.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |danakj at chromium.org




--- Comment #8 from Dana Jansens <danakj at chromium.org>  2012-03-22 16:01:26 PST ---
Discussed this offline, here's my suggestion. What do you think James?

GraphicsLayer::~GraphicsLayer { m_client->verifyNotPainting() }

RenderLayerBacking::verifyNotPainting()
{
  ASSERT(!toRenderView(renderer())->frameView()->frame()->page()->isPainting());
}

RenderLayerBacking::paintContents() {
 toRenderView(renderer())->frameView()->frame()->page()->setIsPainting(true));
 ...
 toRenderView(renderer())->frameView()->frame()->page()->setIsPainting(false));
}

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list