void PluginControllerProxy::invalidate(const IntRect& rect) { IntRect dirtyRect = rect; // Make sure that the dirty rect is not greater than the plug-in itself. dirtyRect.intersect(IntRect(IntPoint(), m_pluginSize)); m_dirtyRect.unite(dirtyRect); startPaintTimer(); }
void PluginControllerProxy::invalidate(const IntRect& rect) { // Convert the dirty rect to window coordinates. IntRect dirtyRect = rect; dirtyRect.move(m_frameRect.x(), m_frameRect.y()); // Make sure that the dirty rect is not greater than the plug-in itself. dirtyRect.intersect(m_frameRect); m_dirtyRect.unite(dirtyRect); startPaintTimer(); }
void PluginControllerProxy::didUpdate() { m_waitingForDidUpdate = false; startPaintTimer(); }