void ChromeClientEA::invalidateWindow(const IntRect &windowRect, bool) { #if ENABLE(TILED_BACKING_STORE) if (platformPageClient()) { WebCore::TiledBackingStore* backingStore = EA::WebKit::WebFramePrivate::core(m_webPage->mainFrame())->tiledBackingStore(); if (!backingStore) return; backingStore->invalidate(windowRect); } #endif }
void ChromeClientQt::invalidateRootView(const IntRect& windowRect, bool) { #if USE(TILED_BACKING_STORE) if (platformPageClient()) { WebCore::TiledBackingStore* backingStore = QWebFramePrivate::core(m_webPage->mainFrame())->tiledBackingStore(); if (!backingStore) return; backingStore->invalidate(windowRect); } #else Q_UNUSED(windowRect); #endif }