summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/platform/graphics/android/rendering/TilesManager.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/platform/graphics/android/rendering/TilesManager.h')
-rw-r--r--Source/WebCore/platform/graphics/android/rendering/TilesManager.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/Source/WebCore/platform/graphics/android/rendering/TilesManager.h b/Source/WebCore/platform/graphics/android/rendering/TilesManager.h
index 295acf6..676d703 100644
--- a/Source/WebCore/platform/graphics/android/rendering/TilesManager.h
+++ b/Source/WebCore/platform/graphics/android/rendering/TilesManager.h
@@ -53,9 +53,14 @@ public:
return gInstance != 0;
}
- void removeOperationsForFilter(OperationFilter* filter, bool waitForRunning = false)
+ void removeOperationsForFilter(OperationFilter* filter)
{
- m_pixmapsGenerationThread->removeOperationsForFilter(filter, waitForRunning);
+ m_pixmapsGenerationThread->removeOperationsForFilter(filter);
+ }
+
+ bool tryUpdateOperationWithPainter(Tile* tile, TilePainter* painter)
+ {
+ return m_pixmapsGenerationThread->tryUpdateOperationWithPainter(tile, painter);
}
void scheduleOperation(QueuedOperation* operation)